rev/mob_psycho

This commit is contained in:
Oystein Kristoffer Tveit 2024-09-06 19:43:34 +02:00
parent 4b9970bcf8
commit 66957e77d8
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 11 additions and 0 deletions

Binary file not shown.

11
rev/mob_psycho/solve.sh Executable file
View File

@ -0,0 +1,11 @@
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p bash unzip vim.xxd
working_dir="$(pwd)/files"
unzip -o -q mobpsycho.apk -d "$working_dir"
find "$working_dir" -name flag.txt | xargs cat | xxd -r -p
rm -rf "$working_dir"