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