Skip to content

Instantly share code, notes, and snippets.

@AndrewPla
Last active January 7, 2020 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewPla/50eeeab7e39aa6f0284210827b8d39c0 to your computer and use it in GitHub Desktop.
Save AndrewPla/50eeeab7e39aa6f0284210827b8d39c0 to your computer and use it in GitHub Desktop.
This is an AutoHotkey script. when ctrl + q is pressed 'pentesterlab' is typed, enter is pressed, it pauses, and repeats types pentesterlab and presses enter again. This is useful if you are doing pentesterlab exercises and don't want to type the same username and password manually.
^q::
Send, pentesterlab
sleep 250
Send, {enter}
Sleep 555
Send, pentesterlab
sleep 250
Send, {enter}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment