Skip to content

Commit

Permalink
release: 6.0.16; update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
inashivb committed Feb 8, 2024
1 parent b1549e9 commit b46ffaa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
23 changes: 23 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
6.0.16 -- 2024-02-08

Security #6751: http2: evasion by splitting header fields over frames (6.0.x backport)
Security #6660: http2: quadratic complexity in find_or_create_tx not bounded by max-tx (6.0.x backport)
Security #6659: SMTP: quadratic complexity from unbounded number of transaction per flow (6.0.x backport)
Security #6658: http1: configurable limit for maximum number of live transactions per flow (6.0.x backport)
Security #6528: http1: quadratic complexity from infinite folded headers (6.0.x backport)
Bug #6598: ebpf: llc detection failure (6.0.x backport)
Bug #6549: multi-tenancy: ASAN error on engine analysis
Bug #6529: http.header, http.header.raw and http.request_header buffers not populated when malformed header value exists (6.0.x backport)
Bug #6437: host: ip rep prevents tag/threshold/hostbits cleanup (6.0.x backport)
Bug #6421: dns/eve: an empty format section results in no response details being logged (6.0.x backport)
Bug #6378: byte_jump with negative post_offset value fails at the end of the buffer (6.0.x backport)
Feature #6602: ci: add eBPF to Github workflow for Suricata 6.0.x
Feature #6430: HTTP/2 - app-layer-event and normalization when userinfo is in the :authority pseudo header for the http.host header (6.0.x backport)
Feature #6429: HTTP/2 - new app-layer-event when `:authority` and `host` headers do not match (6.0.x backport)
Task #6563: doc: document file.data (6.0.x backport)
Task #6517: libhtp 0.5.46 (6.0.x backport)
Documentation #6630: Fix byte_test examples (6.0.x backport)
Documentation #6512: userguide: update tls eve-log fields 'not_before' and 'not_after' (6.0.x backport)
Documentation #6505: userguide: update tls eve-log fields 'not_before' and 'not_after' (6.0.x backport)
Documentation #5988: doc: update build instructions (6.0.x backport)

6.0.15 -- 2023-10-18

Security #6363: mime: quadratic complexity in MimeDecAddEntity (6.0.x backport)
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT([suricata],[6.0.16-dev])
AC_INIT([suricata],[6.0.16])
m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])])AM_SILENT_RULES([yes])
AC_CONFIG_HEADERS([src/autoconf.h])
AC_CONFIG_SRCDIR([src/suricata.c])
Expand Down Expand Up @@ -1671,12 +1671,12 @@
echo
exit 1
fi
PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.44],[libhtp_minver_found="yes"],[libhtp_minver_found="no"])
PKG_CHECK_MODULES(LIBHTPMINVERSION, [htp >= 0.5.46],[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.44, nor the dev 0.5.X"
echo " ERROR! libhtp was found but it is neither >= 0.5.46, nor the dev 0.5.X"
echo
exit 1
fi
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
# Format:
#
# name {repo} {branch|tag}
libhtp https://github.com/OISF/libhtp 0.5.x
libhtp https://github.com/OISF/libhtp 0.5.46
suricata-update https://github.com/OISF/suricata-update 1.2.8

0 comments on commit b46ffaa

Please sign in to comment.