Hack The Box: Previous

Description Previous is a medium Hack The Box machine that features: Next.js Middleware Authorization Bypass Vulnerability Next.js Path Traversal that leads into reading compiled source code Compiled source code contains user credentials User credentials reused for Linux user Privilege Escalation via a malicious Terraform provider Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.235.175. ...

January 10, 2026 · 10 min

Capture and decryption of Bluetooth Low Energy (BLE) traffic

Introduction The Bluetooth Low Energy (BLE) protocol has become a fundamental standard within the IoT ecosystem, used in wearables, sensors, peripherals, and a wide variety of connected devices. It is possible to capture and analyze its traffic in real time using dedicated hardware. For this purpose, the nRF52840 Dongle from Nordic Semiconductor, together with the tool nRF Sniffer for Bluetooth LE, constitutes an accessible and powerful solution. The necessary firmware will be installed on the dongle, the sniffer will be integrated into a Linux environment, and BLE traffic will be captured in Wireshark. Three analysis scenarios are also addressed with different levels of security: connections without pairing, vulnerable classic pairing (Legacy Pairing), and modern and robust pairing based on elliptic curves (LE Secure Connections). ...

January 1, 2026 · 11 min

Hack The Box: Editor

Description Editor is an easy Hack The Box machine that features: XWiki Remote Command Execution vulnerability User Pivoting via a reused credential from a MySQL database Privilege Escalation via netdata binary with SUID bit set and PATH manipulation Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.209.7. $ ping -c 3 10.129.209.7 PING 10.129.209.7 (10.129.209.7) 56(84) bytes of data. 64 bytes from 10.129.209.7: icmp_seq=1 ttl=63 time=46.7 ms 64 bytes from 10.129.209.7: icmp_seq=2 ttl=63 time=46.6 ms 64 bytes from 10.129.209.7: icmp_seq=3 ttl=63 time=46.6 ms --- 10.129.209.7 ping statistics --- 3 packets transmitted, 3 received, 0% packet loss, time 2004ms rtt min/avg/max/mdev = 46.625/46.646/46.666/0.016 ms The machine is active and with the TTL that equals 63 (64 minus 1 jump) we can assure that it is an Unix machine. Now we are going to do a Nmap TCP SYN port scan to check all opened ports. ...

December 6, 2025 · 6 min

Dynamic Analysis on Android - V - Injecting the Frida Gadget into .apk Files

Introduction Dynamic analysis of Android applications has become an essential discipline for those who develop or audit their own mobile projects. Instrumenting an app in real time allows us to fully understand how it behaves, which code paths are involved in each operation, and how our defensive mechanisms respond to different scenarios. Among the tools that facilitate this process stand out Frida and Objection. To explore these concepts in a controlled way, we will use the application Android SSL Pinning Demo by httptoolkit, an open-source project designed to experiment with various methods of certificate pinning. We will also make use of the scripts published by the same team to analyze the internal workings of TLS verification. This lab is ideal because it offers a secure environment in which it is possible to test instrumentation techniques without impacting third-party software. ...

December 1, 2025 · 6 min

Hack The Box: Era

Description Era is a medium Hack The Box machine that features: Subdomain Enumeration to find a web storage application User enumeration via a flawed login implementation Login bypass via a flawed login implementation User pivoting via a flawed security reset implementation Download of the source code of the application (Insecure Direct Object Reference) leading to the discovery of a local file inclusion vulnerability by using PHP wrappers and user credentials Local File Inclusion vulnerability allows Remote Command Execution User pivoting by using previously found credentials Privilege Escalation by replacing a signed ELF writable by the user Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.244.58. ...

November 29, 2025 · 15 min

Hack The Box: Outbound

Description Outbound is an easy Hack The Box machine that features: Assumed breach of a mail user credentials Remote Command Execution vulnerability in Roundcube mail client Password from a Roundcube session decryption Roundcube decrypted password allow access to a mailbox with a password of a Linux user Privilege Escalation via Below application changing log files permissions to be writable to all users Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.253.19. ...

November 15, 2025 · 9 min

Hack The Box: Voleur

Description Voleur is a medium Hack The Box machine that features: Initial access using an assumed breach scenario that leads in domain discovery. This domain only allows Kerberos authentication SMB share discovery leading to the discover of a file with credentials of service accounts and a removed account One of the leaked accounts allows a targeted Kerberoast attack to another service account allowed to create remote sessions to the system Removed account can be recovered containing a backup of credentials encrypted using DPAPI and recovered credentials allow user pivoting Pivoted user has the private SSH key of the service backup account Service backup account holds the backup of Active Directory user database containing all the credentials Privilege Escalation by dumping the secrets of the Active Directory user database (Kerberos keys) Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.250.126. ...

November 1, 2025 · 14 min

Offensive Security Lab - III - Lab Solution

Introduction After the configuration in previous articles of the lab, we will proceed to its step-by-step resolution. Solution of the environment Now, in order to participate in the resolution of the environment, it will be necessary to deploy a virtual machine with an operating system such as Kali Linux with a network interface connected to the NatNetwork network created earlier with the OpenVPN .ovpn file to connect to the lab network. We connect to the VPN. ...

November 1, 2025 · 9 min

Hack The Box: Artificial

Description Artificial is an easy Hack The Box machine that features: AI web platform allowing the upload of Tensorflow models, which leads in remote command execution User pivoting by cracking the user hashes of the AI platform and password reuse Internal web application Backrest with a backup of its configuration archived with its password hash and the cracking of it Privilege Escalation via Command Execution using Backrest application Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.68.41. ...

October 25, 2025 · 9 min

Hack The Box: TombWatcher

Description TombWatcher is a medium Hack The Box machine that features: Initial access using an assumed breach scenario that leads in domain discovery Controlled user has WriteSPN permission over other user, allowing user pivoting with a targeted Kerberoast attack User is able to add itself to a group with the ReadGMSAPassword permission over a service account, allowing user pivoting Service account have ForceChangePassword permission over an user account, allowing changing the user password and user pivoting Next user account has WriteOwner permission over other user, allowing changing the owner, the permissions and the password of the user that is able of remotely access to the remote machine Active Directory Certificate Services deleted account recovery via the AD Recycle Bin One of the controlled users have GenericAll permission over the ADCS account, allowing full control Privilege Escalation via Active Directory Certificate Services ESC15 vulnerability Footprinting First, we are going to check with ping command if the machine is active and the system operating system. The target machine IP address is 10.129.44.254. ...

October 11, 2025 · 13 min