mirror of
https://github.com/hak5darren/bashbunny-payloads.git
synced 2025-10-29 16:58:12 +00:00
Added Bunny-Flip payload (#208)
* Create payload.txt * Create README.md * Added options * Create README.md * Create payload.txt * Rename payloads/library/prank/README.md to payloads/library/prank/Bunny-Flip/README.md * Delete README.md * Delete payload.txt
This commit is contained in:
parent
33d62ff9e9
commit
bf5beeefbe
38
payloads/library/prank/Bunny-Flip/README.md
Normal file
38
payloads/library/prank/Bunny-Flip/README.md
Normal file
@ -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.
|
||||||
34
payloads/library/prank/Bunny-Flip/payload.txt
Normal file
34
payloads/library/prank/Bunny-Flip/payload.txt
Normal file
@ -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
|
||||||
|
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user