diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-23 04:24:24 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-23 04:24:24 +0000 |
commit | a17b0ab292b6003408b9ddc9b688d47885aa0bd3 (patch) | |
tree | 29cdd6349fd3222f0eb75c29a341068efca5f398 | |
parent | Releasing progress-linux version 1.3.2-1~progress7.99u1. (diff) | |
download | suricata-update-a17b0ab292b6003408b9ddc9b688d47885aa0bd3.tar.xz suricata-update-a17b0ab292b6003408b9ddc9b688d47885aa0bd3.zip |
Merging upstream version 1.3.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r-- | CHANGELOG.md | 4 | ||||
-rw-r--r-- | suricata/update/main.py | 5 | ||||
-rw-r--r-- | suricata/update/version.py | 2 |
3 files changed, 10 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 03310ca..6ae15ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Change Log +## 1.3.3 - 2024-04-16 +- Add missing engine provided rules: + https://redmine.openinfosecfoundation.org/issues/6932 + ## 1.3.2 - 2024-03-14 - Fix copying of file hash lists which was broken in the dataset fix as part of ticket #6833: diff --git a/suricata/update/main.py b/suricata/update/main.py index 18af7a8..7814518 100644 --- a/suricata/update/main.py +++ b/suricata/update/main.py @@ -334,14 +334,19 @@ def load_dist_rules(files): "dnp3-events.rules", "dns-events.rules", "files.rules", + "http2-events.rules", "http-events.rules", "ipsec-events.rules", "kerberos-events.rules", "modbus-events.rules", + "mqtt-events.rules", "nfs-events.rules", "ntp-events.rules", + "quic-events.rules", + "rfb-events.rules", "smb-events.rules", "smtp-events.rules", + "ssh-events.rules", "stream-events.rules", "tls-events.rules", ] diff --git a/suricata/update/version.py b/suricata/update/version.py index 75d1205..d190ec4 100644 --- a/suricata/update/version.py +++ b/suricata/update/version.py @@ -4,4 +4,4 @@ # Alpha: 1.0.0a1 # Development: 1.0.0dev0 # Release candidate: 1.0.0rc1 -version = "1.3.2" +version = "1.3.3" |