Updated QuickCreds module to save precious space
Because the QuickCreds module clones the Responder repository, a lot of metadata can be found inside the .git folder. Removing this folder will free up valuable space on the LAN Turtle.pull/6/merge
parent
c8bc34625a
commit
3a3baa8d38
|
@ -1,5 +1,5 @@
|
|||
#!/bin/bash /usr/lib/turtle/turtle_module
|
||||
VERSION="1.2"
|
||||
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."
|
||||
CONF=/tmp/QuickCreds.form
|
||||
|
||||
|
@ -80,6 +80,7 @@ if [[ ! -d /etc/turtle/Responder || ! -s /etc/turtle/Responder/Responder.py ]];
|
|||
then
|
||||
rm -rf /etc/turtle/Responder
|
||||
git clone git://github.com/lgandx/responder /etc/turtle/Responder -q | dialog --progressbox "Installing dependency responder" 14 72
|
||||
rm -rf /etc/turtle/Responder/.git
|
||||
fi
|
||||
|
||||
# Setup loot directory and complete setup
|
||||
|
|
Loading…
Reference in New Issue