new upstream release (3.3.0); modify package compatibility for Stretch
[ossec-hids.git] / src / os_regex / README
old mode 100755 (executable)
new mode 100644 (file)
index f91ed51..79960ab
@@ -1,11 +1,5 @@
-OSSEC os_regex 0.3
-Copyright (c) 2004,2005,2006 Daniel B. Cid   <daniel.cid@gmail.com>
-                                        <dcid@ossec.net>
-
 = OSSEC, os_regex Library. =
 
 = OSSEC, os_regex Library. =
 
-
 Fast and simple library for regular expressions in C.
 
 This library is designed to be simple, but support
 Fast and simple library for regular expressions in C.
 
 This library is designed to be simple, but support
@@ -13,24 +7,21 @@ the most common regular expressions. It was design
 with intrusion detection systems in mind, where having
 all options is not crucial, but speed is.
 
 with intrusion detection systems in mind, where having
 all options is not crucial, but speed is.
 
-
 The following expressions are supported:
     \w  ->  A-Z, a-z, 0-9 characters
     \d  ->  0-9 characters
     \s  ->  For spaces " "
 The following expressions are supported:
     \w  ->  A-Z, a-z, 0-9 characters
     \d  ->  0-9 characters
     \s  ->  For spaces " "
-    \p  ->  ()*+,-.:;<=>?[] (pontuation characters)
+    \p  ->  ()*+,-.:;<=>?[]!"'#$%&|{} (punctuation characters)
     \W  ->  For anything not \w
     \D  ->  For anything not \d
     \S  ->  For anything not \s
     \.  ->  For anything
 
     \W  ->  For anything not \w
     \D  ->  For anything not \d
     \S  ->  For anything not \s
     \.  ->  For anything
 
-       
 Each regular expression can be followed by:
 
     +  ->  To match one or more times (eg \w+ or \d+)
     *  ->  To match zero or more times (eg \w* or \p*)
 
 Each regular expression can be followed by:
 
     +  ->  To match one or more times (eg \w+ or \d+)
     *  ->  To match zero or more times (eg \w* or \p*)
 
-    
 We also support the "^" to match at the beginning of the text,
 '$" to match at the end of the text and "|" to have multiple
 expressions.
 We also support the "^" to match at the beginning of the text,
 '$" to match at the end of the text and "|" to have multiple
 expressions.