From: Russ Combs Date: Wed, 10 Dec 2014 20:58:24 +0000 (-0500) Subject: fixup READMEs X-Git-Tag: 3.0.0-233~1091^2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a0a4d463d109ae24fa5140b2becb36f47bd22b14;p=thirdparty%2Fsnort3.git fixup READMEs --- diff --git a/README b/README index e3002b22b..18e73868a 100644 --- a/README +++ b/README @@ -45,7 +45,7 @@ DEPENDENCIES If you already build Snort, you may have everything you need. If not, grab the latest: * autotools or cmake to build from source -* g++ >= 4.8 or other C++11 compiler +* g++ >= 4.8 or other C++11 compiler * daq from http://www.snort.org for packet IO * dnet from http://code.google.com/p/libdnet/ for network utility functions * LuaJIT from http://luajit.org for configuration and scripting @@ -58,8 +58,8 @@ DOWNLOAD There are two sets of source tarballs, once for autotools and one for cmake. snort-3 contains the base program and snort_extra has example plugins. - snort-3.0.0-a1-129-auto.tar.gz - snort-3.0.0-a1-129-cmake.tar.gz + snort-3.0.0-a1-130-auto.tar.gz + snort-3.0.0-a1-130-cmake.tar.gz BUILD SNORT diff --git a/extra/README b/extra/README index 1575875e9..6edae6541 100644 --- a/extra/README +++ b/extra/README @@ -25,8 +25,8 @@ DOWNLOAD There are two extra tarballs, once for autotools and one for cmake: - snort_extra-1.0.0-a1-129-auto.tar.gz - snort_extra-1.0.0-a1-129-cmake.tar.gz + snort_extra-1.0.0-a1-130-auto.tar.gz + snort_extra-1.0.0-a1-130-cmake.tar.gz BUILD EXTRAS @@ -45,7 +45,7 @@ To build with autotools, simply do the usual from the top level directory: To build with cmake, do the following: - mkdir build && cd build + mkdir build && cd build cmake .. make -j 8 install @@ -63,7 +63,7 @@ You can edit $my_path/lib/snort_extra/loggers/alert.lua to tweak the output form The last example demonstrates a LuaJIT rule option called find. The rule, supplied on stdin, uses the Lua [[ multiline string ]] delimiters to avoid shell escape issues: - echo 'alert tcp any any -> any 80 ( sid:1; msg:"test"; http_method; find:"pat = [[GET]]"; )' | \ + echo 'alert tcp any any -> any 80 ( sid:1; msg:"test"; http_method; find:"pat = [[GET]]"; )' | \ $my_path/bin/snort -c $my_path/etc/snort/snort.lua -r pcap \ -A cmg --script-path $my_path/lib/snort_extra --stdin-rules