蛮力 4 位数组合

Brute force 4-digit combinations

我想通过模拟数字键盘按键来暴力破解 4 位数组合(09)。如何使用 AutoIt 做到这一点?

使用它并添加 ControlSend() or Send() or ControlSetText()(或其他内容)以将 $i 放入您的输入字段,仅此而已。

; 0000 - 9999

Global $start = 0
Global $end = 9999

For $i = $start To $end
    ConsoleWrite(StringFormat('%04i', $i) & @CRLF)
Next