码迷,mamicode.com
首页 > Web开发 > 详细

NC(netcat)应用全记录<持续更新>

时间:2015-08-19 20:29:50      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:



1. 连接tianya.cn(MIME欺骗)
$ nc -nvv 221.11.172.178 80
Connection to 221.11.172.178 80 port [tcp/*] succeeded!
get / http/1.1
HTTP/1.0 400 Bad request
Cache-Control: no-cache
Connection: close
Content-Type: text/html


<html><body><h1>400 Bad request</h1>
Your browser sent an invalid request.
</body></html>


2. 聊天:
服务器端:
$ nc -l 1234
ddd
sss
xxxxx
客户端:
$ nc 127.0.0.1 1234
ddd
sss
xxxxx


3. 端口扫描:
$ nc -nvv -w2 192.168.1.1 80-90
Connection to 192.168.1.1 80 port [tcp/*] succeeded!
nc: connect to 192.168.1.1 port 81 (tcp) failed: Connection refused
nc: connect to 192.168.1.1 port 82 (tcp) failed: Connection timed out


4. 传输文件:
服务器端:
$ nc -lvv 1234 > test.txt
客户端:
$ nc 127.0.0.1 1234 < test.txt

test.txt传输完成。








版权声明:本文为博主原创文章,未经博主允许不得转载。

NC(netcat)应用全记录<持续更新>

标签:

原文地址:http://blog.csdn.net/ccwwff/article/details/47785501

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