HackTheBox - Overflow
00:00 - Intro
01:00 - Start of nmap
02:20 - Taking a look at the website
03:10 - Examining the AUTH Cookie and talking about why its unique
05:40 - Running FeroxBuster, talking about why I started using it
08:15 - Examining the length of the cookie with various usernames to discover the cookie length changes
11:30 - Discovering the block size
12:30 - Modifying the cookie and getting an Invalid Padding error message. Which indicates it may be vulnerable to Padding Oracle
14:20 - Running padbuster to perform the Padding Oracle attack and decrypt the cookie. Then creating a new cookie changing our username
19:30 - Changing our cookie to the forged one and logging into the application as Administrator
21:05 - Finding an SQL Injection in the Logs endpoint, using SQLMap to dump everything
29:15 - Going over the SQLMap history files to view previously dumped data, so we don't have to make more requests to the server
33:00 - Cannot crack the MD5's in the database, downloading the CMS Made Simple source and doing some quick code review to find out all MD5's have a static salt
42:30 - Cracking the salted MD5 password of the editor user with hashcat
45:10 - Going to the devbuild-job.overflow.htb and discover there's an upload resume
49:00 - Uploading a jpeg results in the server giving us the ExifTool version, finding CVE-2021-22204 which is an exploit against ExifTool to run commands. Getting shell
54:00 - Reverse shell returned, getting developers password and using SSH to login as them
56:35 - Using find to list files owned by developer to find files owned by developer
59:20 - Hunting for files owned by tester and discovering commontask.sh, we can exploit this because we have write access over /etc/hosts
1:02:55 - Shell as tester
1:04:25 - Talking about extended attributes, using getfacl to show them
1:06:00 - Discovering a SetUID File, every time running it there is the same PIN Code it is prompting us for. Copy it to our local box and seeing if the pincode is the same
1:
Watch on YouTube ↗
(saves to browser)
Sign in to unlock AI tutor explanation · ⚡30
Playlist
Uploads from IppSec · IppSec · 0 of 60
← Previous
Next →
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
HHC2016 - Analytics
IppSec
HackTheBox - October
IppSec
HackTheBox - Arctic
IppSec
HackTheBox - Brainfuck
IppSec
HackTheBox - Bank
IppSec
HackTheBox - Joker
IppSec
HackTheBox - Lazy
IppSec
Camp CTF 2015 - Bitterman
IppSec
HackTheBox - Devel
IppSec
Reversing Malicious Office Document (Macro) Emotet(?)
IppSec
HackTheBox - Granny and Grandpa
IppSec
HackTheBox - Pivoting Update: Granny and Grandpa
IppSec
HackTheBox - Optimum
IppSec
HackTheBox - Charon
IppSec
HackTheBox - Sneaky
IppSec
HackTheBox - Holiday
IppSec
HackTheBox - Europa
IppSec
Introduction to tmux
IppSec
HackTheBox - Blocky
IppSec
HackTheBox - Nineveh
IppSec
HackTheBox - Jail
IppSec
HackTheBox - Blue
IppSec
HackTheBox - Calamity
IppSec
HackTheBox - Shrek
IppSec
HackTheBox - Mirai
IppSec
HackTheBox - Shocker
IppSec
HackTheBox - Mantis
IppSec
HackTheBox - Node
IppSec
HackTheBox - Kotarak
IppSec
HackTheBox - Enterprise
IppSec
HackTheBox - Sense
IppSec
HackTheBox - Minion
IppSec
VulnHub - Sokar
IppSec
VulnHub - Pinkys Palace v2
IppSec
HackTheBox - Inception
IppSec
Vulnhub - Trollcave 1.2
IppSec
HackTheBox - Ariekei
IppSec
HackTheBox - Flux Capacitor
IppSec
HackTheBox - Jeeves
IppSec
HackTheBox - Tally
IppSec
HackTheBox - CrimeStoppers
IppSec
HackTheBox - Fulcrum
IppSec
HackTheBox - Chatterbox
IppSec
HackTheBox - Falafel
IppSec
How To Create Empire Modules
IppSec
HackTheBox - Nightmare
IppSec
HackTheBox - Nightmarev2 - Speed Run/Unintended Solutions
IppSec
HackTheBox - Bart
IppSec
HackTheBox - Aragog
IppSec
HackTheBox - Valentine
IppSec
HackTheBox - Silo
IppSec
HackTheBox - Rabbit
IppSec
HackTheBox - Celestial
IppSec
HackTheBox - Stratosphere
IppSec
HackTheBox - Poison
IppSec
HackTheBox - Canape
IppSec
HackTheBox - Olympus
IppSec
HackTheBox - Sunday
IppSec
HackTheBox - Fighter
IppSec
HackTheBox - Bounty
IppSec
Related AI Lessons
⚡
⚡
⚡
⚡
Why SIEM Alerts Fail: The Gap Between Detection Logic and Real SOC Triage
Medium · Cybersecurity
5 Critical Signs Your Perth Business Network Has a Hidden Malware Infection
Medium · Cybersecurity
Weekly Threat Intelligence Report 11 May 2026
Medium · Cybersecurity
PortSwigger Lab: CORS Vulnerability with Trusted Insecure Protocols
Medium · Cybersecurity
Chapters (22)
Intro
1:00
Start of nmap
2:20
Taking a look at the website
3:10
Examining the AUTH Cookie and talking about why its unique
5:40
Running FeroxBuster, talking about why I started using it
8:15
Examining the length of the cookie with various usernames to discover the cook
11:30
Discovering the block size
12:30
Modifying the cookie and getting an Invalid Padding error message. Which indic
14:20
Running padbuster to perform the Padding Oracle attack and decrypt the cookie.
19:30
Changing our cookie to the forged one and logging into the application as Admi
21:05
Finding an SQL Injection in the Logs endpoint, using SQLMap to dump everything
29:15
Going over the SQLMap history files to view previously dumped data, so we don'
33:00
Cannot crack the MD5's in the database, downloading the CMS Made Simple source
42:30
Cracking the salted MD5 password of the editor user with hashcat
45:10
Going to the devbuild-job.overflow.htb and discover there's an upload resume
49:00
Uploading a jpeg results in the server giving us the ExifTool version, finding
54:00
Reverse shell returned, getting developers password and using SSH to login as
56:35
Using find to list files owned by developer to find files owned by developer
59:20
Hunting for files owned by tester and discovering commontask.sh, we can exploi
1:02:55
Shell as tester
1:04:25
Talking about extended attributes, using getfacl to show them
1:06:00
Discovering a SetUID File, every time running it there is the same PIN Code it
🎓
Tutor Explanation
DeepCamp AI