#šŸ‘„ćƒ»help-me

1 messages Ā· Page 73 of 1

safe fjord
#

what's the command in sftp to get the file?

#

is it just get?

halcyon flame
#

yes

safe fjord
#

Error on line 95:

Can't redefine existing key at row 96, col 34, pos 2994: 95: main.plugins.expv2.enabled = true 96> main.plugins.expv2.enabled = true ^ 97: main.plugins.expv2.lvl_x_coord = 0

halcyon flame
#

Well that suggests there's a value on line 96 which defines the same value as on line 95 for main.plugins.expv2.enabled

safe fjord
#

ah

halcyon flame
#

I'd suggest SSH'ing in to it, editing the file and going to that line to see what's up

safe fjord
#

duplicate line

halcyon flame
#

Remove and reboot, see if that helps

safe fjord
#

attempting a reboot

#

nice, that fixed everything

halcyon flame
#

Cool

safe fjord
#

thanks for the help g0blin, you rule

halcyon flame
#

No worries šŸ™‚

hoary pawn
#

I want become a hacker how i can start

#

I want hack my girlfriend account

#

I already hacked her heart

halcyon flame
#

ffs

#

No, you creep

#

Why would you want to hack your girlfriends account

fair turret
#

Can someone explain the difference between writing an algorithm and writing pseudocode? I'm struggling to see a difference between the 2

fair turret
# hoary pawn Ask chat gpt

I did. What I understand is that algorithms are more complex and in depth and are more for computers to understand while pseudo is more basic and made for human understanding.
Which doesn't help me because they both still look the same to me

#

Nvm i got an asnwer on a forum 🫔

hoary pawn
#

Reddit?

summer night
#

What do you guys think is the best thing to do if the police seized my laptop

lost vapor
raven pond
spiral notch
#

ur a little cooked then

#

better call Saul

nova rain
#

Hi, new to the server and was wondering which chat is appropriate for questions about certs and learning resources. Is it this one?

#

I’m mainly wondering about career resources and interview advice

nova rain
#

thank you

spiral notch
#

ofc ^-^

summer night
#

So I ended up just giving it up. They took it down to their station, I don't know what's going to happen next

summer night
spiral notch
#

fire

summer night
#

I don't they will find much to be honest

#

I smashed my old one

#

That had some stuff that was probably illegal

lost vapor
#

What is bro up tošŸ„€

summer night
#

I'm from the matrix

spiral notch
#

lowkey dumb, admitting to crime on one of the biggest cybersecurity discord servers

novel sage
#

Hello, good afternoon. Sorry to bother you. My friend @devout umbra and I have a problem and need help. I want to fix some notes from the 1st, 2nd, and 3rd trimester of geometry and chemistry course without anyone noticing. and we need help please.

#

the page where they have the grades is in renweb

shadow fractal
novel sage
#

Okay, that's fine, don't worry, I'm sorry.

shadow fractal
safe fjord
#

so i just tried to metasploit a windows server's rdp port, it said exploit aborted due to failure: bad-config: server requires NLA (Cred SSP) security which mitigates this vulnerability

amber crypt
#

Is there a way for me to send a video so I can ask for help

spiral notch
#

just text it?

rough cove
#

Yo can anyone help my friend DC account got hacked

wet trail
# fair turret Can someone explain the difference between writing an algorithm and writing pseu...

You don't necessarily have to write pseudo code in order to describe an algorithm. You can describe an algorithm in plain english. for example in order to perform a random search, repeatedly select a random element and check to see if it is what you are looking for. Repeat this process until you find the element you are searching for, or have determined that the element is not in the set.

rough cove
#

anyone??

civic needle
rough cove
civic needle
#

Idk discord support probably

valid belfry
#

They need a search warrant

summer night
#

I didn't. They didn't even find anything

#

Because they couldn't

spiral notch
keen nexus
#

Hello. I'm getting started with tryhackme. My machine is on Squid proxy 4.10 but its giving me an error saying too short. How do I go about it?

dense violet
#

Hi, does anyone here have a google play console?? I need some help
Dm me if you do

radiant stone
dense violet
#

Oh, didn’t know if it was against group rule or something

#

But basically, I looking to buy one, I’d have opened a new one, but I need an older one.

radiant stone
low furnace
mossy echo
low furnace
mossy echo
#

Yea but still

low furnace
#

I agree though, Discord is a horrible place to admit crimes, let alone a cybersecurity server lmao

frosty geode
#

Hey anyone have free time????
I need someone for a project on oswaptop10

spiral notch
#

how much free time, what kind of project, etc

queen gazelle
#

Hey guys

chilly merlin
#

hey

queen gazelle
#

i am going to work on a project for my college.

needed you guys to question my idea and find some flaws or any suggestions.

i would love to share if you all wanna know

chilly merlin
#

okay

queen gazelle
#

the project idea šŸ‘‡

#

CryptARP replaces traditional ARP behavior with a cryptographic mechanism where devices sign their IP–MAC bindings using Ed25519. Each ARP reply includes a timestamped signature that is verified before updating the ARP cache.

It Prevents:

ARP spoofing, MAC/IP identity forging, MITM attacks, ARP cache poisoning, replay attacks, basic Evil Twin threats, and passive sniffing in LAN and mesh networks.

chilly merlin
#
  1. Key Distribution and Management

    Potential Flaw: Your system relies on devices having public/private key pairs and the ability to verify signatures via public keys. How are these public keys distributed and trusted in the network? Without a secure and scalable key distribution mechanism (e.g., PKI, pre-shared keys, or a trusted directory), devices may not be able to verify signatures reliably.

    Suggestion: Consider integrating a secure and automated key management infrastructure, such as a lightweight certificate authority (CA) or decentralized trust model, especially for dynamic or large-scale networks.

  2. Performance Overhead

    Potential Flaw: Ed25519 signing and verification, while efficient, still introduce computational overhead compared to traditional ARP. In high-throughput or resource-constrained environments (e.g., IoT devices), this could cause latency or battery drain.

    Suggestion: Benchmark the performance impact on typical devices in your target environment. Consider caching verified bindings for some time to reduce repeated signature verification or using hardware acceleration where available.

  3. Timestamp Synchronization

    Potential Flaw: Your scheme relies on timestamps to prevent replay attacks. However, devices must have synchronized clocks to validate timestamps correctly. Clock drift or lack of synchronization protocols (e.g., NTP) could cause legitimate ARP replies to be rejected.

    Suggestion: Implement tolerance windows for timestamps and consider fallback mechanisms for clock synchronization. Alternatively, use nonce-based or challenge-response mechanisms to prevent replay without strict time dependency.

  4. Initial Bootstrapping and Unknown Devices

    Potential Flaw: How does a device handle ARP requests/replies from previously unknown devices whose public keys it does not have? This could lead to connectivity issues or delays.

    Suggestion: Define a secure onboarding process for new devices, possibly involving manual key exchange, out-of-band verification, or trust-on-first-use (TOFU) with warnings.

  5. Compatibility and Deployment

    Potential Flaw: CryptARP replaces traditional ARP behavior, which might break compatibility with existing devices or legacy systems that do not support cryptographic ARP.

    Suggestion: Consider backward compatibility modes or gradual deployment strategies, such as operating in parallel with traditional ARP and falling back when cryptographic verification is not possible.

  6. Denial of Service (DoS) Risks

    Potential Flaw: Attackers might flood the network with bogus ARP replies containing invalid signatures, forcing devices to perform expensive signature verifications repeatedly.

    Suggestion: Implement rate limiting, caching, or preliminary checks (e.g., verifying sender IP/MAC formats) before signature verification to mitigate DoS risks.

#

I really like the idea

queen gazelle
#

actually I appreciate the questions.
currently I'll be developing it in a small scale environment and later on for zero-trust policy Enterprises. (army,banks, government facilities)

Q1-> for now the key distribution will be manual between host and user (trial period).
but yeah for large scale I really Have to think and learn more.

Q2->
time delay of 4-5sec can be added to prevent overloading of request or Only verifying first few requests and then dumping them.

Q3-> basically my idea is
HNID->hash(MAC || IP || random number) + signature.

Q4->
will have to think more on this.

Q5->
suggestion considered!
legacy issues are real.
I haven't thought of it to be on scale which causes legacy issues.

Q6
limiting number of requests.

spiral notch
#

point 6 is not a solution, limiting the number of requests for networks is never a solution and will cause more issues than solutions

#

for point 4 there’s not many great solutions, especially when compatibility comes in place

#

I used to work as a network pentester, and injecting and taking advantage of bootstrap flaws was something I’d love to exploit as they’d be less secure, firstly because of their not so great architecture, secondly just because of many misconfigs due to network architects just being lazy, or knowing there isn’t many viable solutions so they didn’t put much work into securing it anyway

fast vector
#

How do I create a personal ai assistant similar to Jarvis ? On Linux ?

queen gazelle
queen gazelle
river sorrel
#

why i am not able to speak ?
what role should i get !?

radiant stone
echo crystal
#

Who can help with deep live cam

bronze olive
#

How can I boot my computer been stuck on restart. Critical process Dead

#

Just ran chkdsk C: /f /r and it won’t run pass stage 4

spiral notch
echo crystal
valid belfry
#

@bronze olive yo

spiral notch
echo crystal
#

I need someone who can lead me through

chilly merlin
#

Hello , I hope you are doing well, I’m trying to keep myself from getting lost in the field of bug bounty.

A friend and I used to study XSS together as our first vulnerability, but something happened that will keep us from studying together for the next three years. I don’t know what to do—it’s truly sad, and I feel completely adrift without him. He was the only person I could study with and discuss XSS vulnerabilities.

So far, I’ve completed 29 out of 33 labs on PortSwigger, 6 out of 15 labs on xss.pwnfunction, and I’ve finished studying the XSS modules in INE’s eLearnSecurity EWAPTv1 course. At the moment, I don’t have a clear plan for discovering XSS vulnerabilities in real-world applications. I’m unsure what steps to take or what strategy to follow. As I mentioned, I currently have no one to study or exchange ideas with.

If you have the time, could you please share an A‑to‑Z plan for how I can start finding and analyzing XSS vulnerabilities in the real world?
So that I can move on to another vulnerability, because I don’t want to shock you with how much time I’ve spent studying just XSS.

fluid surge
# valid belfry <@966091419838189678> yo

hey bro do you know how to recover the linkedin account its temporarly restricted i did the verification process stilll restricted i also tried to massage them on twitter still no response

drowsy ridge
#

Someone interested in getting a yt channel?

chilly merlin
#

hiii, how can I fix this?

#

oh noo, no image perms

pale galleon
chilly merlin
#

I'll send it hang on

vapid adder
#

Hello I started my Cyber sec journey recently i was on web dev path for 1 year did a lot of projects

Currently doing Pre sec on THM and Following the new beginner guide of this server

I just wanted to know if I am into blue team doing Soc1/SAL1
And compTIA sec+ is enough to get a good job?

And also is it ok if i also explore pentesting areas?

supple grail
crisp star
vapid adder
#

@crisp star I am currently doing bachelors in Computer Science and Engineering will that be okay?

crisp star
spiral notch
#

regarding "is it ok if you explore pentesting areas?"

#

obviously it is

#

youre exploring something new to you, learning something new, and enjoying

#

why wouldnt it be?

vapid adder
#

THANKS

warm flower
#

Is buying THM Premium worth it?

lost vapor
warm flower
#

Alr, tysm
Thats what i wanna do, i am stuck on wevdev rn, and i wanna move finally somewhere

lost vapor
#

(i am also learning through their academy)

spiral notch
#

your username

#

your about me

#

is amazing

warm flower
#

Tysmmmmm <3

dusky moat
#

Yo I'm gonna be completely honest, got a hackathon on tuesday, can I steal any banger ideas you guys might suggest

vapid adder
#

@spiral notch @lost vapor
Can you help me HTB’s CDSA is it good?

dusky moat
#

I want something out of the box

#

Something wacko

lost vapor
vapid adder
#

Doing CDSA on HTB is better or THM SAL1?

lost vapor
#

it looks better on the resume

#

plus i love their art it looks so much better than thm

#

thm artist when actually creating a badass design (they never will)šŸ’”

lost vapor
#

meanwhile you have fine shyt over herešŸ”„

hard torrent
#

Hey guys,

Anyone know how to crack a 2021 MS Word document which has open password activated on it?

I have a document i created a long while ago that i kinda need rn. I forgot the password to open it.

zealous moss
#

yo

#

add me back chap

spiral notch
#

we dontm help wit things that could be used unethically or illegally

lunar eagle
#

Anyone here explored advanced Twitter recon or lookup utilities? Been diving into some OSINT work, but hit a wall. Would be cool to connect with someone who's navigated that space before — feel free to DM.

halcyon flame
#

Part of a CTF or something?

night island
#

A part of a CTF

halcyon flame
#

An ongoing CTF?

night island
#

Ended

halcyon flame
#

Looks like it says it ends 2025-12-29?

lost vapor
#

right after my birthday fr

halcyon flame
#

Don't cheat, work with a team

night island
lost vapor
#

well that means you've solved it

#

didn't you?

halcyon flame
night island
#

Well, i think i will do it by my selft

halcyon flame
#

That challenge also has 0 solves

#

So yeah

#

I'd recommend doing it yourself.

#

And don't lie

#

šŸ¤·ā€ā™‚ļø

raven plover
#

yo chat, i have a genuine question,
now as a networks and distributed systems student on the verge of graduating, should i do my thesis about security or blockchain?
what do you suggest?

lost vapor
#

i mean at either case

raven plover
hard obsidian
#

does anyone know how to find "origin IP"? like the actual server behind amazon ELB or uk other services....

halcyon flame
hard obsidian
halcyon flame
#

Also, that first "great effort" method, is not always possible.

#

IT depends

hard obsidian
#

mmhm

halcyon flame
#

What's the target.. is it a bounty program or VDP?

#

Do you have permission?

hard obsidian
#

yeah

#

its

halcyon flame
#

So, what is it?

hard obsidian
#

a bounty program

#

a club in my college set it up

#

challenge kind of a thing

#

thought it would be simple

halcyon flame
hard obsidian
#

no access?

halcyon flame
#

We can't just walk someone through looking for vulnerabilties and exploiting a target for which we don't know for sure ifyou have permission for or not

hard obsidian
#

valid

halcyon flame
hard obsidian
#

okie thanks

fallen oyster
#

I need help setting up my virtual machine. Please help.

shut monolith
#

Hi

#

How do I check my laptop ports version(if it's a 2.0 port or 3.0)

lyric basin
#

Question

supple grail
#

Sorry for the late reply I had an exam

supple grail
spiral notch
lyric basin
#

The root icon near my name is gone how do I get it back

halcyon flame
#

God damn.. learn to Google

#

Or explore

#

or use eyes

#

or do anything else apart from just ask people for the answer

supple grail
lyric basin
#

Graci

supple grail
#

No problem

fallen oyster
supple grail
#

Did you allocate 4 GB of ram?

fallen oyster
#

Yes

supple grail
#

Are you using virtual box?

#

As far as I know windows 11 searches for tpm 2

#

Press shift+ F10 during install to open a command window and open regedit after that

fallen oyster
#

Yes oracle virtual box

supple grail
#

Go to hkey local machine / system/ setup and create a key named "LabConfig" and create the dword values, BypassTPMCheck

#

Set it to one

#

And while you are there also add a dword value named BypassSecureBootCheck

#

Also set it to one

#

That should work, if it doesn't let me know

south plinth
#

when we are learning pentesting should we specialize in one domain all learn something in all domain

tame tinsel
#

I want to add JVM option in intellj

#

How do I do it

fallen oyster
tame tinsel
#

Someone plz help 🄹

supple grail
#

let me see if i can find one

#

oh yeah also, what didnt work? opening the terminal or the regedit

viscid crane
#

Good morning all!
I need help on tryhackme shell overview

burnt torrent
#

Hey everyone, I'm looking to learn hacking, (both blackhat and whitehat havking) where can i learn and develop my skills? Are there any free websites/videos/tutorials you would recommend? Thank you!

bronze marten
#

if you need any more questions don’t be afraid to ask!

fallen oyster
#

But I still can’t get through Microsoft setup

vague umbra
#

Hey everyone, I need your help. I’m really interested in starting a career in cybersecurity. I have some basic knowledge of Kali Linux, but I’m not sure about the career path or what the scope is in this field. I’d really appreciate it if someone could guide me how should I begin my journey in cybersecurity? And is it a good idea to pursue a career in this field?

radiant stone
vague umbra
vague umbra
#

like what are they actually responsible for

fallen oyster
supple grail
#

i think they might have patched those windows 11 methods

fallen oyster
#

They had to, I’m not really seeing to many windows 11 tutorials. Nubie question, does that mean I would have to switch my pruduct token to 10 on my device? It doesn’t allow me to drop to 10 on the machine, if you can switch it on the machine is there away?

supple grail
#

i once created a windows 10 vm and i just skipped the product key part so i dont really know

woven wasp
#

This course is limited 🄲

fallen oyster
supple grail
#

you can just get the windows 10 iso

spiral notch
#

on what type of pentesting

#

its always good to be profficient in 1 but have a bit of skills in other types too

rapid current
#

Hey guys. I want to gain some IT skills online as I am preparing to join university to do electrical engineering course

brisk ibex
#

Hello am kind of new to the chat I am trying to learn how to spam so I can create a income for myself if there’s anyone in here can help me or point me e in the right directions it will be much appreciated

keen pawn
#

Hello,
I'm currently studying for the eWPT and I'm at the Web Proxies module.
To be honest, I still don’t fully understand what cookies are or what some of the info in HTTP headers means, and I feel kind of lost.

The problem is that the labs in the eWPT course aren’t really challenging — they’re just simple practice exercises based on what was taught. I want to go deeper and work on real-world style labs.

Can you please recommend in detail:

Which PortSwigger labs I should do?

Which TryHackMe rooms would help?

Which Hack The Box machines are good for this topic?

I’d really appreciate a full, detailed answer to help guide me in the right direction.

tidal rune
halcyon flame
tidal rune
#

yeah many just join and ask for help without checking any of them

keen pawn
#

yall started talking here after i wrote my question ffs😭

spiral notch
#

second of all regarding cookies and HTTP headers give me a sec

#

here u go, this should be enough

gray kestrel
#

anyone doing the sorcery box? I could really use some help q.q

mental tendon
woven wasp
woven wasp
lost vapor
#

lots of technologies to learn

woven wasp
#

Thanks buddy

woven wasp
lost vapor
woven wasp
#

Okh that's great, keep up

mental tendon
dusty sequoia
#

is there any where i can get intership in india , iam almost at final year, i did projects, certs, only intership is missing?

storm mesa
#

hey guys I need some help with a project

autumn carbon
#

Hello everyone am new here please I want to learn ethical hacking I have always dreamed of it can anyone help

storm mesa
#

This is what I need help with

lost vapor
#

Hey, contact and work with authorities. We don't help with any unethical activities so please read our #šŸ“œćƒ»rules

hidden anchor
fleet drift
#

do someone know why i cant talk on voice chat

woven anvil
lost vapor
woven anvil
# vague umbra can you tell me what are Service desk or a systems admin / network analyst pleas...

Service Desk - Responsible for handling First-Level support, where they receive the call, and are able to gather information to fix, or to pass off to a different role
Systems Admin - Responsible for handling the Operating system's security + configuration. Things that are too difficult or out of scope for the Service Desk to handle, these guys will typically take on.
Network Analyst - These guys aer responsible for knowing exactly what is on the network, where it is on the network, and what each resource gets access to. They usually maintain the network equipment(routers, switches, APs) as well as fixing issues directly related to their department.

south plinth
#

what other programming language do we need to learn other then python for pentesting

lost vapor
#

web pentesting? reverse engineering?

south plinth
#

i am more into cloud pentesting

#

cause i feel like that is more in demand now

lost vapor
#

i see
well in that case languages like C would help

south plinth
#

do we need to know go?

lost vapor
#

not really it's kind of the same as python

#

interpreter language

south plinth
#

ohhh

#

i see

woven anvil
#

I would say if you also want to look at Azure-related stuff, powershell is pretty useful to understand

south plinth
#

thank you for the advice

#

ok

lost vapor
#

you will work around the consoles alot to interact with cloud services

south plinth
#

ok thx for the advice

lost vapor
lament obsidian
#

Can anyone hook me up with a link to a free course which gives you a certificate at the end thank you šŸ™‚

spiral notch
#

like theres literally pretty much none

#

those which give free certs have absoluitely no value in the industry

lament obsidian
#

Thank you anyway šŸ™‚

spiral notch
#

theyre somewhat expensive to the point where people cant just be buying and keep failing them

#

yet free certs, noobs will do them.. and fail... and do them again since theyre free... and fail again... and do them again since theyre free... and fail again... and do them again since theyre free...

woven anvil
#

The best thing you can get for free is knowledge

#

which is better than a cert 😮

tardy canyon
#

Does certs have like a expiration date/ renewal

lost vapor
halcyon flame
#

Sorry, that's piracy, and unethical. Not something we can help you with here.

#

Ask your tutor for help regarding gaining access to a copy of the book, on loan or whatever

obtuse turret
#

Hi quick question I am a beginner in cyber and wanted to learn powershell empire is it easy to use

south plinth
#

for cloud pentesting should i specialize in one cloud domain all know abit of every cloud domain

dusty swift
#

Is there anywhere in this server that goes over DFIR

lost vapor
dusty swift
#

where can i find this ?

lost vapor
vapid adder
#

@lost vapor is macbook m4 good for cyber ? with pararells?

lost vapor
#

if you want more freedom on your system thinkpads are the way to go

fleet drift
#

yo can someone help me

spiral notch
#

?

fleet drift
#

he close immediately and show me a problem

spiral notch
#

what problem

fleet drift
# spiral notch what problem

Error in C\Users\opbra.VirtualBox\VirtualBox.xml
(line 22) -- UUID
"(00000000-0000-j000-0000-000000000000)" has zero format.
D: \tinderboxa\win-7.1\src\ VBox\Main\src-
server\VirtualBox/mpl.cpp(844] (long _cdecl
VirtualBox init(void)).

#

can some mr robot guy help me whit this?

vapid adder
#

@spiral notch @lost vapor is getting soc analyst or any junior role of cyber sec job hard?

lost vapor
spiral notch
#

and a good resukme

#

will land you anywhere

spiral notch
#

what os are u trying to boot

#

are u using a vdi

#

how did u set up the machine

fleet drift
# spiral notch you barely gave any details

I’m on Windows 11, and I’m trying to boot Kali Linux (latest ISO).
I created a new VM in VirtualBox, selected Linux > Debian (64-bit), assigned 4 GB of RAM, and created a 20 GB VDI.
The ISO file was downloaded from the official Kali Linux website.
I haven’t even reached the part where I can start the VM. The issue appears immediately when I open VirtualBox, before I can even select or boot any machine.
The error says:
"UUID "00000000-0000-0000-0000-000000000000" has zero format"
and refers to a problem in the VirtualBox.xml file.

pine talon
#

Hello, so I need some help here, I bought a used Thinkpad E480 with an i5 8300u 16gb of ram and an integrated gpu. I am using kali bare metal and everytime I open a new firefox tab the cpu fan starts ramping up for a while.

#

Do you guys think I should change to ubuntu or debian since they are a litte more light weight

#

and I can also install all the tools I need there

forest orchid
#

Please

#

i'm done

#

2 day's in a row

#

i still get read failed when i use airo dump

#

can someone watch my virtual machine screenshare in dm?

lost vapor
forest orchid
#

to sniff and do other stuff

#

much more of learning

#

But it just would not work

forest orchid
lost vapor
#

there, you can learn through this module

spiral notch
forest orchid
#

cant describe it really well

spiral notch
#

uhh sure

spiral notch
#

give me a bit

vapid adder
#

@spiral notch @lost vapor you guys really helpful thanks a lot!

forest orchid
spiral notch
#

@forest orchid ya im back

forest orchid
#

I'm at #focusroom

#

Hello...?

spiral notch
#

move to coding

#

@forest orchid

lilac granite
lost vapor
#

@hoary iris@chilly merlin

lunar eagle
#

anyone go?t access to x look up tool

#

?

polar prism
#

Please where can I buy good EV signing

#

Or anywhere I can sign without the LLC hassle

true flame
#

Can anyone help me I am struggling to set a cookie in deployed site the backend is sending the set cookie header but the cookie is not being set my code is {httpOnly:true,secure:true,sameSite:'none'}

#

Backend is on render and frontend on netlify

errant parrot
#

=

mental tendon
mental tendon
mental tendon
polar prism
mental tendon
polar prism
#

Thanks I’ll work on it

woven anvil
#

theres been reports of more and more legit signed applications getting sweeped up

mental tendon
olive iris
#

any neovim enjoyers here? I was wondering if its possible to when you are browsing like your file tree to enter a folder in your nvim editor to then sort of reopen a dir from that point and close all other folders like remove them from view so example:

you do
nvim ~/
but then you get to the folder you wanna be in and have some key-bind that acts as:
nvim ~/folder/where/i/want/to/be
and it sort of closes all others and removes them from "workspace"

deft bronze
#

how do I get the server tag

#

oh nvm

#

I got it

formal venture
#

Help me pls , My my flash drive got the RAW type and is no longer formatted tried via cmd, used "hhd llf" and dmde.I was installing Linux and during the installation my lights went out

true flame
#

@mental tendon const checkinfo=await axios.post(${process.env.REACT_APP_BACKEND_URL}/login,userinfo,{withCredentials:true})
Still it is not setting the cookie

sand flax
mental tendon
polar prism
#

@mental tendon can you recommend a site I can get the EV cert from

marble tapir
#

Prompt one question at a time pls

#

Thanks in advance to those who are helping.

neon raven
true flame
#

@mental tendon backend is the way that you said and it worked on localhost but it is not working when deployed

marble tapir
#

Yes

formal venture
#

Can this damage the drivers of the flash drive itself?

#

I tried a couple more methods but it got bricked

lost vapor
#

@marble tapirheya
congrats and the project and all
we don't advertise over here though
sorry, and good luck!

sand flax
#

Im pretty sure

#

If this is just a flash drive

#

But if your whole pc is bricked

#

Yea ggs

#

But if u have another device

#

Reformate the flash drive

#

Via cmd

#

And use windows media recovery tool

#

If ur use linux

#

Its easier

formal venture
# sand flax Via cmd

I tried but when I reformate , flash drive just disconnecting from windows and I got error , I cant send image here for show u

sand flax
#

Yea

#

Clean it

supple grail
#

the images are from @formal venture i just sent them cause he doesnt have image perms

formal venture
formal venture
#

rest in peace

sand flax
#

Yea

#

How tf did it get fried

formal venture
#

I spent 2 days trying to restore it and didn't check the most obvious thing

sand flax
#

@formal venture What linux distro u tryna install

formal venture
#

first tried arch, and then decided to install kali

hushed sphinx
#

hey. can someone help me? i'm trying to get into cyber security but i don't where to start. can someone suggest some topics that i should learn?

spiral notch
#

web exploiting

#

network exploiting

#

then branch out onto other things

#

digital forensics

#

soc and blueteaming

#

or redteaming

#

RE or malware analysis (and maldev)

hushed sphinx
#

any recommended sources to learn all of these?

spiral notch
#

tryhackme learning roadmap

#

free one

#

hackthebox

#

then for more specific, come back later to get more specific info

#

once you know what youll be asking for or looking for

hushed sphinx
#

Alright Thanks a lotšŸ‘

mossy echo
#

anyone has decent ressources the get into hardware

mental tendon
mental tendon
lunar eagle
hardy current
#

VM Name: Parrot OS Security Edition

The virtual machine 'Parrot OS Security Edition' has terminated unexpectedly during startup with exit code -1073740791 (0xc0000409). More details may be available in 'C:\Users\h9ndl\VirtualBox VMs\Parrot OS Security Edition\Logs\VBoxHardening.log'.
Result Code:
E_FAIL (0X80004005)
Component:
MachineWrap
Interface:
IMachine {300763af-5d6b-46e6-aa96-273eac15538a}

#

kinda tweaking rn

supple grail
hardy current
hardy current
supple grail
#

alr

#

which vbox version are you using?

hardy current
supple grail
#

i mean like the newest or an older version?

hardy current
supple grail
#

have you tried reinstalling vbox?

hardy current
#

i have, i had to do it to fix a previous issue aswell

simple rose
#

Are these books good for learning ethical hacking? Hacking the hacker by Roger A. Grimes, How to Hack like Ghost breaching the cloud by Sparc Flow, and Hands on Hacking by Matthew Hickey and Jennifer Arcuri?

bronze marten
#

one i recommend is Hacking: The Art of Exploitation, 2nd Edition

crisp smelt
#

Is there a way to get a 2fa sms message on a number that is no longer active, if so how, trying to get access to my email after changing numbers.. my mess up, forgot the PW and can't change my PW without 2fa.

spiral notch
#

no illegal way most likely either, depends on the provider

#

anyways

#

unfortunately nothing you can do from here except for contact support

#

if that failed too, then nothing u can do

winter axle
#

Does anybody have any resources on using a FlipperZero?

spiral notch
#

you have a flipper and you dont know how to use it?

winter axle
#

Yeah not fa real šŸ˜…

spiral notch
#

got any modules for it?

winter axle
#

Naw just it by itself right now. I can get some modules later. Also if you recommend any

spiral notch
#

what are u planning ot use it for/

#

?

winter axle
#

Spoofing, jamming, emulate RFID/NFC cards, RF signals

#

Just fun stuff really

#

Bad USB also

spiral notch
#

everything is pretty straight forward regarding these things on it

#

you just need to read and use common sense

#

its not like youd really need any specific docs

#

for the things youre trying to do

hardy current
valid belfry
#

No

#

Zero detail= no help

chilly merlin
#

Why did the old man with alzheimer's react a heartbreak šŸ„€

#

@mossy echo

valid belfry
#

because you sound dumb

#

that is why

mossy echo
#

Yep

chilly merlin
valid belfry
#

Because you want to commit crimes ?

#

And disrupt service people pay for

chilly merlin
#

of course šŸ™„

#

sybau

valid belfry
#

Exactly so stop pusc

#

You don't have a job

chilly merlin
#

I do

#

jk

valid belfry
#

Stop ruining other people's things

chilly merlin
#

how am i supposed to have a job if im not old enough

valid belfry
#

You'll regret it once you get thrown in jail

#

By studying mate

chilly merlin
valid belfry
#

Yeah you can

chilly merlin
#

no

valid belfry
#

I went to court for it when I was 13

#

Not for what you are doing lol

chilly merlin
#

what did you do

valid belfry
#

Doesn't matter what I did

#

What matters is you stop now

chilly merlin
#

it does

valid belfry
#

Or you'll probably mess up your future

chilly merlin
#

thats what this whole server is about

valid belfry
#

I understand

chilly merlin
#

kinda

valid belfry
#

I have a esp32 that does what you want

chilly merlin
#

why

#

fine i will stop šŸ„€

valid belfry
#

If you are trying to crack wpa I'll just tell you that it's not worth trying

#

Will save you the time

chilly merlin
#

wdym crack wpa?

#

lol, I just wanted to make a firmware on an esp32, i had no idea on what else to make.

valid belfry
#

You should try homelab @chilly merlin

chilly merlin
#

alright

valid belfry
#

Gives you legal things to do

chilly merlin
#

Whats a homelab

valid belfry
#

You host things you'd normally pay for thatre open source

chilly merlin
#

like a server?

valid belfry
#

Siuc as a VPN to connect to your things, a movie server, something fun

#

Yeah

#

Exactly

#

Server(s)

chilly merlin
#

How can I start? if you dont mind.

valid belfry
#

Vps provider, I am the system enginner/sys admin/ cto

chilly merlin
#

Oh wow really

valid belfry
#

Yep

#

It's a startup for my bud

#

You stalking me 😭

chilly merlin
#

i made a simple android backdoor for both my Android phones, i used a free service localtonet for TCP connection, the port changes tho for the service i yse. so i want a static port so the connection isnt lost or disrupted, any tips or suggestions?

spiral notch
#

why does the port change? Is it because it’s not prioritized and the service is always pushed around? is it because of a bad config in the settings?

#

have you tried checking configs

#

see if you can change it to a static port

vernal cape
#

hey can anyone help me with my linux i have 100GB of unallocated space but i cant extend my / drive

lunar eagle
#

does anyone here got access to x look up tools?

edgy prairie
#

Who knows how to flash a Nokia c32

woven anvil
spiral notch
chilly merlin
# spiral notch see if you can change it to a static port

i checked the settings on the hosted service i was running for port forwarding, nothing that gave me the option to set a static port on it, only port i can really change is the client side of it and that is the client IP and client Port.

#

but i think maybe the dynamic port changing is for security if im correct (which im probably not) or its just setup to be that way i guess

#

either way the time i have a connection the the phone the given time when the port changes is about enough time to put the payload on the phone and run msfconsole and simply gain access to the phone

shell pendant
#

Hey everyone, I just wanted to share something important. My Facebook account got permanently disabled for no valid reason. At first, it was just suspended and asked for the usual verification. While I was uploading the face video for verification, the screen just kept loading… and then suddenly I got a notification saying that my account has been permanently disabled.

This is really frustrating because I was using that account to run my online shop, and it was a major source of income for me. If anyone knows any way to recover a disabled Facebook account, or has gone through something similar and managed to fix it, please let me know. I'd really appreciate any help šŸ™

spiral notch
shell pendant
spiral notch
#

we don’t recover accounts, especially since it’ll be illegal and unethical

#

we’re ethical hackers, not cybercriminals

naive olive
#

Hey guys i just got a message from a sccamer trying with a phishing link and i know its connected to a discord webhook is there any way to obtain it and just destroy the server that he got??

naive olive
spiral notch
#

I’d love to check it out

turbid warren
#

Hi , Do you think using chatgpt in CTFs consider as cheatting

#

?

lost vapor
#

but mostly the answer would be yes

#

i think

bronze marten
#

but other than that

#

yes

woven anvil
neon raven
sand flax
#

How can i start learning a bit of nmap and metasploit

#

Just for fun

#

Im not tryna go in depth

#

Just to learn how to exploit ports

chilly merlin
#

paste the same question in google lots of articles

desert torrent
#

šŸ¤”

ruby mason
#

I need help with telegram premium
Anyone plsšŸ™

crisp star
ruby mason
crisp star
ruby mason
#

I need help with telegram premium but I don’t really know if there might be someone here who might help me with that but pleasešŸ™šŸ™
I’d really appreciate it if I will be able to find someone who might assist me with itšŸ™šŸ™

wet shoal
#

Hi all, I'm currently a beginner in cybersec and learning i need some help, first of all my PC/laptop is lagging when im typing in here like a medium delay, second im choosing Parrot OS as my learning software and i need some upgrades, im upgrading my RAM from 8GB to 32 GBs and I need some more suggestions if needed to update

#

i have a Intel i5 CPU and my gpu is RTX 3050 Geforce, the GPU i wont upgrade but should i upgrade my CPU?

junior furnace
#

Hello All, does anyone use Ligolo-ng for pivoting ? I'm trying to find out after I execute the agent then go back to Kali and run nmap -sn it's not picking up all the ip's , it's registering 2 out of the 4 Ip's but I need all 4 to get the SID to forge the Golden Ticket

woven anvil
# wet shoal Hi all, I'm currently a beginner in cybersec and learning i need some help, firs...

When you say lagging, do you mean lagging in Windows, or have you installed ParrotOS onto the computer?
Windows Typically "Wants" 16GB minimum, as the OS itself tries to eat up 4-6GB itself, leaving you very little room for applications.
Most Linux, if the DE is heavy, the OS can use up to 4GB, but if its light, then the OS should be using around 1-2GB. This makes 8GB more Viable.

That is just a baseline

Any application you run over it, be a web browser, office document/spreadsheet app, or security tool, will use RAM. So only you will know what workload you are trying to achieve.

For CPU, i5 is typically fine for most tasks. Would specifically need to know which i5 it is. Upgrading a CPU(Especially for Intel) usually means upgrading the motherboard as well, or else you are left with very small changes between i5, i7 and i9 for that specific generation. Especially in a Laptop where the CPU is usually not socketed.

wet shoal
woven anvil
trim latch
#

Is there any site I can scan my number to make sure it’s not pwned by a data breacher
šŸ—æ

wet shoal
woven anvil
woven anvil
wet shoal
woven anvil
#

What does the performance tab of task manager look like

trim latch
woven anvil
# wet shoal wym

Open the application called "Task Manager". If you hover over the Tabs on the left, there is one called performance. I can't post screenshots here, but I can DM you screenshots if you want

woven anvil
#

So at any time, if you give your phone number to anyone, you can end up on a list with random gooners calling you for money

trim latch
woven anvil
trim latch
#

To know it's on dark web or no

woven anvil
# trim latch To know it's on dark web or no

Some companies offer a paid service to do this with emails and such. Its a paid service because they went out of their way to gather the data, parse it, and offer searches for it. Some companies offer free searches(can find on google), but its possible that they are just collecting data as well. I don't think there is a well-known service like HIBP that will check for phone numbers.(It only does emails)

From my usage of these tools at work, there is not much you can do once you find the information is leaked. You switch phone numbers, you give it to the same services, and now you are on a list again. You switch emails, and same thing(Emails you can use Groups if you have your own domain, and use a business email service that allows custom domains, or host your own email server to find out which random company sold your email away. You can't do this with phone numbers)

There is even reports of people just walking into companies that sell phones, they tell them that they lost their last phone, and just take ownership of your number. Then they use that to now have access to people's 2FA codes that they have set via SMS.

Best thing to do is to practice good security overall, don't tie anything to your phone number if you can avoid it. Make sure your 2FA/MFA are not SMS-based. If they are, change them to TOTP or better. Use a Password Manager(You can host it yourself, or use something like keepass, MAKE SURE TO BACK UP WITH ENCRYPTION IF YOU SELF HOST), and get some long randomized passwords on services that you use. If running Windows, make sure Defender is up to date. Get better control over the Firewall. Understand the stuff that you are trying to protect. Those will do way more for you in the long run.

trim latch
#

Ayo

trim latch
dapper lodge
wet shoal
dapper lodge
wet shoal
dapper lodge
# wet shoal wym

they have a Security, Home, Cloud, Architect and Rasberry pi versions. Why are you changing your ram? I was going to give it a go with what I already have.

wet shoal
dapper lodge
dapper lodge
spiral notch
#

yapper is back

spiral notch
#

also enable swap

#

if u have low ram

#

makes it smooth af

#

and gives you free ram (literally)

wet shoal
spiral notch
spiral notch
#

vm*

#

enable KVM in the paravirtualization settings

#

it’ll run way smoother

#

also try 3d acceleration

#

and set video memory to the max, default is 16mb

#

set it to 128mb

#

should run way smoother after

#

how much ram and cpu cores did u allocate it btw?

#

3d accel can be unstable af tho

woven anvil
#

They wanted to know what else they would need to upgrade(CPU and such)

#

i think they are going to 2x16GB?

#

and its a laptop, so no upgrading other things really besides SSD

woven anvil
spiral notch
#

It’s more of a boot up and get it done type of linux

spiral notch
#

unless they’ll be playing like valorant

#

while doing ctfs

#

All at the same time

spiral notch
#

even if at 2.5ghz for example

woven anvil
woven anvil
spiral notch
#

windows on idle loves to eat out at least 3

peak lake
#

I have a question. I am in the process of creating a custom game launcher. What are the steps to getting the mixed kernel to work? I have two kernels, one for Linux and one for Windows.

stable hornet
#

Hello guys, quick question, I'm considering doing the CPTS path on HTB, I have the student subscription option available, after I buy the student subscription, can i access the the Pentester path without worrying about cubes ? and I have to pay for the exam separately ?

shell sinew
chilly merlin
#

Any recommendations on where to start learning how to hack peoples accounts?

halcyon flame
#

It's not something as simple as "make hack go now, steal account" anyway

#

Anyone offering to help you in DM, for free or paid, will only be out to scam you.

chilly merlin
halcyon flame
#

Well then they should reach out to the games support team.

chilly merlin
royal pewter
#

hi guys i’m new in to hacking like i don’t know anything and i use an iphone which makes it difficult for me but if anyone can tell me any tips or tool i can learn hacking that would be great and i’ll be really thankful

mental tendon
#

Read ā€œThe Web Application Hacker’s Handbookā€ (or OWASP Top 10)

quaint sail
#

yoo i started with TryHackMe but it is not all free so is there a better way

spiral notch
quaint sail
spiral notch
dapper lodge
#

Quick question for anyone running tails off a USB. When going through set up (on Mac) was there anyway to click setup other than with a corded mouse? (My keyboard and trackpad are not functioning and all the mouse options I have are wireless) don’t want to go buy a corded mouse unless I have to.

rustic glade
#

Anyone got a place where i can practice with active directories and networking ?

broken spindle
#

Wanna know , which proxy do u guys use for burp suite ?

broken spindle
south plinth
glacial anchor
#

i want to start my journey in cybersec this summer, i need help to know where to start from.

shell sinew
spring locust
#

Is this the correct path I should consider getting into cybersecurity? I have CCNA,CCNP,LINUX,AD knowledge.

CCNA → Security+ → CySA+ or Cisco CyberOps → CEH/PenTest+ → GCIH → (optional CISSP/CISM later)

shell sinew
spring locust
#

I thought I'll start from blue then end up on the offence side

#

Guide me kind sir

shell sinew
#

I'd do CCNA, Sec+, CPTS (pentests) after those I'd think about more in-depth path like web / network etc

spring locust
#

šŸ˜ŠšŸ«±šŸ»ā€šŸ«²šŸ¼

last pumice
#

Hi there guys can anyone tell me which hidden application is the best for secur my data on social media and in my devices that even the greatest hacker can go in thanks 😊

last pumice
#

Is there anything that girl can have a little peace of mind šŸ˜€

lost vapor
#

what do you need specifically

#

and why

mellow geyser
mellow geyser
#

heheh

#

do you really think its unhackable i do agree about the photon that it can't be duplicated but the device or the ray can be hacked

last pumice
lost vapor
#

those are usually better for your phone

last pumice
#

Okay buddy can you tell me more abaut it

lost vapor
#

kaspersky is an antivirus for the phone

#

but don't have more than 1 antivirus active

#

it's going to slow down your phone

last pumice
#

Okay can i find it in play store or In Google

lost vapor
#

yes

last pumice
#

I find it on Google

#

Thanks buddy

uncut edge
#

Heguys

halcyon flame
#

Not here @uncut edge

#

This is an ethical server, and that is a case for the authorities

#

Sorry

uncut edge
#

okag

halcyon flame
#

And don't post personal information online fml

spiral notch
#

just dont download any apps

#

and youll be fine

#

if youre looking to not have ur socials hacker

#

hacked*

#

dont click on sketchy links

#

or input ur credentials or give them away to sketchy places

#

and youll be fine

#

its just common sense

neat tundra
#

Hey guys I need help rq

#

My dad was searching to see if our calls were being forwarded and tracked

#

And everyone in the family’s is disabled except for my dads

#

And we can’t disable it at all

#

It’s saying the guy tracking him is from Texas, I already looked up his number and saw all the details

dapper lodge
# spiral notch yes, set up Bluetooth

Due to the security of Tails things like Bluetooth are disabled. I’m going to have to breakdown and buy a USB hub since the ports on my Mac are so close together I can’t plug the USB and an adapter at the same time. (Thanks Apple)

halcyon flame
neat tundra
#

Okay thanks

#

We tried the codes,so I’ll have my dad try and talk to the mobile provider

halcyon flame
#

Past that advice, there's not much we can really do for you. If anyone reaches out asking you to do anything past those codes you dial in, don't follow along with them

#

They will likely just be there to try and scam you.

#

The service provider are the ones to help you best in this case

neat tundra
#

Okay thanks man

#

Shi lowk scaring him

halcyon flame
#

No worries, good luck.

neat tundra
#

So I’m js tryna help any way I can

halcyon flame
#

But yeah.. a 5 minute call with the mobile provider will be able to have any forwarding etc disabled

neat tundra
#

Okay thanks

#

I think it’s cuz of his instagram account or something

#

Cuz of his opinion pisses people off and he gets hate comments

#

But we’ll never know lmao

#

The call was being forwarded to some guy who owns a tree cutting company in Texas

#

Like tf

halcyon flame
#

Yeah probably not.. just solve the immediate concern and put it behind them

neat tundra
#

Ok

tribal karma
#

Is tryhackme more beginner friendly than hack the box?

tribal karma
light mica
broken spindle
#

Wanna know , which proxy do u guys use for burp suite ?

#

Instead of foxy proxy

#

Which are still better ?

junior mauve
#

@wet adder

#

@dark jackal

wet adder
#

a

stray mural
#

You'll find bunch of rooms and modules in tryhackme and HTB platform related network penetration testingšŸ™‚

keen pivot
#

Is there a way to retrieve a pass ode out of samsung bios recovery log

spiral notch
chilly merlin
#

I have a problem with a roouter is says that is connected to internet without internet the Wlan show light on in the router but the DSL and Online turn off and start blinking try ti establish the connection

#

If i have acces to manage the router settings what should i check and if problem is not there should i call the ISP

shell sinew
#

feel free to call ur ISP

spiral notch
#

unplug all the cables and rep lug them

#

wait like 5 mins between

#

unplug the cable you almost literally screw into your wal, sorry forgot what it’s called

bleak condor
#

is there a way i could listen to my local police chatter using my flipper zero?

drowsy lichen
#

How can i create a link that takes picture without the person knowing using termux

boreal hedge
#

Does anyone here can help me install a kernel for my oneplus 7T HD1907

drowsy lichen
spiral notch
radiant stone
spiral notch
#

ooo

#

nice timing

wary jewel
#

Please do anyone know of any online business course which I can earn money by working or something legitimately, I am now at home and waiting for my pending results to proceed in my High school

regal cairn
#

I’m a recent graduate looking for work please let me know if anyone knows any good companies that are hiring entry level. 😭😭 In Florida or remote. I feel so lost.

indigo grove
#

Any admin?

shell sinew
little canyon
#

I've never used those usb systems like Tails, I'm about to get one and try nmap and other stuff to tweak around, how can I do it in a way that I'm safe and not breaking any laws?

#

for example, while using those programs, how can I be safe and not tracked? are proxy chains enough for that?

woven anvil
woven anvil
little canyon
woven anvil
#

who is they?

#

If I use a VM on my own network to nmap scan/whatever a VM on my own network, then I am the only one who knows about it, and is effected.

#

If you are port scanning Google, or any public sites, then you are not scanning a host or network you are authorized to scan.

little canyon
# woven anvil who is they?

the ISP? can't they see anomalies on my network and think someway a hacker got into the network if I try that?

woven anvil
little canyon
#

got it thanks

woven anvil
#

If you are worried about the ISP, then just make sure you have your own router, and practice behind that

#

VMs make this really easy to test and play around with

#

as you can have a VM that is a router

#

and learn networking as well(pfsense and opnsense both run great in a VM)

little canyon
woven anvil
#

Once you get comfortable with VMs, then you know how you want to build your "Playground" to test with

little canyon
#

got it thanks

verbal cedar
#

"unzip: cannot find or open /root/Download/android*.zip, /root/Download/android*.zip.zip or /root/Download/android*.zip.ZIP." can someone help me with this error im getting on kali

woven anvil
verbal cedar
#

unzip ~/Download/android*.zip -d /opt

#

im trying to unzip it

woven anvil
#

try by absolute path, and without the wildcard

#

tab should autocomplete the file name

verbal cedar
#

wdym could you write and show it to me please

woven anvil
#

What is the full path to the .zip you are trying to extract

verbal cedar
#

/Download/android*.zip -d /opt

woven anvil
#

You are using
~
Which means "My Home Directory".

It thinks you are running as root, so it is checking the root's "Home Directory" which is usually /root

verbal cedar
#

so i should try it without rooting

woven anvil
#

do you know what root does?

verbal cedar
#

a bit not much

#

that its only used in administrative tasks which require administrative permission

indigo sluice
#

hey, where can I find the databases that have been leaked or had data breaches? for example dueling network had data breach in 2017 how can I find that data?

frosty geode
#

Can anyone give me a AlienDot ios-rat tutorial plz I can't find any on the internet

verbal cedar
indigo sluice
frosty geode
verbal cedar
#

but the teletgram channnels can be found at discord or X or even whatsapp but you nees to really dig into it you can also try 4chan

indigo sluice
#

thank you very much

spiral notch
#

they’ll be fed honeypots xd

spiral notch
#

If you’re trying to find ur own breached credentials

#

Go to haveibeenpwned

uneven sand
#

yo chat

#

i had like an email thats old asf

#

and the phone i had it on broke

#

and i dont remember the password to it either

#

and google support is basically useless

#

can anybody help me? i had a lot of important stuff on there

#

and a lot of childhood memories

spiral notch
#

unfortunately we can’t do anything, as it’s past legal norms as well

cedar gull
#

What's is the best linux for (Gaming) i need help to choose idk what to go with atm

spiral notch
#

it all depends on what and how you set up

#

I’d go arch, but I suggest arch for everything. No bloat, nothing that will slow down processes in the background, super lightweight distort

#

Distro *

lament obsidian
#

im using Parrot OS in general because i cant go on the kali linux site

#

😭

spiral notch
#

lol

#

It’s easy af

#

Don’t believe what others say till you try it yourself

lament obsidian
#

doesnt it come empty with no tools tho?

spiral notch
#

That’s the point of it being lightweight

#

No spyware no bloatware

lament obsidian
#

yh but inexperienced ppl wont know the best tools and stuff

#

to download

spiral notch
#

re read the msg

lament obsidian
#

gaming but also cyber security

spiral notch
#

it’s amazing for cybersec too

#

I daily drive it

#

as my main environment for coding and penetrating

#

unless I code things like malware which is directed for windows often

#

and/or scripts for windows specifically

#

it’s also amazing to set up

#

it’s beautiful af

lament obsidian
#

daymm

#

when you first get it tho its fully black tho right?

spiral notch
#

No

#

That’s wm dependent

#

Not distro dependent

lament obsidian
#

well im knew to Cyber Security you think i should switch from parrot OS to arch rn?

spiral notch
#

Switch to arch if you want pretty much the most customization

#

No spyware

#

No bloatware

#

No sketchy tools reinstalled

#

reinstalled

#

pre*

#

And good support

lament obsidian
#

ok thank you šŸ™‚

bleak condor
#

hey how would i be able to make a bug for listening?

neon raven
bleak condor
#

im interested in how electronics work and if im able to make one for my appartment incase of breakins

woven anvil
bronze kraken
#

could anyone here recommend some resource to learn computer architecture thnx

bronze kraken
rotund pelican
#

I got a question for a hacker that can help me

halcyon flame
#

Just ask the question here @rotund pelican - if you can't ask the question because it is unethical, or breaks #šŸ“œćƒ»rules, then this is not the place for you.

rotund pelican
#

I can say the question

#

I got proof

halcyon flame
#

Don't ask to ask, just ask

#

If it is against the rules, or unethical though...

rotund pelican
#

Nah my brother roblox acc go hacked and I was try to see if one of yall can help me get it back

#

That all

halcyon flame
#

fml

#

No, speak to support

#

We can't help you

rotund pelican
#

Ok

light mica
rotund pelican
#

Thx

halcyon flame
#

You didn't read rules did you

#

Or did you just not understand them

rotund pelican
#

Just did understand that all

halcyon flame
#

So you asked anyway

#

Is hacking someones account an ethical action?

#

Answer me that

rotund pelican
#

Nah

halcyon flame
#

Then wtf did you ask your question

#

Anyway.. ask support

trim latch
#

Well actually

halcyon flame
#

We can't help, and anyone offering to help will just be out to scam you

trim latch
#

A Roblox account is not important you can create 10 more

rotund pelican
#

He spent over 200 hundred dollars on this acc

#

That why I asked

halcyon flame
#

You expect me to believe you had to come here because you needed to be told that you needed to be told to reach out to support to recover an account?

#

So what

#

Just drop the subject

#

This is an ethical server.

rotund pelican
#

I been trying

#

They keep say I need a credit card that I don't even have no more

halcyon flame
#

Well, speak to your bank

rotund pelican
#

Igh

#

Thx

halcyon flame
#

Did you really not think of these things before coming here?

#

I just.. urgh

rotund pelican
#

Nah it been 5 years

halcyon flame
#

lol

#

You will not get it back

#

Accept it and move on

rotund pelican
#

Ok