UHC - Pressed
00:00 - Intro
01:07 - Running nmap, discovering wordpress
01:40 - Manually looking at the wordpress site, finding a post that has some dynamic content on it... This is weird
03:00 - Attempting to poison the browser table with php/ssti/etc user agents
06:00 - Starting wpscan with enumerating all plugins
08:20 - WPScan found a backup of the configuration file
10:00 - Changing the year on the password of the configuration file and discovering MFA
11:30 - Talking about the "Discover Backup" argument of gobuster, which does find another wp-config.php backup file
13:53 - Explaining what the XMLRPC Interface to wordpress
16:30 - Showing the system.listMethods function on the XMLRPC to list all the methods
18:50 - Switching over to the Python Wordpress XMLRPC Library to play with this interface, creating an object to login
21:35 - Showing how to dump users, then examine properties of a user
24:40 - Attempting to use this library to upload files, discover we can only upload images
28:15 - Dumping the posts, and discovering the table we found earlier was using the php-everywhere plugin on a post. Using the XMLRPC Interface to edit the post to host malicious PHP
33:40 - Creating a PHP File that will write another PHP Shell and lock it down to an IP Address
38:40 - Had an issue with my webshell, running it locally to discover what the issue was and re-uploading
42:45 - Got RCE! However, reverse shells aren't working enumerating the firewall
45:15 - Explaining why I am going to use my Forward Shell
46:45 - Grabbing my Forward Shell Skeleton code, modifying it and getting RCE
50:00 - Forward shell works! That took next to no time and I explained a lot of it
53:20 - The date on pkexec is old, it's probably vulnerable. Compiling a POC and uploading it through the XMLRPC, then running it to get root
58:00 - Another PwnKit method, if I didn't have a Forward Shell having pwnkit chmod /root/ to 777 would allow us to read the flag
1:03:10 - Going over the WPScan enumerate all plugins
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 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
The XSS Escalation Playbook: From Basic Reflection to DOM Breakouts
Medium · Cybersecurity
Chapters (23)
Intro
1:07
Running nmap, discovering wordpress
1:40
Manually looking at the wordpress site, finding a post that has some dynamic c
3:00
Attempting to poison the browser table with php/ssti/etc user agents
6:00
Starting wpscan with enumerating all plugins
8:20
WPScan found a backup of the configuration file
10:00
Changing the year on the password of the configuration file and discovering MF
11:30
Talking about the "Discover Backup" argument of gobuster, which does find anot
13:53
Explaining what the XMLRPC Interface to wordpress
16:30
Showing the system.listMethods function on the XMLRPC to list all the methods
18:50
Switching over to the Python Wordpress XMLRPC Library to play with this interf
21:35
Showing how to dump users, then examine properties of a user
24:40
Attempting to use this library to upload files, discover we can only upload im
28:15
Dumping the posts, and discovering the table we found earlier was using the ph
33:40
Creating a PHP File that will write another PHP Shell and lock it down to an I
38:40
Had an issue with my webshell, running it locally to discover what the issue w
42:45
Got RCE! However, reverse shells aren't working enumerating the firewall
45:15
Explaining why I am going to use my Forward Shell
46:45
Grabbing my Forward Shell Skeleton code, modifying it and getting RCE
50:00
Forward shell works! That took next to no time and I explained a lot of it
53:20
The date on pkexec is old, it's probably vulnerable. Compiling a POC and uplo
58:00
Another PwnKit method, if I didn't have a Forward Shell having pwnkit chmod /r
1:03:10
Going over the WPScan enumerate all plugins
🎓
Tutor Explanation
DeepCamp AI