mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
Added key code spammer test payload
This commit is contained in:
parent
9687a8d830
commit
0273c87be2
14
payloads/library/general/key-code-spammer/payload.txt
Normal file
14
payloads/library/general/key-code-spammer/payload.txt
Normal file
@ -0,0 +1,14 @@
|
||||
# Key Code Spammer
|
||||
# For testing and giggles
|
||||
# Hak5Darren
|
||||
#
|
||||
LED SETUP
|
||||
ATTACKMODE HID
|
||||
LED ATTACK
|
||||
i=0
|
||||
while [ $i -lt 256 ]
|
||||
do
|
||||
x=$(printf "%02X\n" $i)
|
||||
QUACK KEYCODE 00,00,$x
|
||||
i=$(expr $i + 1)
|
||||
done
|
||||
15
payloads/library/general/key-code-spammer/readme.md
Normal file
15
payloads/library/general/key-code-spammer/readme.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Key Code Spammer
|
||||
|
||||
* Author: Hak5Darren
|
||||
|
||||
## Description
|
||||
|
||||
Runs through all possible HID key codes. Add your own debug output.
|
||||
See https://www.usb.org/sites/default/files/documents/hut1_12v2.pdf
|
||||
|
||||
## STATUS
|
||||
|
||||
| LED | Status |
|
||||
| ----------------- | -------------------------------------- |
|
||||
| SETUP | Setting attack mode |
|
||||
| ATACK | Injecting keystrokes |
|
||||
Loading…
x
Reference in New Issue
Block a user