Added key code spammer test payload

pull/370/head
Darren Kitchen 2019-01-22 23:22:21 -08:00 committed by GitHub
parent 9687a8d830
commit 0273c87be2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 0 deletions

View 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

View 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 |