Rating:

### Detailed writeup on my [github](https://github.com/DaBaddest/CTF-Writeups/tree/master/Csisctf/Panda)

Crack zip passwords using:
```
zip2john panda.zip > hash.txt
john.exe --wordlist=real_human hash.txt
```
Then run this **one-liner**:
```
print(''.join([chr(i) for i, j in zip(open('panda1.jpg', 'rb').read(), open('panda.jpg', 'rb').read()) if i!= j]))
```
Which gives us the flag:
```
csictf{kung_fu_p4nd4}
```