UHC - Backend
00:00 - Introduction
00:53 - Start of nmap
02:50 - Examining the webpage, just finding json. Running gobuster to discover /docs and /api
04:20 - Examining the user and admin endpoint, showing /user/ has a 404 but we can go into it
05:10 - Talking about why API Discovery differs from normal web, instead of extensions we fuzz methods
07:15 - Using wfuzz to fuzz endpoints in /user/ with POST Requests to discover /login and /signup
09:50 - Fuzzing the signup endpoint, reading error messages to identify the fields it wants
11:40 - Showing that curl behaves differently. Lets troubleshoot this by sending our curl and burpsuite to wireshark and seeing why its behaving differently
14:24 - Attempting to login to the API with the credential we created, discovering we need a urlencoded request
16:30 - Logging in and getting a JWT Token, accessing /docs/ with it which is swagger documentation
19:10 - Authenticating in the swagger, so we can use the web interface to access private functions
19:58 - Changing administrators password with the UpdatePass endpoint, which is an IDOR like vulnerability
20:30 - Logging in with admin, then accessing the admin functionality
22:30 - Exploring the /proc/self directory with the LFI and finding where the source code to this app lives
25:00 - Extracting the JWT Secret Key from app/core/config.py, and adding the debug parameter, which enables us to access the /access endpoint
26:20 - Showing we cannot use slashes or pluses on this endpoint
28:40 - Getting a reverse shell
29:29 - Discovering the root password in an authentication log, because someone entered a password in a username field
32:20 - Just looking at the code briefly. Should have prepared more to do this. Will probably do a separate video showing FastAPI.
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
⚡
⚡
⚡
⚡
Linux kernel flaw opens root-only files to unprivileged users
The Register
JWT vs Session Cookies vs PASETO: I Pen-Tested All Three. One Fell in 12 Minutes.
Medium · Cybersecurity
OpenClaw’s 512 Vulnerabilities: A Technical Breakdown
Dev.to · NexGenData
How to check your Windows PC for expiring security certificates - a big one ends in June
ZDNet
Chapters (19)
Introduction
0:53
Start of nmap
2:50
Examining the webpage, just finding json. Running gobuster to discover /docs a
4:20
Examining the user and admin endpoint, showing /user/ has a 404 but we can go
5:10
Talking about why API Discovery differs from normal web, instead of extensions
7:15
Using wfuzz to fuzz endpoints in /user/ with POST Requests to discover /login
9:50
Fuzzing the signup endpoint, reading error messages to identify the fields it
11:40
Showing that curl behaves differently. Lets troubleshoot this by sending our c
14:24
Attempting to login to the API with the credential we created, discovering we
16:30
Logging in and getting a JWT Token, accessing /docs/ with it which is swagger
19:10
Authenticating in the swagger, so we can use the web interface to access priva
19:58
Changing administrators password with the UpdatePass endpoint, which is an IDO
20:30
Logging in with admin, then accessing the admin functionality
22:30
Exploring the /proc/self directory with the LFI and finding where the source c
25:00
Extracting the JWT Secret Key from app/core/config.py, and adding the debug pa
26:20
Showing we cannot use slashes or pluses on this endpoint
28:40
Getting a reverse shell
29:29
Discovering the root password in an authentication log, because someone entere
32:20
Just looking at the code briefly. Should have prepared more to do this. Will
🎓
Tutor Explanation
DeepCamp AI