溫馨提示×

溫馨提示×

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

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

iptables怎么實(shí)現(xiàn)字符串匹配

發(fā)布時間:2021-07-30 23:18:20 來源:億速云 閱讀:819 作者:chen 欄目:安全技術(shù)

這篇文章主要介紹“iptables怎么實(shí)現(xiàn)字符串匹配”,在日常操作中,相信很多人在iptables怎么實(shí)現(xiàn)字符串匹配問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”iptables怎么實(shí)現(xiàn)字符串匹配”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!

iptables實(shí)現(xiàn)字符串匹配

分類: SHELL&linux命令 3172人閱讀 評論(0) 收藏 舉報(bào)

stringinputtcpoutputhexlinux

通過string匹配域名來過濾,范例如下:

iptables -I OUTPUT -p tcp -m string --string "qq.com" --algo bm -j DROP
iptables -I OUTPUT -p udp -m string --string "qq.com" --algo bm -j DROP

這樣就無法訪問與QQ相關(guān)的業(yè)務(wù)了,但是代理好像還是可以

系統(tǒng)要求:

1:內(nèi)核在2.6.18以上

2:iptables在1.3.5以上

3:內(nèi)核中包含字符串匹配模塊。在.config文件中應(yīng)有

CONFIG_NETFILTER_XT_MATCH_STRING=m
 
man手冊
iptables -m string -helpstring

         This  modules  matches  a  given string by using some
pattern matching strategy. It requires a linux kernel >= 2.6.14.

        --algo  bm|kmp

              Select the pattern matching strategy. (bm = Boyer-
Moore, kmp = Knuth-Pratt-Morris)

        --from offset

              Set the offset from which it starts looking for any
matching. If not passed, default is 0.

        --to offset

              Set the offset to which it starts looking for any
matching. If not passed, default  is  the

              packet size.

        --string pattern

              Matches the given pattern.  --hex-string pattern
Matches the given pattern in hex notation. 
常見的應(yīng)用程序和有用的示例規(guī)則1:防止***的方法
iptables -I INPUT 1 -p tcp --dport 80 -m string --string "cmd.exe" --algo bm -j DROPiptables -I INPUT -j DROP -p tcp -s 0.0.0.0/0 -m string --algo kmp --string "cmd.exe"2:
保護(hù)DDOS服務(wù)
iptables -I INPUT 1 -p tcp --dport 80 -m string --string "domain.com" --algo kmp -j DROP3:
防止電子郵件欺騙
iptables -I INPUT -p tcp --dport 25 -m string --string "Subject" --algo bm -j DROP
做個最優(yōu)規(guī)則
iptables -I INPUT -p tcp --dport 25 -m string --string "Subject"  --algo bm --to 15000 -j DROP

到此,關(guān)于“iptables怎么實(shí)現(xiàn)字符串匹配”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!

向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