IppSec
Famous for detailed walkthroughs of Capture The Flag challenges and Hack The Box machines, breaking down each step methodically for learners ([securityboulevard.com](https://securityboulevard.com/2023/07/10-best-cybersecurity-youtube-channels-of-2023/#:~:text=9,and%20Hack%20The%20Box%20Machines)).

HackTheBox - Interpreter
The video walks through the HackTheBox "Interpreter" machine, beginning with an nmap scan that reveals SSH, HTTP, and HTTPS services on a Debian host. By inspecting the web application’s JNLP file, the presenter identifies Mirth Connect 4.4.0 and locates CVE‑2023‑43208, a Java deserialization flaw exploitable via a crafted XML payload. Using the vulnerability, a reverse shell is obtained, the attacker pivots to the server’s filesystem, and extracts the MySQL configuration from mirth.properties. Connecting to the local database yields a PBKDF2‑HMAC‑SHA256 password hash stored in the person_password table. The presenter demonstrates how to parse the Base64‑encoded value, isolate the salt and iteration count, and reformat it for Hashcat mode 10900, enabling offline cracking of the admin credential. Key technical details include the use of a custom templating engine that evaluates triple‑f‑string expressions, the IFS‑based quote‑escaping trick to bypass Java’s quoting restrictions, and the base64‑encoding of the reverse‑shell command to avoid bad characters. The walkthrough also references the Swagger API endpoint, the YSOSerial payload generator, and the specific hash‑mode filters used to locate the correct PBKDF2 variant. The demonstration underscores the danger of unpatched Java applications and insecure custom code paths, showing how a single deserialization bug can lead from remote code execution to full database compromise and credential harvesting. It provides a reproducible methodology valuable for both CTF participants and real‑world penetration testers.

HackTheBox - MonitorsFour
The video walks through the Hack The Box "Monitors4" machine, showing a hands‑on, manual exploitation path rather than relying on pre‑written scripts. The presenter starts with basic reconnaissance, discovers a single HTTP service running Nginx on Windows, and then fuzzes...

HackTheBox - Pterodactyl
The video walks through the Hack The Box "Pterodactyl" machine, a deliberately vulnerable game‑server management platform. The presenter starts with basic network enumeration, discovers the Pterodactyl panel at version 1.11.10, and maps the limited open ports (SSH 22, HTTP 80). Key insights include a...

HackTheBox - Overwatch
The video walks through the Hack The Box "Overwatch" machine, illustrating how a seemingly innocuous SMB file share can expose a .NET executable and its configuration file, which inadvertently discloses a Microsoft SQL password. The author then discovers that the...

HackTheBox - Sorcery
The video walks through the Hack The Box "Sorcery" machine, beginning with standard enumeration that reveals only SSH and HTTPS services. The HTTPS site runs a minimal Next.js front‑end backed by a Rust Rocket server, hinting at a Neo4j database....

HackThebox - Eighteen
The video walks through the Hack The Box machine “Eighteen,” an assumed‑breach scenario where the tester starts with a set of credentials for a Microsoft SQL Server. Initial reconnaissance with Nmap reveals only HTTP (IIS) and MSSQL ports, and the...

HackTheBox - Conversor
The video walks through the Hack The Box "Conversor" machine, an ostensibly easy box that hides two distinct attack vectors. The target is a Flask‑based web application that accepts XML and XSLT files to generate HTML reports, while the underlying...

HackTheBox - Gavel
The video walks through the Hack The Box “Gavel” machine, focusing on a rare SQL injection that abuses a prepared statement by injecting the column name. After enumerating the host with nmap, the presenter discovers an exposed .git directory, clones the...

HackTheBox - Principal
The HackTheBox "Principal" machine centers on a freshly disclosed CVE 2024‑XXXX in the JJWT Java library, which mistakenly skips signature verification when a JWT’s signature field is null. Combined with an SSH daemon that trusts keys signed by an unprotected Certificate...

HackTheBox - ExpressWay
The video walks through the Hack The Box "ExpressWay" machine, illustrating how a seemingly simple box can be compromised by leveraging old, overlooked vulnerabilities. The presenter starts with a UDP Nmap scan, discovers the IKE service on port 500, and uses...

HackTheBox - Guardian
The HackTheBox "Guardian" walkthrough demonstrates a full‑stack penetration test, starting with network scanning and sub‑domain discovery that revealed a default credential (GU1234). Attackers leveraged FFUF to brute‑force accounts, accessed a chat feature, and uncovered a Gitea instance where the public...

HackTheBox - GiveBack
The video walks through the Hack The Box “GiveBack” challenge, showing how a seemingly ordinary WordPress site can be leveraged to gain full control of a Kubernetes‑hosted environment. The presenter first discovers that the site runs an outdated Give plugin (v3.14.0)...

HackTheBox - Soulmate
The video walks through the Hack The Box “Soulmate” challenge, emphasizing a disciplined, multitasked reconnaissance approach rather than a straight‑to‑code‑execution mindset. Ipsac begins with an Nmap sweep, discovers only SSH and HTTP, then adds a host entry for soulmate.htb and...

HackTheBox - Signed
The video walks through solving the HackTheBox "Signed" machine, an assumed‑breach challenge centered on a Microsoft SQL Server 2022 instance. Starting with default credentials, the presenter demonstrates initial enumeration, discovers that the guest account lacks XP cmd shell privileges, and pivots to...

HackTheBox - Imagery
The video walks through the Hack The Box "Imagery" machine, a Flask‑based web application exposing a gallery, login, and bug‑report functionality. The presenter begins with standard port scanning, identifies HTTP on port 8000, and confirms the service runs WorkZug on...