OSSEC的正则表达式语法

正则表达式语法 Regular Expression Syntax

http://www.ossec.net/doc/syntax/regex.html

目前OSSEC支持两种:

  • OR_Regex or regex
  • OS_Match or sregex

1) OR_Regex or regex:C中简单快速的正则表达式库。

表达式 Supported expressions:

\w  ->  A-Z, a-z, 0-9 characters
\d  ->  0-9 characters
\s  ->  For spaces " "
\t  ->  For tabs.
\p  ->  ()*+,-.:;<=>?[] (punctuation characters)
\W  ->  For anything not \w
\D  ->  For anything not \d
\S  ->  For anything not \s
\.  ->  For anything

修饰符 Modifiers:
+  ->  To match one or more times (eg \w+ or \d+)
* -> To match zero or more times (eg \w* or \p*)

特殊字符 Special Characters:

^ -> To specify the beginning of the text.
$ -> To specify the end of the text.
| -> To create an "OR" between multiple patterns.

Characters Escaping

To utilize the following characters they must be escaped:

$ -> \$
( -> \(
) -> \)
\ -> \\
| -> \|

2) OS_Match or sregex:比上一种更快,但只支持简单的字符串匹配和一些特殊字符。

特殊字符 Special Characters:

^ -> To specify the beginning of the text.
$ -> To specify the end of the text.
| -> To create an "OR" between multiple patterns.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值