mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-08 09:24:18 +00:00
11 lines
214 B
Bash
11 lines
214 B
Bash
|
if [ "$#" -ne 2 ]; then
|
||
|
echo "Usage: binary-leak-checker.sh <nodename> <erlang cookie>"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
echo "The command you want to run is:
|
||
|
:recon.bin_leak(10)
|
||
|
"
|
||
|
|
||
|
iex --sname debug --remsh $1 --erl "-setcookie $2"
|