Cat
XESXOR8/23/20261 min read
#mobile#htb#n/a
Cat
Platform: HackTheBox | Category: Mobile | Difficulty: Easy | Author: D3v0o0Nu11 | Date: 2026-02-10
Description
Easy leaks
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. -
Check the file type.
-
Since it's an android backup file, we can extract it using abp or android-backup-processor.
java -jar abp.jar unpack cat.ab cat.rar
-
Extract the
.rarfile. -
We got 2 new folders.
-
Let us jump to
shared.
JUMP TO 0
- I checked every folder but got nothing, except the
Pictures.
PICTURES
- Something caught my attention when i checked image
IMAG0004.jpg.
IMAG0004.jpg
-
When i zoomed in at the bottom of paper the person's holding.
-
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.