]> git.ipfire.org Git - thirdparty/suricata-verify.git/commitdiff
Adds a test case for uri with space in it 1838/head
authorPhilippe Antoine <contact@catenacyber.fr>
Tue, 2 Apr 2019 10:23:45 +0000 (12:23 +0200)
committerPhilippe Antoine <pantoine@oisf.net>
Mon, 20 May 2024 19:02:14 +0000 (21:02 +0200)
tests/http-uri-spaces/README.md [new file with mode: 0644]
tests/http-uri-spaces/input.pcap [new file with mode: 0644]
tests/http-uri-spaces/test.rules [new file with mode: 0644]
tests/http-uri-spaces/test.yaml [new file with mode: 0644]

diff --git a/tests/http-uri-spaces/README.md b/tests/http-uri-spaces/README.md
new file mode 100644 (file)
index 0000000..8d5b389
--- /dev/null
@@ -0,0 +1,11 @@
+# Description
+
+Test http URI detection with spaces in it
+
+# PCAP
+
+The pcap comes from the idea in
+https://redmine.openinfosecfoundation.org/issues/2881
+You can reproduce a similar behavior with running a server and curl against it
+`python3 -m http.server`
+`curl "127.0.0.1:8000/uri afterspace"`
diff --git a/tests/http-uri-spaces/input.pcap b/tests/http-uri-spaces/input.pcap
new file mode 100644 (file)
index 0000000..aba13b8
Binary files /dev/null and b/tests/http-uri-spaces/input.pcap differ
diff --git a/tests/http-uri-spaces/test.rules b/tests/http-uri-spaces/test.rules
new file mode 100644 (file)
index 0000000..92cd358
--- /dev/null
@@ -0,0 +1 @@
+alert http any any -> any any (msg:"uri with space and after"; flow:established,to_server; content:" afterspace"; http_uri; sid:1; rev:1;)
diff --git a/tests/http-uri-spaces/test.yaml b/tests/http-uri-spaces/test.yaml
new file mode 100644 (file)
index 0000000..5c45c0e
--- /dev/null
@@ -0,0 +1,13 @@
+requires:
+  min-version: 8.0.0
+
+# disables checksum verification
+args:
+  - -k none
+
+checks:
+  - filter:
+      count: 1
+      match:
+        event_type: alert
+        alert.signature_id: 1