forked from AkkomaGang/akkoma
Co-authored-by: Oneric <oneric@oneric.stub> Co-authored-by: Floatingghost <hannah@coffee-and-dreams.uk> Co-authored-by: floatingghost <hannah@coffee-and-dreams.uk> Co-authored-by: cevado <cevado@tutanota.com> Co-authored-by: TudbuT <tudbut@tudbut.de> Co-authored-by: Haelwenn (lanodan) Monnier <contact@hacktivis.me> Reviewed-on: #5 Reviewed-on: #6
10 lines
214 B
Bash
Executable file
10 lines
214 B
Bash
Executable file
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"
|