7 lines
205 B
Bash
Executable File
7 lines
205 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -i bash -p pkgsCross.aarch64-multiplatform.stdenv.cc
|
|
|
|
"$CC_FOR_TARGET" chall.S -o chall
|
|
|
|
./chall 2593949075 2233560849 | cut -d' ' -f2 | xargs printf "picoCTF{%08x}\n"
|