HackTheBox - Extension
00:00 - Intro
01:00 - Start of nmap, then discovering a laravel app
05:00 - Laravel app uses Ziggy which exposes a list of all the routes
07:50 - Finding the /management/dump endpoint but we keep getting page expired (missing some headers)
12:50 - Using ffuf to brute-force the management/dump endpoint
15:55 - Dumping a list of users and then cracking them
21:30 - Enumerating virtualhosts, then looking at the roundcube version
27:50 - Discovering the first 32 characters of the password reset token does not change
32:40 - Attempting to bruteforce the password reset token for Charlie's password but discovering there's rate limiting in play
33:50 - Spamming the password reset link to generate multiple tokens, which will allow us to guess a token
35:14 - Edit, explaining the multiple password reset vulnerability more in depth
37:18 - End of edit, resetting charlie's password
41:00 - Logging into Gitea as Jean and discovering a browser extension. Installing it to see what it does
45:20 - Explaining the XSS Filter check on the extension
58:30 - Initial payload to prove we can execute javascript
1:13:45 - We have a base64 cradle to bypass the filter, creating a payload to interact with the gitea api to see what repo's the user has access to
1:24:04 - Getting information from the backups repo, then downloading the contents
1:29:00 - Extracting the tar from the git repo and getting an ssh key, finding passwords in the .git_credentials file
1:33:20 - Looking at the Laravel Source Code and discovering there is a command injection
1:38:00 - Looking at the email validation request, to show we need to create a valid checksum
1:42:30 - Explaining how the secret is generated from the source code, because the secret is at the beginning we can do a hash length extension
1:44:20 - Using Hash_Extender to generate a bunch of payloads in order to find the length of the secret
1:49:00 - Start of using python to submit the validation check
2:01:50 - Finding out the issue I'm running into, s
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
More on: Network Security
View skill →Related AI Lessons
⚡
⚡
⚡
⚡
Security Through Obscurity:
The Comforting Lie We
Need to Stop Telling Ourselves
Medium · Cybersecurity
Host & Network Penetration Testing: Exploitation CTF 1
Medium · Cybersecurity
CrowdStrike’s Friday — The 78 Minutes That Broke the World’s Windows
Medium · Cybersecurity
Hardening Algolia MCP Server the same way I hardened Notion MCP: seven small filters
Dev.to · Mukunda Rao Katta
Chapters (24)
Intro
1:00
Start of nmap, then discovering a laravel app
5:00
Laravel app uses Ziggy which exposes a list of all the routes
7:50
Finding the /management/dump endpoint but we keep getting page expired (missin
12:50
Using ffuf to brute-force the management/dump endpoint
15:55
Dumping a list of users and then cracking them
21:30
Enumerating virtualhosts, then looking at the roundcube version
27:50
Discovering the first 32 characters of the password reset token does not chang
32:40
Attempting to bruteforce the password reset token for Charlie's password but d
33:50
Spamming the password reset link to generate multiple tokens, which will allow
35:14
Edit, explaining the multiple password reset vulnerability more in depth
37:18
End of edit, resetting charlie's password
41:00
Logging into Gitea as Jean and discovering a browser extension. Installing it
45:20
Explaining the XSS Filter check on the extension
58:30
Initial payload to prove we can execute javascript
1:13:45
We have a base64 cradle to bypass the filter, creating a payload to interact w
1:24:04
Getting information from the backups repo, then downloading the contents
1:29:00
Extracting the tar from the git repo and getting an ssh key, finding passwords
1:33:20
Looking at the Laravel Source Code and discovering there is a command injectio
1:38:00
Looking at the email validation request, to show we need to create a valid che
1:42:30
Explaining how the secret is generated from the source code, because the secre
1:44:20
Using Hash_Extender to generate a bunch of payloads in order to find the lengt
1:49:00
Start of using python to submit the validation check
2:01:50
Finding out the issue I'm running into, s
🎓
Tutor Explanation
DeepCamp AI