0ld is g0ld
XESXOR8/23/20261 min read
#osint#htb#n/a
0ld is g0ld
Platform: HackTheBox | Category: OSINT | Difficulty: N/A | Author: D3v0o0Nu11 | Date: 2026-02-10
Description
Old algorithms are not a waste, but are really precious...
Solution Approach
Core idea: Identify the weakness from source review or fingerprinting first. Iterate with incremental payloads instead of guessing.
Steps
-
First, unzip the
.zipfile given. -
Let us check the file type.
-
Anyway, open the pdf file.
-
Seems we need to find the password.
-
Use
pdfcrack.
pdfcrack -w /usr/share/wordlists/rockyou.txt -f '0ld is g0ld.pdf'
-
Got the pass, use the pass now.
-
Notice there's something down there.
-
Copy it then decode it using this online tool.
-
Wrap it with
HTB{}. -
Got the flag.
Flag
REDACTED
Lessons Learned
- Identify the weakness from source review or fingerprinting first.
- Iterate with incremental payloads instead of guessing.
- Reuse the same pattern in future engagements.