fs0ciety
XESXOR8/23/20261 min read
#misc#htb#n/a
fs0ciety
Platform: HackTheBox | Category: Misc | Difficulty: N/A | Author: D3v0o0Nu11 | Date: 2026-02-10
Description
We believe that there is an SSH Password inside password protected 'ZIP' folder. Can you crack the 'ZIP' folder and get the SSH password?
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. -
Unzip the
.zipfile we got. -
Since we didn't know the password, use fcrackzip.
-
Got the pass, let us unzip it with the pass we got.
-
Strings the
.txtfile. -
I noticed that the strings looks like encoded in base64.
-
Let us decode it then.
-
Copy the binaries and paste it on cyberchef.
-
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.