├── README.md └── scripts └── open-web.txt /README.md: -------------------------------------------------------------------------------- 1 | # bad-usb-scripts 2 | 3 | ## References 4 | * https://github.com/I-Am-Jakoby/Flipper-Zero-BadUSB 5 | * https://docs.hak5.org/hak5-usb-rubber-ducky/duckyscript-tm-quick-reference 6 | * https://github.com/dekuNukem/duckyPad/blob/master/duckyscript_info.md 7 | -------------------------------------------------------------------------------- /scripts/open-web.txt: -------------------------------------------------------------------------------- 1 | ID 1234:5678 Apple:Keyboard 2 | REM You can change these values to VID/PID of original Apple keyboard 3 | REM to bypass Keyboard Setup Assistant 4 | 5 | REM Open terminal window 6 | DELAY 1000 7 | GUI SPACE 8 | DELAY 500 9 | STRING terminal 10 | DELAY 500 11 | ENTER 12 | DELAY 750 13 | 14 | REM Open hahwul's website 15 | STRING open "https://www.hahwul.com" 16 | ENTER 17 | --------------------------------------------------------------------------------