标签:nec stat 收集 keyword client 能力 modifier 多个 方向
IPS、IDS和WAF分别是入侵防御系统和入侵检测系统以及WEB应用防火墙的简称,很多人说这些玩意不就是盒子吗已经过时了,其实不是,SIEM其实是有效的正规的打法,对于内网安全监控室非常必要的东西。之前大家的方式都是摒弃盒子思维,觉得盒子不靠谱防御不了真正的攻击行为。这样的理解难说不是国内众多盒子厂商(本人待过很多)走低价竞争路线的一个恶性的结果。其实在数据驱动安全的几天,盒子的作用绝不是简单的匹配规则阻断攻击这么简单的了,而是成为内网信息收集的一个Agent节点,作为云化的安全能力中心节点的触角存在,这都是非常有意义而且有必要的。
当然,我们还需要其他的更多的日志,不仅是网络层面的,需要主机层的日志信息、服务应用的日志信息等等。
那么作为云的触角和云的核心节点(安全能力节点)有两种能力是必须具备的。第一脆弱性的发现能力(POC、EXP);第二就是威胁的监控能力,就是匹配规则。二者都来源于对攻击的理解。POC和EXP是模仿攻击的操作。规则是攻击行为的特征,是检测威胁的有效手段。废话不多说了,今天我们来学习Suricata规则。
alert tcp any any -> any any (msg:"";content:"";sid:1;rev:1;)
其实格式就是:
动作 协议 源地址 源端口 方向 目的地址 目的端口 (规则内容)
备注1:规则内容前面称为规则头部分
备注2:规则内容用分号分割,每一项都是一个key-value的键值对 ,如上图示例
prefilter之前的规则属于预过滤规则
Keyword | Sticky or Modifier | Direction |
---|---|---|
http_uri | Modifier | Request |
http_raw_uri | Modifier | Request |
http_method | Modifier | Request |
http_request_line | Sticky Buffer | Request |
http_client_body | Modifier | Request |
http_header | Modifier | Both |
http_raw_header | Modifier | Both |
http_cookie | Modifier | Both |
http_user_agent | Modifier | Request |
http_host | Modifier | Request |
http_raw_host | Modifier | Request |
http_accept | Sticky Buffer | Request |
http_accept_lang | Sticky Buffer | Request |
http_accept_enc | Sticky Buffer | Request |
http_referer | Sticky Buffer | Request |
http_connection | Sticky Buffer | Request |
http_content_type | Sticky Buffer | Both |
http_content_len | Sticky Buffer | Both |
http_start | Sticky Buffer | Both |
http_protocol | Sticky Buffer | Both |
http_header_names | Sticky Buffer | Both |
Keyword | Sticky or Modifier | Direction |
---|---|---|
http_stat_msg | Modifier | Response |
http_stat_code | Modifier | Response |
http_response_line | Sticky Buffer | Response |
http_header | Modifier | Both |
http_raw_header | Modifier | Both |
http_cookie | Modifier | Both |
http_server_body | Modifier | Response |
file_data | Sticky Buffer | Response |
http_content_type | Sticky Buffer | Both |
http_content_len | Sticky Buffer | Both |
http_start | Sticky Buffer | Both |
http_protocol | Sticky Buffer | Both |
http_header_names | Sticky Buffer | Both |
content:"xxxxxx";http_xxxx;
特例:
dns_query;content:"域名"
标签:nec stat 收集 keyword client 能力 modifier 多个 方向
原文地址:https://www.cnblogs.com/KevinGeorge/p/8810354.html