Fix quickcreds
Blink 0.04 was not handled: changed to integer (so, no longer "rapidly") Orange led was missing: replace by "yellow", which seems to be the orange one...pull/41/head
parent
fb6c169e52
commit
0ff93be9e0
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/bash /usr/lib/turtle/turtle_module
|
#!/bin/bash /usr/lib/turtle/turtle_module
|
||||||
VERSION="1.3"
|
VERSION="1.3"
|
||||||
DESCRIPTION="Snagging creds from locked machines --Mubix, Room362.com. Implements responder attack and saves creds to numbered directories in /root/loot. LED will blink rapidly while QuickCreds is running. Upon capture of NTLM hash the amber LED will light solid. Author: Hak5Darren. Credit: Mubix."
|
DESCRIPTION="Snagging creds from locked machines --Mubix, Room362.com. Implements responder attack and saves creds to numbered directories in /root/loot. LED will blink while QuickCreds is running. Upon capture of NTLM hash the amber LED will light solid. Author: Hak5Darren. Credit: Mubix."
|
||||||
CONF=/tmp/QuickCreds.form
|
CONF=/tmp/QuickCreds.form
|
||||||
|
|
||||||
: ${DIALOG_OK=0}
|
: ${DIALOG_OK=0}
|
||||||
|
@ -125,10 +125,10 @@ if [ $(grep -v '\$:' /etc/turtle/Responder/logs/*NTLM* 2>/dev/null) ];
|
||||||
finished
|
finished
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
echo 255 > /sys/class/leds/lan-turtle\:orange\:system/brightness 2>&1
|
echo 255 > /sys/class/leds/turtle\:yellow\:system/brightness 2>&1
|
||||||
sleep 0.04
|
sleep 1
|
||||||
echo 0 > /sys/class/leds/lan-turtle\:orange\:system/brightness 2>&1
|
echo 0 > /sys/class/leds/turtle\:yellow\:system/brightness 2>&1
|
||||||
sleep 0.04
|
sleep 1
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue