I was able to follow pretty easily up to privilege escalation because of previous knowledge, but even the prev esc part was understandable because of your thorough explanations! Also loved to see that you actually took the time to code some brute forces (hash, code, and even directories (even though you didn't write the code yourself)). Sometimes it really does take some dirty, boring, and time-consuming work to get somewhere.
@quicksolution58812 жыл бұрын
Hey! Lovely video as always. Just wanted to say, the part where the hash of the password has to end in "001" in order to be valid and you've found one to be "abkr". You overworked the code a bit... For example you could have just made a single for loop going from a number 0 to 10000000, every number to string and just hash that, much easier and way less code to loop through numbers than ascii characters. The one i've found is 5265 with its hash being 'f127a3f714240273e254d740ed23f001'.
@rickyjenkins122 жыл бұрын
Loving the videos, currently studying for a cyber security degree here in the UK and find your videos are helping me pick up additional skills that are useful for my course. Thank you John
@amodo802 жыл бұрын
Fun fact: Because cryptographic hashes map evenly from all possible inputs to all possible outputs, it doesn't really matter what you're hashing. You could start at the number zero, take the hash from that and keep incrementing it by 1 until you hit your target hash. (or you could hash a random string/number every time) Because every hash outcome has the same probability to occur, (and all hashes ending in "001" also have the same probability) you will find your target hash just as quickly. Note: I converted the number to string here due to readability of the code. More straightforward computationally would be to simply hash bytes and increment those bytes until you hit your target. import hashlib i = 0 while True: m = hashlib.md5(str(i).encode()).hexdigest() if m[-3:] == '001': print(f'the md5sum of `{i}` is `{m}`') break i += 1
@legionary0002 жыл бұрын
19:31 "Umm, and actually I'm gonna do something stupid", with that voice crack xD I actually lol'd on that :D
@railwireorbit74012 жыл бұрын
Just loved the way you teach all of us is very precious... love you john ....!! and thank you for keeping up the good work.
@ahtungdihtung2 жыл бұрын
How can you not subscribe to this? This is gold.
@waqasalikhanrajput2 жыл бұрын
I just started learning with Hack the box and although I understood very little due to my technical knowledge. I enjoyed the video. I will come back to this video in 6 months time to see if my understanding has improved Great content!
@Channel-he5fr2 жыл бұрын
😂 He said JSON instead of Jason 😂😂😂
@mrnord19892 жыл бұрын
Crazy never seen such a brilliant person ☺️
@kat904302 жыл бұрын
Dude, this is amaznig. I appreciate you content.
@kolmt3645 Жыл бұрын
from @26:38 to @28:30 you could simply just send any 4 digit MFA code and then in dev console right-click The post request from the network tab and select copy -> Copy as cURL.
@LapisOnTheMoon2 жыл бұрын
i love this video mr ham hands ive missed the tryhackme content!! more pls
@trevorhaddox68842 жыл бұрын
I miss crazy stuff like PWNY Island and other big hacking competitions. Do people still host those anymore?
@Californ1a2 жыл бұрын
I'd love to see more live competition stuff like the old king of the hill livestreams, especially the older streams when they didn't know the rooms yet. They don't make new rooms for those enough so it's just autopwn scripts for them all by now with the only competition being fighting for the king file and bricking the box which isn't really as interesting. HTB battlegrounds was interesting but felt too formal, I liked THM KotH streams since they were generally more laidback.
@ITsikkerhet2 жыл бұрын
I started watching your videos the same way people watch sports, so entertaining and educational! keep it up :D
@zihasz53052 жыл бұрын
Enjoyed the video as always!
@cameronribeiro96602 жыл бұрын
John: Some ideas for you: I don't know every video you have on here but: "This is what an attack looks like on screen on Windows" "This is how the colonial pipeline happened and what I would have done to attempt avoiding it" "The is how pen testers and bug bounty did their job in the Mitnick days before Burp Suite existed" "This is how pen testers did their job before metasploit existed" "This is probably why Russian and Chinese hackers are so good" I'm thinking video like these would separate your account and put it at a new level of you have the time Nice to meet another hacker!!
@BrknSoul2 жыл бұрын
I love how you pop the machine's IP into $IP and then never use $IP again. ;-)
@sam_sheridan2 жыл бұрын
Great video, thanks for the intro to feroxbuster, wasn't familiar with that one.
@vincenzoprota9842 жыл бұрын
Very very good, John I have often followed your videos, and I must say that you explain all the steps really well. I really liked the Priesc with the service to restart, with the help of the comnado watch. Really good.
@abdirahmann2 жыл бұрын
This was a ton of fun. Thanks alot john. am also waiting, idk what am waiting but am waiting! 🤣🤣
@jorisschepers852 жыл бұрын
Thanks again John for this video. Best regards from a 'Normie'!
@bhagyalakshmi1053 Жыл бұрын
Your talent in following numbers are so more this one to you got talent .
@patik2372 жыл бұрын
Although I could follow till the end while getting also lost with the playing around python prog stuff it was amazing...great video as always...thanks John
@Relmor2 жыл бұрын
Love watching your context bro👍🏼
@mossdem2 жыл бұрын
Haven't been here a while but happy to be back! Great video John as per usual
@webtvhd31412 жыл бұрын
Man loved the way you explain everyting first ever video keep up the good work. :-)
@curious_hrk2 жыл бұрын
Really loved it. Learned a lot. Thank you so much for making great content. Really appreciate it. Love from India
@gamingwithcloud007 Жыл бұрын
loved it 🔥🔥
@Carambolero2 жыл бұрын
Subscribed. Wow. Amazing content. Thx.
@Alan-jv5fq2 жыл бұрын
That was awesome. Thanks john!
@Rhyl4x2 жыл бұрын
Another awesome video John... Really enjoy the content :)
@Lodinn2 жыл бұрын
I'm watching it in part for all the cool github links and in part for console wizardry, don't want for it to be a full-time job for me but these things are just so cool to watch.
@yuanpeng26372 жыл бұрын
oh you are great, isee these things , ifeel it so complicated😹
@MaximumEffortInfoSec2 жыл бұрын
awesome video will definately give that room a go looks fun
@michaelkasede14892 жыл бұрын
That was a really fun challenge to watch and now I'm going to practically try it out.
@cristianiordache64182 жыл бұрын
I loved It a lot! Thank You!
@matwright1102 жыл бұрын
I hit the red button. keep up the good content :)
@flaviudsi2 жыл бұрын
Hey John.. Your video was great.. Had a lot of fun.. I've learned a lot.. Well, not sure how much I have assimilate it.. I still need to practice.. Chuck was right in his videos, you are great.
@tomasgorda2 жыл бұрын
Thanx, again great video. And i’m a subscriber 🤣🤣🤣
@gabrielfkeith2 жыл бұрын
This feels like old school Hammond. Love it.
@TheCinefotografiando2 жыл бұрын
You are a wonderful professor
@HAGSLAB2 жыл бұрын
Nice video John. I've never seen .phps files in the wild before, but probably a good idea to include that extension when doing dirbuster etc. from now on. Privesc was pretty nice!
@y3wtub32 жыл бұрын
Nice video. Do you do any live boxes like fresh so we can see you stumble around a bit? I like that raw style.
@CleftMan2 жыл бұрын
I appreciate you.
@devang48422 жыл бұрын
Legend!!
@Frogstomp_actual2 жыл бұрын
For the algorithm, great video sir.
@xx-mb4gj2 жыл бұрын
Hey John! Also waiting! ;)
@ManiusPL2 жыл бұрын
You are Brilliant :)
@user-bs3ji8ex2s2 жыл бұрын
very good content bhaiya
@thepuzzlemaker21592 жыл бұрын
25:11 Ah, of course, my good friend -Jason- JSON
@Whadafishbro2 жыл бұрын
Waiting dudeee
@terminatorfishstudios2 жыл бұрын
The goal I get it is take the shortest route but damn leaving all your requests commands and logins logged, gonna be hard to cover up. Best video I’ve ever watched btw, no video has stood out to me so much, your knowledge is amazing!
@8813501222 жыл бұрын
Loved it. Watched the whole thing and it is fascinating from start to end.
@Axodus Жыл бұрын
Real life Uplink.
@abiteofsomtam2 жыл бұрын
Awesome video!
@ernestoo83132 жыл бұрын
This was a lot of fun!
@rrd_webmania Жыл бұрын
Great video again. I would use ffuf instead of your bash command.
@Alex-sc2rc2 жыл бұрын
I love how the room has 67 upvotes and john says 75.
@huskyman204352 жыл бұрын
That ending hot me surprised
@frametrails2 жыл бұрын
Another great video. Could you please make a video on Active Directory Resources that can help us to prepare for OSCP (new exam changes)? Thanks a lot 🙂
@ajualex35032 жыл бұрын
please do check the cyber mentor 's zero to hero playlist
@siriuswinter10652 жыл бұрын
i may be a few months late, but these videos always help me with my stuff, now i know what NOT to do when configuring.
@zedex74262 жыл бұрын
john why are you rounding up at closest miltiole of 25 im curious 00:40
@DordiHOTS2 жыл бұрын
People like you are the reason my accounts keep getting hacked lol
@joaosidonio75628 ай бұрын
that was pretty cool
@TheSaGiV132 жыл бұрын
Great vid
@janosmarton78952 жыл бұрын
nice one buddy
@eduardprivat98212 жыл бұрын
amazing!
@NotTomWasHere2 жыл бұрын
Good stuff
@FalcoGer2 жыл бұрын
I love wfuzz. It's so super versitile. Directory search, dns name search, fuzzing user agents, cookies, form posts. You can get stuff from files, encode on the fly, get your input from stdin and pipe hashcat or some python script into it
@hypedz14952 жыл бұрын
Will you do a clickjacking video next?
@H4R4K1R1x2 жыл бұрын
Awesome
@ryanlea7502 жыл бұрын
🤩 wow
@ca79862 жыл бұрын
❤️
@sechvnnull15242 жыл бұрын
Awesome!!
@oliverk67112 жыл бұрын
LastPass 👀
@capability-snob2 жыл бұрын
{ This video is Unmatched.
@ajavezzano35532 жыл бұрын
Ah yes,
@truthabout2730 Жыл бұрын
Fail2ban enabled on the mfa would have been interesting
@DamianRyse2 жыл бұрын
I'm one of the other 45% \o/
@dipeshdev69422 жыл бұрын
Waiting from Nepal
@brucecouch31562 жыл бұрын
Amazingly Hackalisious!!!!!
@XiSparks2 жыл бұрын
It is so ironic that fail2ban can be used for privesc. lol
@amodo802 жыл бұрын
Thanks for another great video. One question though: Why do you call the python script by invoking `python` when you have a python shebang set? Or asked the other way around: Why do you set a shebang when you don't chmod +x the script and execute directly?
@skullteria2 жыл бұрын
how often did ppl ask you if you are related to kermit?
What kind of system are you running? CPU /GPU etc..!
@stfbrasil19892 жыл бұрын
Windows 8 Não precisa de ajuda nenhuma Entende de tudo né? É segurança da Informação?
@an3ssh2 жыл бұрын
I am soo noob right now and learning. I wonder how long would it take to brute force a 6 digit and a 8 digit code.
@DarkSide-ok4xn11 ай бұрын
It is very easy when you do it, but the opposite is when we do it, it is difficult and it is not solved at all
@Gokusupersayen32 жыл бұрын
Where is PicoCTF pt 2 !!!!
@aaryanbhagat48522 жыл бұрын
I do not understand why fail2ban did not work when you were bruteforcing mfa.
@tim.martin2 жыл бұрын
Fail2ban needs to be setup manually for non-builtin services (e.g., this mfa). The real reason though, it's part of the game. Remember the line "hey Fred we need to setup fail2ban on this mfa"
@brandonlee24352 жыл бұрын
Why does chmod +s /bin/bash allow for privesc on demand?
@somebodystealsmyname2 жыл бұрын
Hey John, in your loop, wouldn't it be better to use ... grep -v "Incorrect code" && echo $i; break ...?
@hypedz14952 жыл бұрын
Ah yes.. john..john hammond 🙂
@bigbob01892 жыл бұрын
I’m new to cyber security but I’ve take. Some classes and am looking to get some certifications is there any you recommend?
@bigbob01892 жыл бұрын
Ps love the content man
@strato51352 жыл бұрын
Couldn't you just do a lookup of any arbitrary md5 hash, and change the last 3 to 001...?
@capability-snob2 жыл бұрын
The difficulty is not finding a valid md5 hash, but in finding a password that has the hash you want. That's what you get to put in to the site - the password, not the hash.
@strato51352 жыл бұрын
@@capability-snob TY
@REktSigMa10 ай бұрын
Idk if anyone still answers questions from these older videos or not, but is that IP Address you copied is that the target IP address? Like the system you are attempting to Hack?
@_JohnHammond10 ай бұрын
Yes, when TryHackMe finishes "start machine" after 60 seconds and gives you an IP address, that is the IP address of the machine (inside the VPN network) that you are targeting :)
@REktSigMa10 ай бұрын
I am trying to learn all the ins and outs of ethical hacking, I would like to be able to protect myself, from all of these different avenues that Black Hat Hackers exploit every single day. Yō, I do watch all your videos bro. Love the content thanks. @@_JohnHammond
@REktSigMa10 ай бұрын
I have had my Gmail account stolen once before, I use to play games on PlayStation and when I switched to PC no one told me about Hackers, I mean I knew they existed, but I didn't know they were everywhere on Steam. My friends on PSN were just friends, but I found out real fast that you cannot trust anyone on Steam at all. There was a thief that pretended to be a friend, that told me that he reported me for cheating, I was like, "What" because I have never cheated at any video game, but he led me to think that Steam anti-cheat personnel wanted to talk to me about this event and provided me a link to click. I didn't know any different, and they stole my Steam account and from there they broke into my Gmail, disabled 2fa, and almost broke into my PayPal where I have 800 dollars, Luckly Google shut that account down before they did. That has been a few years ago. But if Malware is what you like, Steam is full of it. @@_JohnHammond