Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hak5
GitHub Repository: hak5/usbrubberducky-payloads
Path: blob/master/payloads/examples/Jitter/Jitter-example2.txt
2968 views
1
REM Example Jitter with increasing $_JITTER_MAX
2
ATTACKMODE HID STORAGE
3
DELAY 2000
4
5
$_JITTER_ENABLED = TRUE
6
WHILE TRUE
7
STRINGLN The quick brown fox jumps over the lazy dog
8
$_JITTER_MAX = ($_JITTER_MAX * 2)
9
END_WHILE
10
11
12
REM With each iteration of typing the test string the jitter limit is doubled, yielding slower and more sporadic typing.
13