HackTheBox - Feline
00:00 - Intro
01:00 - Start of nmap digging into Version numbers of applications
04:00 - Finding Tomcat is an old version
06:00 - Checking out the web page
07:45 - Playing with the file upload, uploading an EICAR to test virus scanning
12:00 - Finding if we put a directory or nothing for filename we get an error message
14:00 - Looking at Tomcat exploits to see that we may be able to perform a deserialization attack by uploading a serialized object
17:00 - Using ysoserial to generate a CommonsCollection payload
18:15 - Showing a trick to copy binary content into BurpSuite
22:00 - Testing RCE by making the application ping us
22:30 - Failing to get a reverse shell, going through a lot of issues, attempting to encode our command to avoid bad characters
29:20 - Attempting to use a different one-liner to get a shell
32:30 - Giving up using one liners, sometimes two payloads are better than one. Downloading a script and then executing it.
37:00 - Discovering Docker is running on this box
40:35 - Finding out SALT is running on this box, which did have an unauth RCE recently (Salt Stack)
44:40 - Running chisel to forward SALT Ports which are listening on localhost (firewall bypass)
50:20 - Downloading a different exploit as the one we had doesn't seem to be working
53:00 - Getting a reverse shell with the SALTSTACK exploit and using script to log all the output of our reverse shell
56:00 - Reverse shell returned and we are in a Docker Container. This is weird.
57:55 - Running LinPEAS and discovering it has docker.sock exposed in it, along with .bash_history works.
58:50 - Exploring the Docker Web API, which we can access through the exposed docker socket
1:03:25 - Doing some redirection magic to allow the Web API Request to be sent to our box which automatically does JQ to prettify it
1:05:50 - Creating a JSON File which we will use in our HTTP Request to create a new docker container
1:07:30 - Using CURL To make the request and send our JSON File
1:08:45 - Fixing up our
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
⚡
⚡
⚡
⚡
HDFC AMC Just Confirmed a Cybersecurity Incident.
Medium · Cybersecurity
BEFORE YOU TOUCH THE TARGET: A PASSIVE AND ACTIVE RECON WALK-THROUGH FOR CYBERSECURITY…
Medium · Cybersecurity
Virtual Keyboard Login with PingOne Advanced Identity Cloud
Medium · Cybersecurity
Why Businesses Quietly Accept Technology Friction as “Normal”
Medium · Cybersecurity
Chapters (25)
Intro
1:00
Start of nmap digging into Version numbers of applications
4:00
Finding Tomcat is an old version
6:00
Checking out the web page
7:45
Playing with the file upload, uploading an EICAR to test virus scanning
12:00
Finding if we put a directory or nothing for filename we get an error message
14:00
Looking at Tomcat exploits to see that we may be able to perform a deserializa
17:00
Using ysoserial to generate a CommonsCollection payload
18:15
Showing a trick to copy binary content into BurpSuite
22:00
Testing RCE by making the application ping us
22:30
Failing to get a reverse shell, going through a lot of issues, attempting to e
29:20
Attempting to use a different one-liner to get a shell
32:30
Giving up using one liners, sometimes two payloads are better than one. Downlo
37:00
Discovering Docker is running on this box
40:35
Finding out SALT is running on this box, which did have an unauth RCE recently
44:40
Running chisel to forward SALT Ports which are listening on localhost (firewal
50:20
Downloading a different exploit as the one we had doesn't seem to be working
53:00
Getting a reverse shell with the SALTSTACK exploit and using script to log all
56:00
Reverse shell returned and we are in a Docker Container. This is weird.
57:55
Running LinPEAS and discovering it has docker.sock exposed in it, along with .
58:50
Exploring the Docker Web API, which we can access through the exposed docker s
1:03:25
Doing some redirection magic to allow the Web API Request to be sent to our bo
1:05:50
Creating a JSON File which we will use in our HTTP Request to create a new doc
1:07:30
Using CURL To make the request and send our JSON File
1:08:45
Fixing up our
🎓
Tutor Explanation
DeepCamp AI