Jitter
Overview
Jitter is a feature which varies the cadence, or delay, between individual key presses. When enabled, jitter affects all keystroke injection commands. Jitter delays are randomly generated at payload deployment, rather than statically compiled delays such as when using the DELAY
command. This means that each deployment of a jitter-enabled payload will produce different results.
$_JITTER_ENABLED
Jitter is enabled and disabled by changing the boolean value of the $_JITTER_ENABLED
internal variable. By default the value of this variable is FALSE
. To turn jitter on, set the variable to TRUE
.
Example
The test string is typed continuously with a modulated delay between each key press.
$_JITTER_MAX
The $_JITTER_MAX
internal variable sets the maximum time between key presses in milliseconds. The default is 20 ms.
Example
Result
With each iteration of typing the test string the jitter limit is doubled, yielding slower and more sporadic typing.
Last updated