]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
doc: minor updates (tls custom, TODO removal, ftp/smb file rules)
authorPascal Delalande <pdl35@free.fr>
Sat, 31 Mar 2018 16:20:16 +0000 (18:20 +0200)
committerVictor Julien <victor@inliniac.net>
Tue, 3 Apr 2018 07:24:37 +0000 (09:24 +0200)
doc/userguide/configuration/global-thresholds.rst
doc/userguide/output/eve/eve-json-format.rst
doc/userguide/rules/payload-keywords.rst
rules/files.rules

index 89203fea614090c4801603fa0fa30d76ce25b82d..7ffbfaf9fda521aae9dde90f74910a0d3f3e7c36 100644 (file)
@@ -202,9 +202,9 @@ Each of these will replace the threshold setting for 2002087 by the
 new threshold setting.
 
 **Note:** overriding all gids or sids (by using gen_id 0 or sig_id 0)
-is not supported. Bug #425.
+is not supported. Bug https://redmine.openinfosecfoundation.org/issues/425.
 
 Rate_filter
 ~~~~~~~~~~~
 
-TODO
+see https://redmine.openinfosecfoundation.org/issues/425.
index 41ff2ae2bc9f0a183c981edd8498cda0fd820b53..86c0875a0d80f89f074322aeefefd13f1b3731f8 100644 (file)
@@ -381,8 +381,8 @@ If extended logging is enabled the following fields are also included:
 * "fingerprint": The (SHA1) fingerprint of the TLS certificate
 * "sni": The Server Name Indication (SNI) extension sent by the client
 * "version": The SSL/TLS version used
-* "notbefore": The NotBefore field from the TLS certificate
-* "notafter": The NotAfter field from the TLS certificate
+* "not_before": The NotBefore field from the TLS certificate
+* "not_after": The NotAfter field from the TLS certificate
 * "ja3": The JA3 fingerprint consisting of both a JA3 hash and a JA3 string
 
 JA3 must be enabled in the Suricata config file (set 'app-layer.protocols.tls.ja3-fingerprints' to 'yes').
index 1e7154025432dbae7ebb7cd7138cdafdcb7294f7..0c1c927afa136611e7faa3e3400ca2ccc99a898b 100644 (file)
@@ -157,7 +157,7 @@ The keywords offset and depth can be combined and are often used together.
 
 For example::
 
-  content“def”; offset:3; depth:3;
+  content:“def”; offset:3; depth:3;
 
 If this was used in a signature, it would check the payload from the
 third byte till the sixth byte.
index 6dd628ec0a5536f17c09f7d2ac893b990bd73d2f..a54556f160de8e577423ca8cf24bf098f1c3bcc1 100644 (file)
 #alert http any any -> any any (msg:"Black list checksum match and extract MD5"; filemd5:fileextraction-chksum.list; filestore; sid:28; rev:1;)
 #alert http any any -> any any (msg:"Black list checksum match and extract SHA1"; filesha1:fileextraction-chksum.list; filestore; sid:29; rev:1;)
 #alert http any any -> any any (msg:"Black list checksum match and extract SHA256"; filesha256:fileextraction-chksum.list; filestore; sid:30; rev:1;)
+
+# Alert and store files over FTP
+#alert ftp-data any any -> any any (msg:"File Found within FTP and stored"; filestore; filename:"password"; ftpdata_command:stor; sid:31; rev:1;)
+
+# Alert and store files over SMB (with RUST activated)
+#alert smb any any -> any any (msg:"File Found over SMB and stored"; filestore; sid:32; rev:1;)
+
+# Alert and store files over NFS (with RUST activated)
+#alert nfs any any -> any any (msg:"File found within NFS and stored"; filestore; sid:33; rev:1;)