HackTheBox - Crossfit
Skills:
Security Basics90%AI Security80%Tool Use & Function Calling80%Defensive AI70%Network Security60%
00:00 - Intro
01:08 - Installing Obsidian which lets us take notes in Markdown format
03:10 - Running nmap to see FTP over SSL and it has certificates
05:20 - Using openssl to grab the SSL Certificate from FTP
06:50 - Going over the web page extracting emails, people, and user input locations
08:20 - Installing flameshot, which helps us take better screenshots
18:15 - Testing each contact form with XSS Cross Site Scripting
19:10 - XSS in blog-single.php Triggers an security error saying admins will be looking over our request, attempt to attack admins
23:10 - Putting XSS Payloads in the User Agent
25:25 - XSS Attempting to steal cookies with a basic payload, failing here. Document.location is lazy, should do document.write to write an image so the user is not redirected.
27:50 - Using ffuf to bruteforce domains via the CORS Origin header to discover FTP
33:35 - XSS Using XMLHttpRequest to use the victims browser like a proxy and return web pages to us
38:20 - XSS Using XMLHttpRequest to grab a CSRF Token then send a post request to create a user
46:50 - Using lftp to login to the ftp and upload a webshell to development-test
57:50 - Shell returned as www-data, finding a Hank's password in /etc/ansible/playbooks
1:16:05 - SSH as hank and examine the send_updates.php file to find command injection
1:24:40 - Finding credentials for ftpadm which lets us create a file to trigger the command injection
1:33:40 - SSH as Isaac and doing some basic enumeration, explaining why we can't see processes from other users hidepid is set on /proc
1:35:50 - Using find to do a bunch of IR to find what is unique about hank
1:37:50 - Using find to look for files modified between two dates and dbmsg stands out
1:42:10 - The dbmsg stands out due to its timestamp having nanoseconds, it is the only file like this in /usr/bin
1:51:00 - Going over DBMSG in Ghidra, explaining the SRAND setting seed to current time
1:56:15 - Attempting to name variables based upon what we think they are
2:03:0
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: Security Basics
View skill →Related AI Lessons
⚡
⚡
⚡
⚡
Virtual Keyboard Login with PingOne Advanced Identity Cloud
Medium · Cybersecurity
Why Businesses Quietly Accept Technology Friction as “Normal”
Medium · Cybersecurity
The Model You Just Downloaded Might Own Your Network — What I Learned Building Defenses Against AI…
Medium · Cybersecurity
I Found Backdoored AI Models on Hugging Face — And So Has Everyone Else Who Bothered to Look
Medium · Cybersecurity
Chapters (23)
Intro
1:08
Installing Obsidian which lets us take notes in Markdown format
3:10
Running nmap to see FTP over SSL and it has certificates
5:20
Using openssl to grab the SSL Certificate from FTP
6:50
Going over the web page extracting emails, people, and user input locations
8:20
Installing flameshot, which helps us take better screenshots
18:15
Testing each contact form with XSS Cross Site Scripting
19:10
XSS in blog-single.php Triggers an security error saying admins will be lookin
23:10
Putting XSS Payloads in the User Agent
25:25
XSS Attempting to steal cookies with a basic payload, failing here. Document.
27:50
Using ffuf to bruteforce domains via the CORS Origin header to discover FTP
33:35
XSS Using XMLHttpRequest to use the victims browser like a proxy and return we
38:20
XSS Using XMLHttpRequest to grab a CSRF Token then send a post request to crea
46:50
Using lftp to login to the ftp and upload a webshell to development-test
57:50
Shell returned as www-data, finding a Hank's password in /etc/ansible/playbook
1:16:05
SSH as hank and examine the send_updates.php file to find command injection
1:24:40
Finding credentials for ftpadm which lets us create a file to trigger the comm
1:33:40
SSH as Isaac and doing some basic enumeration, explaining why we can't see pro
1:35:50
Using find to do a bunch of IR to find what is unique about hank
1:37:50
Using find to look for files modified between two dates and dbmsg stands out
1:42:10
The dbmsg stands out due to its timestamp having nanoseconds, it is the only f
1:51:00
Going over DBMSG in Ghidra, explaining the SRAND setting seed to current time
1:56:15
Attempting to name variables based upon what we think they are
🎓
Tutor Explanation
DeepCamp AI