write-ups-challenges-2022-2023/inziption/SOLUTION.md

14 lines
347 B
Markdown
Raw Normal View History

2022-11-24 21:59:22 +00:00
## Difficulty
Easy, 20 points
## How To Solve
Initial file is a zip file, which contains a series of zip files.
Eventually, you'll get to E.zip, which is a password protected zipfile.
You can crack this with John The Ripper:
1. `zip2john E.zip > out.hash`
2. `john out.hash --wordlist=rockyou.txt`
3. `cat flag`
## Flag
IGCTF{Z1pp3dT0P1eces}