参考:
通过SSH连接并登入OSSIM,将显示设置菜单。选择Jailbreak System
编辑/etc/suricata/rules/local.rules文件,写入和修改规则,保存退出
为确保该规则与现有规则不冲突,应使用5000000到5999999之间的SID
在/etc/suricata/rule-files.yaml添加对local.rules的引用
将规则导入数据库(Sensor不需要执行此步骤)
perl /usr/share/ossim/scripts/create_sidmap.pl /etc/suricata/rules
#service suricata restart
#service ossim-agent restart
规则行为:行为声明,用于通知IDS引擎在触发警报时该怎么做
协议:通知IDS引擎该规则适用于何种协议
源/目标 主机
源/目标 端口
流量方向
消息(msg)
特征标识符(sid)
修订(rev)
当创建一条新规则时,制定 rev:1; ,以表明该规则为第一版本
当规则被改变时,无需创建新规则,可保持sid不变,使rev递增
引用(reference)
优先级(priority)
此选项可以任意整数设置,可使用0-10之间的数指定优先级,0最高,10最低
类别(classtype):用于根据规则所检测的活动类型为规则分类
# classification.config
# config classification:shortname,short description,priority
config classification: not-suspicious,Not Suspicious Traffic,3 #无可疑,无可疑流量
config classification: unknown,Unknown Traffic,3 #未知,未知流量
config classification: bad-unknown,Potentially Bad Traffic, 2
config classification: attempted-recon,Attempted Information Leak,2 #信息泄漏
config classification: successful-recon-limited,Information Leak,2 #信息泄漏
config classification: successful-recon-largescale,Large Scale Information Leak,2 #大规模信息泄漏
config classification: attempted-dos,Attempted Denial of Service,2 #尝试拒绝服务
config classification: successful-dos,Denial of Service,2 #拒绝服务
config classification: attempted-user,Attempted User Privilege Gain,1 #获得用户权限
config classification: unsuccessful-user,Unsuccessful User Privilege Gain,1 #获得用户权限
config classification: successful-user,Successful User Privilege Gain,1 #获得用户权限
config classification: attempted-admin,Attempted Administrator Privilege Gain,1 #获得管理员权限
config classification: successful-admin,Successful Administrator Privilege Gain,1 #获得管理员权限
# NEW CLASSIFICATIONS
config classification: rpc-portmap-decode,Decode of an RPC Query,2 #RPC 查询解码
config classification: shellcode-detect,Executable code was detected,1 #可执行代码
config classification: string-detect,A suspicious string was detected,3 #可疑字符串
config classification: suspicious-filename-detect,A suspicious filename was detected,2 #可疑文件名
config classification: suspicious-login,An attempted login using a suspicious username was detected,2 #可疑用户名登录尝试
config classification: system-call-detect,A system call was detected,2 #系统调用
config classification: tcp-connection,A TCP connection was detected,4 #tcp 连接
config classification: trojan-activity,A Network Trojan was detected, 1 #网络特洛伊木马
config classification: unusual-client-port-connection,A client was using an unusual port,2 #客户端使用异常端口
config classification: network-scan,Detection of a Network Scan,3 #网络扫描
config classification: denial-of-service,Detection of a Denial of Service Attack,2 #拒绝服务攻击
config classification: non-standard-protocol,Detection of a non-standard protocol or event,2 #非标准协议或事件
config classification: protocol-command-decode,Generic Protocol Command Decode,3 #通用协议解码
config classification: web-application-activity,access to a potentially vulnerable web application,2 #Web应用活动
config classification: web-application-attack,Web Application Attack,1 #Web应用攻击
config classification: misc-activity,Misc activity,3 #杂项活动
config classification: misc-attack,Misc Attack,2 #杂项攻击
config classification: icmp-event,Generic ICMP event,3 #通用ICMP事件
config classification: kickass-porn,SCORE! Get the lotion!,1 #色情
config classification: policy-violation,Potential Corporate Privacy Violation,1 #违反政策
config classification: default-login-attempt,Attempt to login by a default username and password,2 #尝试使用默认用户名和密码登录
7.1 检查内容(content): 检查数据包内容中是否包含某个字符串
如:content:"evilliveshere";
指定多个匹配项:content:"evilliveshere"; content:"here";
a. 使用感叹号!对匹配项的否定:content:!"evilliveshere";
b. 将字符串的十六进制用管道符(|)进行包围:content:"|FF D8|";
c. 字符串与十六进制混合使用:content:"|FF D8|evilliveshere";
d. 匹配内容区分大小写
e. 保留字符(; \ ")须进行转义或十六进制转码
7.2 检测内容修饰语:通过在匹配内容之后添加一些修饰语,可以精确控制IDS引擎在网络数据中匹配内容的方式。
nocase:匹配内容不区分大小写,如 content:"root";nocase;
offset:用于表示从数据包载荷的特定位置开始内容匹配,从载荷其实位置算起
注意载荷开始位置从0字节处开始,而不是1字节处
content:"root";offset:5;
depth:用于限制搜索匹配内容的结束位置。若使用了offset,则开始位置为offset,否则为载荷开始位置
content:"root";offset:5;depth:7;
distance:用于指定上一次内容匹配的结束位置距离本次内容匹配的开始位置的距离
within:用于限制本次匹配必须出现在上一次匹配内容结束后的多少个字节之内
distance和within的同时使用限制了第二次内容匹配的匹配范围,如下
content:"evilliveshere"; content:"here"; distance:1;within:7;
在匹配字符串“evilliveshere”后的1到7个字节范围内对字符串“here”进行匹配
http内容修饰语
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO QQPCMgr”; flow:to_server,established; priority:1; content:”GET”; http_method; content:”/invc/xfspeed/qqpcmgr/”; http_uri;content:”_update/”; http_uri; distance:4; within:14; reference:url,puhua.net/suricata_localrules#5200101; classtype:policy-violation; sid:5200101; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF CHAT Wechat Client”; flow:to_server,established; content:”GET”; http_method; content:”dns.weixin.qq.com”; http_header; content:”MicroMessenger Client”; http_user_agent; reference:url,puhua.net/suricata_localrules#5200102; classtype:policy-violation; sid:5200102; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO Suspicious Mozilla User-Agent - Likely Fake (Mozilla/4.0)”; flow:to_server,established; priority:1; content:!”.drivergenius.com”; http_header; content:!”.duba.net”; http_header; content:!”.baofeng.com”; http_header; content:!”.baofeng.net”; http_header; content:!”/invc/xfspeed/qqpcmgr/”; http_uri; content:”User-Agent|3a| Mozilla/4.0|0d 0a|”; fast_pattern; nocase; http_header; content:!”/CallParrotWebClient/”; http_uri; content:!”Host|3a| www|2e|google|2e|com|0d 0a|”; nocase; http_header; content:!”Cookie|3a| PREF|3d|ID|3d|”; nocase; http_raw_header; content:!”Host|3a 20|secure|2e|logmein|2e|com|0d 0a|”; nocase; http_header; content:!”Host|3a 20|weixin.qq.com”; http_header; nocase; content:!”Host|3a| slickdeals.net”; nocase; http_header; content:!”Host|3a| cloudera.com”; nocase; http_header; content:!”Host|3a 20|secure.digitalalchemy.net.au”; http_header; content:!”.ksmobile.com|0d 0a|”; http_header; content:!”gstatic|2e|com|0d 0a|”; http_header; content:!”weixin.qq.com|0d 0a|”; http_header; content:!”|2e|cmcm|2e|com|0d 0a|”; http_header; content:!”.deckedbuilder.com”; http_header; content:!”.mobolize.com”; http_header; metadata: former_category INFO; reference:url,puhua.net/suricata_localrules#5200103; reference:url,doc.emergingthreats.net/2003492; classtype:trojan-activity; sid:5200103; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO Baofeng”; flow:to_server,established; priority:1; content:”GET”; http_method; content:”midinfo.baofeng.com”; http_header; content:”/conf/proxyd.xml”; http_uri; reference:url,puhua.net/suricata_localrules#5200104; classtype:policy-violation; sid:5200104; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO Duba”; flow:to_server,established; priority:1; content:”GET”; http_method; content:”config.i.duba.net”; http_header; content:”/health/healthcloud.ini”; http_uri; reference:url,puhua.net/suricata_localrules#5200105; classtype:policy-violation; sid:5200105; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO QQPCMgr(2)”; flow:to_server,established; priority:1; content:”GET”; http_method; content:”.myapp.com”; http_header; content:”/qqpcmgr/other/”; http_uri; reference:url,puhua.net/suricata_localrules#5200106; classtype:policy-violation; sid:5200106; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO GDBSZS”; flow:to_server,established; priority:1; content:”GET”; http_method; content:”gdbszs.jchl.com”; http_host; content:”/gdbszs/”; http_uri; reference:url,puhua.net/suricata_localrules#5200107; classtype:policy-violation; sid:5200107; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO SERVYOU”; flow:to_server,established; priority:1; content:”Servyoubgup.exe”; http_user_agent; content:”HEAD”; http_method; content:”.servyou.com.cn”; http_host; reference:url,puhua.net/suricata_localrules#5200108; classtype:policy-violation; sid:5200108; rev:1;)
alert http $HOME_NET any -> $EXTERNAL_NET any (msg:”HFF INFO DriverGenius”; flow:to_server,established; priority:1; content:”GET”; http_method; content:”software.drivergenius.com”; http_host; reference:url,puhua.net/suricata_localrules#5200109; classtype:policy-violation; sid:5200109; rev:1;)