From: ihacku Date: Mon, 23 Apr 2018 12:15:35 +0000 (+0800) Subject: Fix hyperscan doc link (#47) X-Git-Tag: 3.0.0-245~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfafd67246fafa895aff55a2e8727471488739cf;p=thirdparty%2Fsnort3.git Fix hyperscan doc link (#47) The current link no longer works. --- diff --git a/doc/sensitive_data.txt b/doc/sensitive_data.txt index b5a75a375..fa07f27e9 100644 --- a/doc/sensitive_data.txt +++ b/doc/sensitive_data.txt @@ -8,7 +8,7 @@ expression syntax is available for defining your own PII. The `sd_pattern` rule option is powered by the open source Hyperscan library from Intel. It provides a regex grammar which is mostly PCRE compatible. To learn more about Hyperscan see -http://01org.github.io/hyperscan/dev-reference/ +https://intel.github.io/hyperscan/dev-reference/ ==== Syntax @@ -23,7 +23,7 @@ Pattern is the most important and is the only required parameter to `sd_pattern`. It supports 3 built in patterns which are configured by name: "credit_card", "us_social" and "us_social_nodashes", as well as user defined regular expressions of the Hyperscan dialect (see -http://01org.github.io/hyperscan/dev-reference/compilation.html#pattern-support). +https://intel.github.io/hyperscan/dev-reference/compilation.html#pattern-support). sd_pattern:"credit_card"; diff --git a/doc/snort_manual.html b/doc/snort_manual.html index 210973ef4..4f3cc8817 100644 --- a/doc/snort_manual.html +++ b/doc/snort_manual.html @@ -6191,7 +6191,7 @@ expression syntax is available for defining your own PII.

The sd_pattern rule option is powered by the open source Hyperscan library from Intel. It provides a regex grammar which is mostly PCRE compatible. To learn more about Hyperscan see -http://01org.github.io/hyperscan/dev-reference/

+https://intel.github.io/hyperscan/dev-reference/

Syntax

@@ -6207,7 +6207,7 @@ overhead. The Rule option takes the following syntax.

sd_pattern. It supports 3 built in patterns which are configured by name: "credit_card", "us_social" and "us_social_nodashes", as well as user defined regular expressions of the Hyperscan dialect (see -http://01org.github.io/hyperscan/dev-reference/compilation.html#pattern-support).

+https://intel.github.io/hyperscan/dev-reference/compilation.html#pattern-support).

sd_pattern:"credit_card";
diff --git a/doc/snort_manual.pdf b/doc/snort_manual.pdf index e11b93eac..6c7f2d242 100644 Binary files a/doc/snort_manual.pdf and b/doc/snort_manual.pdf differ diff --git a/src/ips_options/dev_notes.txt b/src/ips_options/dev_notes.txt index 3d1100cb8..de9b0fb3f 100644 --- a/src/ips_options/dev_notes.txt +++ b/src/ips_options/dev_notes.txt @@ -15,7 +15,7 @@ Hyperscan is an "optional" dependency for Snort3; These rule options will not exist without satisfying that dependency. Hyperscan documentation can be found online -http://01org.github.io/hyperscan/dev-reference +https://intel.github.io/hyperscan/dev-reference The "sd_pattern" will be used as a fast pattern in the future (like "regex") for performance.