WIDE
WIDE
Platform: HackTheBox | Category: Reversing | Difficulty: N/A | Author: D3v0o0Nu11 | Date: 2026-02-10
Description
We've received reports that Draeger has stashed a huge arsenal in the pocket dimension Flaggle Alpha. You've managed to smuggle a discarded access terminal to the Widely Inflated Dimension Editor from his headquarters, but the entry for the dimension has been encrypted. Can you make it inside and take control?
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 and jump to the extracted directory. -
Now run the binary file.
-
Hm.. let us enter any number here (?)
-
The program prompted us to enter the decryption key.
-
Let us decompile the file using ghidra.
-
Let us check the
menu()function. -
Got the thing we are looking for there.
The decryption key -> sup3rs3cr3tw1d3
-
Enter the key.
-
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.