From 0ff93be9e0b1bbbcef555937901f0ab60709f20c Mon Sep 17 00:00:00 2001 From: jmkebalo <43848745+jmkebalo@users.noreply.github.com> Date: Sat, 7 Nov 2020 19:44:09 +0100 Subject: [PATCH] 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... --- modules/quickcreds | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/modules/quickcreds b/modules/quickcreds index ed3e81f..9081c72 100644 --- a/modules/quickcreds +++ b/modules/quickcreds @@ -1,6 +1,6 @@ #!/bin/bash /usr/lib/turtle/turtle_module 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 : ${DIALOG_OK=0} @@ -125,10 +125,10 @@ if [ $(grep -v '\$:' /etc/turtle/Responder/logs/*NTLM* 2>/dev/null) ]; finished fi fi - echo 255 > /sys/class/leds/lan-turtle\:orange\:system/brightness 2>&1 - sleep 0.04 - echo 0 > /sys/class/leds/lan-turtle\:orange\:system/brightness 2>&1 - sleep 0.04 + echo 255 > /sys/class/leds/turtle\:yellow\:system/brightness 2>&1 + sleep 1 + echo 0 > /sys/class/leds/turtle\:yellow\:system/brightness 2>&1 + sleep 1 done }