Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/library/general/onemillioncheckboxes_checker/payload.txt
2968 views
1
REM_BLOCK Documentation
2
Title: OneMillionCheckboxes.com bot
3
Author: Korben
4
Description: Automatically checks or unchecks boxes at a constant rate slow enough to not get
5
throttled by the server. https://twitter.com/itseieio/status/1805986839058079896
6
Tested with chrome on ubuntu. Milage may vary.
7
8
Usage: Open https://onemillioncheckboxes.com/, hit tab, press button on your ducky to start or stop the automation
9
END_REM
10
11
ATTACKMODE HID STORAGE
12
VAR $RUN = FALSE
13
LED_OFF
14
BUTTON_DEF
15
IF $RUN THEN
16
$RUN = FALSE
17
LED_R
18
ELSE
19
$RUN = TRUE
20
LED_G
21
END_IF
22
END_BUTTON
23
24
WHILE TRUE
25
WHILE $RUN
26
TAB
27
DELAY 100
28
SPACE
29
DELAY 100
30
END_WHILE
31
DELAY 100
32
END_WHILE
33
34