linux nc (NetCat) 命令詳解

原文:http://www.huanxiangwu.com/477/linux-nc-netcathtml

1、版本
一般的Linux發行版中都帶有NetCat(簡稱nc),甚至在拯救模式光盤中也由busybox提供了 簡版的nc工具。但不一樣的版本,其參數的使用略有差別。
NetCat 官方地址:
http://netcat.sourceforge.net/python

引用

[root@hatest1 ~]# cat /etc/asianux-release
Asianux release 2.0 (Trinity SP2)
[root@hatest1 ~]# cat /etc/redflag-release
Red Flag DC Server release 5.0 (Trinity SP2)
[root@hatest1 ~]# type -a nc
nc is /usr/bin/nc
[root@hatest1 ~]# rpm -q nc
nc-1.10-22
建議在使用前,先用man nc看看幫助。這裏以紅旗DC Server 5.0上的1.10版本進行簡單說明。
假設兩服務器信息:linux

引用

server1: 192.168.228.221
server2: 192.168.228.222
2、常見使用
一、遠程拷貝文件
從server1拷貝文件到server2上。須要先在server2上,用nc激活監聽,server2上運行:nginx

引用

[root@hatest2 tmp]# nc -lp 1234 > install.log
server1上運行:web

引用

[root@hatest1 ~]# ll install.log
-rw-r–r–   1 root root 39693 12月 20   2007 install.log
[root@hatest1 ~]# nc -w 1 192.168.228.222 1234 < install.log
二、克隆硬盤或分區
操做與上面的拷貝是雷同的,只須要由dd得到硬盤或分區的數據,而後傳輸便可。
克隆硬盤或分區的操做,不該在已經mount的的系統上進行。因此,須要使用安裝光盤引導後,進入拯救模式(或使用Knoppix工 具光盤)啓動系統後,在server2上進行相似的監聽動做:服務器

# nc -l -p 1234 | dd of=/dev/sda

server1上執行傳輸,便可完成從server1克隆sda硬盤到server2的任務:ssh

# dd if=/dev/sda | nc 192.168.228.222 1234

※ 完成上述工做的前提,是須要落實光盤的拯救模式支持服務器上的網卡,並正確配置IP。工具

三、端口掃描
能夠執行:post

引用

# nc -v -w 1 192.168.228.222 -z 1-1000
hatest2 [192.168.228.222] 22 (ssh) open
四、保存Web頁面spa

# while true; do nc -l -p 80 -q 1 < somepage.html; done

五、模擬HTTP Headers

引用

[root@hatest1 ~]# nc www.huanxiangwu.com 80
GET / HTTP/1.1
Host: ispconfig.org
Referrer: mypage.com
User-Agent: my-browser

HTTP/1.1 200 OK
Date: Tue, 16 Dec 2008 07:23:24 GMT
Server: Apache/2.2.6 (Unix) DAV/2 mod_mono/1.2.1 mod_python/3.2.8 Python/2.4.3 mod_perl/2.0.2 Perl/v5.8.8
Set-Cookie: PHPSESSID=bbadorbvie1gn037iih6lrdg50; path=/
Expires: 0
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Cache-Control: private, post-check=0, pre-check=0, max-age=0
Set-Cookie: oWn_sid=xRutAY; expires=Tue, 23-Dec-2008 07:23:24 GMT; path=/
Vary: Accept-Encoding
Transfer-Encoding: chunked
Content-Type: text/html
[......]
在nc命令後,輸入紅色部分的內容,而後按兩次回車,便可從對方得到HTTP Headers內容。

六、聊天
nc還能夠做爲簡單的字符下聊天工具使用,一樣的,server2上須要啓動監聽:

[root@hatest2 tmp]# nc -lp 1234

server1上傳輸:

[root@hatest1 ~]# nc 192.168.228.222 1234

這樣,雙方就能夠相互交流了。使用Ctrl+D正常退出。

七、傳輸目錄
從server1拷貝nginx-0.6.34目錄內容到server2上。須要先在server2上,用nc激活監聽,server2上運行:

引用

[root@hatest2 tmp]# nc -l 1234 |tar xzvf -
server1上運行:

引用

[root@hatest1 ~]# ll -d nginx-0.6.34
drwxr-xr-x 8 1000 1000 4096 12-23 17:25 nginx-0.6.34
[root@hatest1 ~]# tar czvf – nginx-0.6.34|nc 192.168.228.222 1234
八、參數簡介
這僅是一個1.10版本的簡單說明,詳細的參數使用仍是須要看man:

引用

想要鏈接到某處: nc [-options] hostname port[s] [ports] …
綁定端口等待鏈接: nc -l -p port [-options] [hostname] [port]
參數:
-g gateway source-routing hop point[s], up to 8
-G num source-routing pointer: 4, 8, 12, …
-h 幫助信息
-i secs 延時的間隔
-l 監聽模式,用於入站鏈接
-n 指定數字的IP地址,不能用hostname
-o file 記錄16進制的傳輸
-p port 本地端口號
-r 任意指定本地及遠程端口
-s addr 本地源地址
-u UDP模式
-v 詳細輸出——用兩個-v可獲得更詳細的內容
-w secs timeout的時間
-z 將輸入輸出關掉——用於掃描時,其中端口號能夠指定一個或者用lo-hi式的指定範圍。
3、版本差別
不用系統上提供的nc版本會有說不一樣,其提供的參數使用方法也略有差別。
例如,紅旗Asianux 3.0 SP1拯救光盤上的版本是供使用的參數僅有一部分:

引用

# nc -h
BusyBox v1.2.0 (2008.04.14-01:35+0000) multi-call binary

Usage: nc [OPTIONS] [IP] [port]

Netcat opens a pipe to IP:port

Options:
         -l               listen mode, for inbound connects
         -p PORT         local port number
         -i SECS         delay interval for lines sent
         -e PROG         program to exec after connect (dangerous!)
         -w SECS         timeout for connects and final net reads
而在Asianux 3.0 SP1系統中提供的nc版本則是1.84的,按上面的參數用法寫會執行不了:

引用

[root@ftpserver ~]# rpm -q nc
nc-1.84-10
[root@ftpserver ~]# nc -lp 1234
usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port]
           [-s source_ip_address] [-T ToS] [-w timeout] [-X proxy_version]
           [-x proxy_address[:port]] [hostname] [port[s]]
講查看man文檔,可見在這個版本中,-l是不能與-s、-p、-z一塊兒使用的,-w參數也會被忽略,因此,正確的用法是:

[root@ftpserver tmp]# nc -l 1234

4、用在腳本中
nc每次啓動監聽後,都會在客戶端鏈接完成並退出的同時,服務端一同退出。因此,若是須要不斷的使用nc進行數據傳輸,須要在腳本中使用循環。利用nc實 現更多的功能,可參考其rpm提供的參考腳本:

引用

# rpm -qd nc/usr/share/doc/nc-1.10/Changelog/usr/share/doc/nc-1.10/README/usr/share/doc/nc-1.10/scripts/README/usr/share/doc/nc-1.10/scripts/alta/usr/share/doc/nc-1.10/scripts/bsh/usr/share/doc/nc-1.10/scripts/dist.sh/usr/share/doc/nc-1.10/scripts/irc/usr/share/doc/nc-1.10/scripts/iscan/usr/share/doc/nc-1.10/scripts/ncp/usr/share/doc/nc-1.10/scripts/probe/usr/share/doc/nc-1.10/scripts/web/usr/share/doc/nc-1.10/scripts/webproxy/usr/share/doc/nc-1.10/scripts/webrelay/usr/share/doc/nc-1.10/scripts/websearch/usr/share/man/man1/nc.1.gz

相關文章
相關標籤/搜索