diff --git a/payloads/library/prank/Bunny-Flip/README.md b/payloads/library/prank/Bunny-Flip/README.md new file mode 100644 index 00000000..eae53ee5 --- /dev/null +++ b/payloads/library/prank/Bunny-Flip/README.md @@ -0,0 +1,38 @@ + +``` +/| _..._ _..._ +|| .' '. .' '..-. .- +|| . .-. . .-. .\ \ / / +|| __ | ' ' | ' ' | \ \ / / +||/'__ '. _ _ | | | | | | | \ \ / / +|:/` '. ' | ' / || | | | | | | \ \ / / +|| | |.' | .' || | | | | | | \ ` / +||\ / '/ | / || | | | | | | \ / +|/\'..' /| `'. || | | | | | | / / +' `'-'` ' .'| '/ | | | | | | |`-' / + `-' `--''--' '--'--' '--' '..' + .---. + | |.--._________ _...._ + _.._| ||__|\ |.' '-. + .' .._| |.--. \ .'```'. '. + | ' | || | \ | \ \ + __| |__ | || | | | | | +|__ __|| || | | \ / . + | | | || | | |\`'-.-' .' + | | | ||__| | | '-....-'` + | | '---' .' '. + | | '-----------' + |_| + ``` + +# Bunny-Flip - a BB script you didn't know you needed +Bunny-Flip is the future. Who needs to manually flip a monitor when you can do it virtually? + +Windows 7 only. +Bunnyscript uses a simple loop to flip screens every 0.300 seconds. + +# Options +Currently the only options avalible are to set the amount of times you want the screen to flip. +Please see ####OPTIONS#### in payload.txt + +1 = flips screen left, right, down and up once. diff --git a/payloads/library/prank/Bunny-Flip/payload.txt b/payloads/library/prank/Bunny-Flip/payload.txt new file mode 100644 index 00000000..d4c30710 --- /dev/null +++ b/payloads/library/prank/Bunny-Flip/payload.txt @@ -0,0 +1,34 @@ +# Title: Bunny-Flip +# Description: Flips screen for 20 'rounds' and blinks yellow every time. +# Author: Hkyq +# Version: 1.1 +# Category: Prank +# Target: Windows 7 +# Attackmodes: HID + +ATTACMODE HID + +###### OPTIONS ####### + +# Amount of time to flip screen. 1 = flips screen up, left, down then right once. +time = 20 + +###### OPTIONS ####### + +for run in {1..$time} +do + Q DELAY 300 + Q WINDOWS ALT UPARROW + Q LED Y SINGLE + Q DELAY 300 + Q WINDOWS ALT LEFTARROW + Q LED Y SINGLE + Q DELAY 300 + Q WINDOWS ALT DOWNARROW + Q LED Y SINGLE + Q DELAY 300 + Q WINDOWS ALT RIGHTARROW + Q LED Y SINGLE +done + +