Snort规则中的逻辑关系

Posted godjob

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Snort规则中的逻辑关系相关的知识,希望对你有一定的参考价值。

0x01

看一条规则
alert tcp any any -> any any (content:"union";http_uri;nocase;content:"select":nocase;http_uri;)
下面这两条会触发哪一条?
http://foo.com?id=union select
http://foo.com?id=select union
实验结果是都会触发。
这个实验说明content如果不加distance之类的修饰符的话,多个content匹配是没有顺序的。

0x02

再看一条规则
alert tcp any any -> any any (content:"union";http_uri;nocase;content:"select":nocase;http_uri; pcre:"/union\s+(all\s+)?select\s+/Ui";)
还是这两条规则:
http://foo.com?id=union select
http://foo.com?id=select union
实验结果是只会触发第一条。
这说明,不同关键词之间(比如content和pcre)是“逻辑与”的关系。

0x03

最后一条规则
alert tcp any any -> any any (content:"union";http_uri;nocase;content:"s3l3ct":nocase;http_uri; pcre:"/union\s+(all\s+)?select\s+/Ui";)
发现上面两条都匹配不到了,说明所有关键词之间都是“逻辑与”的关系。



文/小天是我见过最单纯善良的人(简书作者)
原文链接:http://www.jianshu.com/p/9d11a3e039e9
著作权归作者所有,转载请联系作者获得授权,并标注“简书作者”。

以上是关于Snort规则中的逻辑关系的主要内容,如果未能解决你的问题,请参考以下文章

window下snort的使用在哪里编写规则

Suricata/Snort规则参考

pfSense设置Snort

如何编写snort的检测规则

开源入侵检测系统—Snort的配置与检测规则编写

开源入侵检测系统—Snort的配置与检测规则编写