Merge pull request #462 from hak5/add_payload

add onemillioncheckboxes.com checker payload
pull/464/head
Peaks 2024-06-26 17:25:23 -04:00 committed by GitHub
commit 7c2a28fc52
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,32 @@
REM_BLOCK Documentation
Title: OneMillionCheckboxes.com bot
Author: Korben
Description: Automatically checks or unchecks boxes at a constant rate slow enough to not get
throttled by the server. https://twitter.com/itseieio/status/1805986839058079896
Tested with chrome on ubuntu. Milage may vary.
Usage: Open https://onemillioncheckboxes.com/, hit tab, press button on your ducky to start or stop the automation
END_REM
ATTACKMODE HID STORAGE
VAR $RUN = FALSE
LED_OFF
BUTTON_DEF
IF $RUN THEN
$RUN = FALSE
LED_R
ELSE
$RUN = TRUE
LED_G
END_IF
END_BUTTON
WHILE TRUE
WHILE $RUN
TAB
DELAY 100
SPACE
DELAY 100
END_WHILE
DELAY 100
END_WHILE