summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS18
-rwxr-xr-xNP-VERSION-GEN2
-rw-r--r--THANKS.in2
-rw-r--r--configure.ac2
4 files changed, 22 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 13a2c0b5..4f9a4943 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,11 @@
1This file documents the major additions and syntax changes between releases. 1This file documents the major additions and syntax changes between releases.
2 2
33.0.1 1st July 2026 33.0.1 1st July 2026
4 Codename: Mileva Marić
5
6 This release fixes a potential local privilege escalation vulnerability
7 in 'check_icmp' which was introduced in 3.0.0.
8
4 FIXES 9 FIXES
5 * check_icmp 10 * check_icmp
6 * Reject more than 65535 target hosts to prevent a buffer overflow 11 * Reject more than 65535 target hosts to prevent a buffer overflow
@@ -9,6 +14,19 @@ This file documents the major additions and syntax changes between releases.
9 threshold is given 14 threshold is given
10 * Reject negative ICMP data length (-b) to prevent a buffer overflow 15 * Reject negative ICMP data length (-b) to prevent a buffer overflow
11 when building the ICMP packet 16 when building the ICMP packet
17 * check_curl
18 * Populate the DNS cache when resolving locally instead of remotely
19 * other smaller improvements
20 * check_mysql_query
21 * Add option '--queryname' to replace the actual query in output
22 * check_mysql:
23 * Fix casing of the MariaDB string
24
25 * General
26 * if the net-snmp library is not available at compile time 'check_snmp' will not be build
27 but the build itself will not fail.
28 This reproduces the behaviour before 3.0.0, where the lack of 'snmpget' caused
29 'check_snmp' to be removed from build targets
12 30
133.0.0 16th Jun 2026 313.0.0 16th Jun 2026
14 Codename: Johann Georg Elser 32 Codename: Johann Georg Elser
diff --git a/NP-VERSION-GEN b/NP-VERSION-GEN
index 6572c9aa..e8def145 100755
--- a/NP-VERSION-GEN
+++ b/NP-VERSION-GEN
@@ -6,7 +6,7 @@
6SRC_ROOT=`dirname $0` 6SRC_ROOT=`dirname $0`
7 7
8NPVF=NP-VERSION-FILE 8NPVF=NP-VERSION-FILE
9DEF_VER=3.0.0git 9DEF_VER=3.0.1git
10 10
11LF=' 11LF='
12' 12'
diff --git a/THANKS.in b/THANKS.in
index d1872423..569b1f9e 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -440,3 +440,5 @@ Dennis
440Firstyear 440Firstyear
441inqrphl 441inqrphl
442William 442William
443Christopher Kreft
444Martin Rys
diff --git a/configure.ac b/configure.ac
index 41b39c7b..b17ac68b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
1dnl Process this file with autoconf to produce a configure script. 1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ([2.64]) 2AC_PREREQ([2.64])
3AC_INIT([monitoring-plugins],[3.0.0git]) 3AC_INIT([monitoring-plugins],[3.0.1git])
4AC_CONFIG_SRCDIR(NPTest.pm) 4AC_CONFIG_SRCDIR(NPTest.pm)
5AC_CONFIG_FILES([gl/Makefile]) 5AC_CONFIG_FILES([gl/Makefile])
6AC_CONFIG_AUX_DIR(build-aux) 6AC_CONFIG_AUX_DIR(build-aux)