溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

linux系統(tǒng)下使用tcpdump進(jìn)行抓包方法

發(fā)布時間:2020-08-28 14:47:33 來源:腳本之家 閱讀:161 作者:laozhang 欄目:服務(wù)器

我先看下實(shí)例代碼:

1.常見參數(shù)

tcpdump -i eth0 -nn -s0 -v port 80

-i 選擇監(jiān)控的網(wǎng)卡

-nn 不解析主機(jī)名和端口號,捕獲大量數(shù)據(jù),名稱解析會降低解析速度

-s0 捕獲長度無限制

-v 增加輸出中顯示的詳細(xì)信息量

port 80 端口過濾器,只捕獲80端口的流量,通常是HTTP

2.

tcpdump -A -s0 port 80

-A 輸出ASCII數(shù)據(jù)

-X 輸出十六進(jìn)制數(shù)據(jù)和ASCII數(shù)據(jù)

3.

tcpdump -i eth0 udp

udp 過濾器,只捕獲udp數(shù)據(jù)

proto 17 協(xié)議17等效于udp

proto 6 等效于tcp

4.

tcpdump -i eth0 host 10.10.1.1

host 過濾器,基于IP地址過濾

5.

tcpdump -i eth0 dst 10.105.38.204

dst 過濾器,根據(jù)目的IP過濾

src 過濾器,根據(jù)來源IP過濾

6.

tcpdump -i eth0 -s0 -w test.pcap

-w 寫入一個文件,可以在Wireshark中分析

7.

tcpdump -i eth0 -s0 -l port 80 | grep 'Server:'

-l 配合一些管道命令的時候例如grep

8.

組合過濾

and or &&

or or ||

not or !

9.

快速提取HTTP UA

tcpdump -nn -A -s1500 -l | grep "User-Agent:"

使用egrep 匹配 UA和Host

tcpdump -nn -A -s1500 -l | egrep -i 'User-Agent:|Host:'

10.

匹配GET的數(shù)據(jù)包

tcpdump -s 0 -A -vv 'tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x47455420'

匹配POST包,POST的數(shù)據(jù)可能不在包里

tcpdump -s 0 -A -vv 'tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354'

11.

匹配HTTP請求頭

tcpdump -s 0 -v -n -l | egrep -i "POST /|GET /|Host:"

匹配一些POST的數(shù)據(jù)

tcpdump -s 0 -A -n -l | egrep -i "POST /|pwd=|passwd=|password=|Host:"

匹配一些cookie信息

tcpdump -nn -A -s0 -l | egrep -i 'Set-Cookie|Host:|Cookie:'

12.

捕獲DNS請求和響應(yīng)

tcpdump -i eth0 -s0 port 53

13.

使用tcpdump捕獲并在Wireshark中查看

使用ssh遠(yuǎn)程連接服務(wù)器執(zhí)行tcpdump命令,并在本地的wireshark分析

ssh root@remotesystem 'tcpdump -s0 -c 1000 -nn -w - not port 22' | wireshark -k -i -

ssh ubuntu@115.159.28.111 'sudo tcpdump -s0 -c 1000 -nn -w - not port 22' | wireshark -k -i -

14.

配合shell獲取最高的IP數(shù)

tcpdump -nnn -t -c 200 | cut -f 1,2,3,4 -d '.' | sort | uniq -c | sort -nr | head -n 20

15.捕獲DHCP的請求和響應(yīng)

tcpdump -v -n port 67 or 68

linux系統(tǒng)下使用tcpdump進(jìn)行抓包方法

linux系統(tǒng)下使用tcpdump進(jìn)行抓包方法

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI