]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
release: 5.0.6; update changelog; require htp 0.5.37 suricata-5.0.6
authorVictor Julien <victor@inliniac.net>
Mon, 1 Mar 2021 13:30:41 +0000 (14:30 +0100)
committerVictor Julien <victor@inliniac.net>
Mon, 1 Mar 2021 21:43:08 +0000 (22:43 +0100)
ChangeLog
configure.ac

index 4b1bf0e7a474feb7e8fcda3ff137dcf8e208ef1f..1b88ca8b321f0212927b5ba7cd4930f26f887531 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,26 @@
+5.0.6 -- 2021-03-02
+
+Bug #4230: tcp/async: incorrect flagging of ACK values as invalid
+Bug #4256: tcp/fastopen: false positive on "invalid option"
+Bug #4287: Mismatch between capture and outputs in rules leads to seg fault
+Bug #4289: datasets: reference counter issue in string lookup
+Bug #4291: Suricata crashes at exit in NFQ mode
+Bug #4293: ftp-data: support for file.name keyword is incomplete
+Bug #4295: detect: NOOPT flag not enforced correctly
+Bug #4297: ssl : Integer underflow in ssl parsing SSLV3_HANDSHAKE_PROTOCOL
+Bug #4299: modbus: Request flood leads to CPU exhaustion
+Bug #4301: 5.0.5 in socket mode crashes when using file-store due to uninitialized stats_ctx
+Bug #4303: Not all manpages are built by docs Makefile
+Bug #4305: dns: output flags not set correctly on 32 bit systems
+Bug #4307: eve: Memory leak from jsonbuilder in @MetadataJson@
+Bug #4309: Wrong stream side after direction change
+Bug #4322: Heap use after free in parsing signatures with ip_proto and prefilter
+Bug #4328: Suricata is not fully reading or loading the iprep files
+Bug #4337: Stack-buffer-overflow READ 4 in SetupU8Hash
+Bug #4341: Assertion failed in AdjustToAcked delta > 10000000ULL && delta > stream->window
+Feature #4339: Makes libhtp decompression time limit configurable from Suricata
+Optimization #4367: decoder: limit number of decoding layers
+
 5.0.5 -- 2020-12-04
 
 Bug #4077: smb: post-GAP file handling
index dbbfc86397e7a802e044eff611a2cacf06cd6467..b777a44ebf90b0fc709d61c2ee40bbd7264fd32b 100644 (file)
@@ -1,4 +1,4 @@
-    AC_INIT([suricata],[5.0.6-dev])
+    AC_INIT([suricata],[5.0.6])
     m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])AM_SILENT_RULES([yes])
     AC_CONFIG_HEADERS([config.h])
     AC_CONFIG_SRCDIR([src/suricata.c])
             echo
             exit 1
         fi
-        PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.36],[libhtp_minver_found="yes"],[libhtp_minver_found="no"])
+        PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.37],[libhtp_minver_found="yes"],[libhtp_minver_found="no"])
         if test "$libhtp_minver_found" = "no"; then
             PKG_CHECK_MODULES(LIBHTPDEVVERSION, [htp = 0.5.X],[libhtp_devver_found="yes"],[libhtp_devver_found="no"])
             if test "$libhtp_devver_found" = "no"; then
                 echo
-                echo "   ERROR! libhtp was found but it is neither >= 0.5.36, nor the dev 0.5.X"
+                echo "   ERROR! libhtp was found but it is neither >= 0.5.37, nor the dev 0.5.X"
                 echo
                 exit 1
             fi