From 53b0d7113f214560c0fcaa5c78a0dba239df369a Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Wed, 2 Apr 2025 16:26:54 -0600 Subject: [PATCH 1/9] Update to 7.0.11 (CVE-2024-36465, CVE-2024-36469, CVE-2024-42325, CVE-2024-45699, CVE-2024-45700) --- .gitignore | 1 + sources | 2 +- zabbix-out-of-tree.patch | 47 +++++++++++++++++++++------------------- zabbix.spec | 6 ++++- 4 files changed, 32 insertions(+), 24 deletions(-) diff --git a/.gitignore b/.gitignore index cd93590..570c826 100644 --- a/.gitignore +++ b/.gitignore @@ -106,3 +106,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.4.tar.gz /zabbix-7.0.5.tar.gz /zabbix-7.0.6.tar.gz +/zabbix-7.0.11.tar.gz diff --git a/sources b/sources index 9368fb5..e7ceb73 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.6.tar.gz) = ea74e1b45487333579cfe3c421d9467895efc3ce511fc4795b6e18950128ee9ead6599934b7dcb3aa393f32fd81847b48c61924196d111e99f26f65b620d83aa +SHA512 (zabbix-7.0.11.tar.gz) = a715f7b30e9ed6b1a626e9d0e49ec302716eb4da33bd4a5853ecbe8392ebe3177c7437b70989c6d25ff3406be53c8c0c8ca0813d8ee926c8ba48a4795fe73762 diff --git a/zabbix-out-of-tree.patch b/zabbix-out-of-tree.patch index 901d716..01f9068 100644 --- a/zabbix-out-of-tree.patch +++ b/zabbix-out-of-tree.patch @@ -1,5 +1,18 @@ +diff --git a/configure.ac b/configure.ac +index 3bf77ab..aa050ef 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -24,7 +24,7 @@ AC_PROG_MAKE_SET + + AC_CONFIG_HEADERS(include/common/config.h) + +-AC_SUBST(DEFAULT_INCLUDES, ['-I$(top_srcdir)/include/common -I$(top_srcdir)/include']) ++AC_SUBST(DEFAULT_INCLUDES, ['-I$(top_builddir)/include/common -I$(top_srcdir)/include/common -I$(top_srcdir)/include']) + + AC_CANONICAL_HOST + diff --git a/src/go/Makefile.am b/src/go/Makefile.am -index 3e24aa0..308e34b 100644 +index 3e24aa0..e1fac61 100644 --- a/src/go/Makefile.am +++ b/src/go/Makefile.am @@ -67,6 +67,7 @@ clean: clean-go-build clean-sbom @@ -23,7 +36,7 @@ index 3e24aa0..308e34b 100644 $(INSTALL_DATA) $${_f} "$(DESTDIR)$(AGENT2_PLUGIN_CONFIG_DIR)"; \ done) diff --git a/src/zabbix_agent/Makefile.am b/src/zabbix_agent/Makefile.am -index b217fb5..945a673 100644 +index b217fb5..1afa36b 100644 --- a/src/zabbix_agent/Makefile.am +++ b/src/zabbix_agent/Makefile.am @@ -69,4 +69,4 @@ zabbix_agentd_CFLAGS = \ @@ -33,16 +46,17 @@ index b217fb5..945a673 100644 - test -f "$(DESTDIR)$(AGENT_CONFIG_FILE)" || cp "../../conf/zabbix_agentd.conf" "$(DESTDIR)$(AGENT_CONFIG_FILE)" + test -f "$(DESTDIR)$(AGENT_CONFIG_FILE)" || cp "$(top_srcdir)/conf/zabbix_agentd.conf" "$(DESTDIR)$(AGENT_CONFIG_FILE)" diff --git a/src/zabbix_java/Makefile.am b/src/zabbix_java/Makefile.am -index 43f8f19..48214c9 100644 +index 7b410ed..b3bb5b9 100644 --- a/src/zabbix_java/Makefile.am +++ b/src/zabbix_java/Makefile.am -@@ -9,22 +9,22 @@ EXTRA_DIST = \ +@@ -9,23 +9,23 @@ EXTRA_DIST = \ startup.sh ZJG = bin/zabbix-java-gateway-$(VERSION).jar --LIB = lib/android-json-4.3_r3.1.jar:lib/logback-core-1.2.9.jar:lib/logback-classic-1.2.9.jar:lib/slf4j-api-1.7.32.jar +-LIB = lib/android-json-4.3_r3.1.jar:lib/logback-core-1.5.16.jar:lib/logback-classic-1.5.16.jar:lib/slf4j-api-2.0.16.jar ++LIB = $(srcdir)/lib/android-json-4.3_r3.1.jar:$(srcdir)/lib/logback-core-1.5.16.jar:$(srcdir)/lib/logback-classic-1.5.16.jar:$(srcdir)/lib/slf4j-api-2.0.16.jar + -JUNIT = tests/junit-4.8.2.jar -+LIB = $(srcdir)/lib/android-json-4.3_r3.1.jar:$(srcdir)/lib/logback-core-1.2.3.jar:$(srcdir)/lib/logback-classic-1.2.3.jar:$(srcdir)/lib/slf4j-api-1.7.30.jar +JUNIT = $(srcdir)/tests/junit-4.8.2.jar ZJG_DEST = $(DESTDIR)$(sbindir)/zabbix_java @@ -60,16 +74,16 @@ index 43f8f19..48214c9 100644 chmod 600 tests/com/zabbix/gateway/jmx_test_beans/jmxremote.password - $(JAVAC) tests/com/zabbix/gateway/jmx_test_beans/*.java - $(JAVAC) -d class/tests -classpath class/src:$(JUNIT) tests/com/zabbix/gateway/*.java -+ $(JAVAC) tests/com/zabbix/gateway/jmx_$(srcdir)/test_beans/*.java ++ $(JAVAC) $(srcdir)/tests/com/zabbix/gateway/jmx_test_beans/*.java + $(JAVAC) -d class/tests -classpath class/src:$(JUNIT) $(srcdir)/tests/com/zabbix/gateway/*.java java -classpath class/tests:$(LIB):$(ZJG):$(JUNIT) com.zabbix.gateway.AllTestRunner class: diff --git a/src/zabbix_js/Makefile.am b/src/zabbix_js/Makefile.am -index 1e4fd93..2110656 100644 +index 1e4fd93..534db83 100644 --- a/src/zabbix_js/Makefile.am +++ b/src/zabbix_js/Makefile.am -@@ -5,30 +5,30 @@ +@@ -5,30 +5,30 @@ bin_PROGRAMS = zabbix_js zabbix_js_SOURCES = zabbix_js.c zabbix_js_LDADD = \ @@ -125,7 +139,7 @@ index 1e4fd93..2110656 100644 zabbix_js_LDADD += @ZBXJS_LIBS@ $(LIBXML2_LIBS) diff --git a/src/zabbix_proxy/Makefile.am b/src/zabbix_proxy/Makefile.am -index b56f8a8..44800a0 100644 +index b56f8a8..4c7dcf6 100644 --- a/src/zabbix_proxy/Makefile.am +++ b/src/zabbix_proxy/Makefile.am @@ -151,4 +151,4 @@ install-data-hook: @@ -135,7 +149,7 @@ index b56f8a8..44800a0 100644 - test -f "$(DESTDIR)$(PROXY_CONFIG_FILE)" || cp "../../conf/zabbix_proxy.conf" "$(DESTDIR)$(PROXY_CONFIG_FILE)" + test -f "$(DESTDIR)$(PROXY_CONFIG_FILE)" || cp "$(top_srcdir)/conf/zabbix_proxy.conf" "$(DESTDIR)$(PROXY_CONFIG_FILE)" diff --git a/src/zabbix_server/Makefile.am b/src/zabbix_server/Makefile.am -index 0a55934..a7f6a28 100644 +index 0a55934..61ce877 100644 --- a/src/zabbix_server/Makefile.am +++ b/src/zabbix_server/Makefile.am @@ -186,4 +186,4 @@ install-data-hook: @@ -144,14 +158,3 @@ index 0a55934..a7f6a28 100644 $(MKDIR_P) "$(DESTDIR)$(LOAD_MODULE_PATH)" - test -f "$(DESTDIR)$(SERVER_CONFIG_FILE)" || cp "../../conf/zabbix_server.conf" "$(DESTDIR)$(SERVER_CONFIG_FILE)" + test -f "$(DESTDIR)$(SERVER_CONFIG_FILE)" || cp "$(top_srcdir)/conf/zabbix_server.conf" "$(DESTDIR)$(SERVER_CONFIG_FILE)" ---- zabbix-7.0.3/configure.ac.out-of-tree 2024-08-19 14:38:13.426482392 -0600 -+++ zabbix-7.0.3/configure.ac 2024-08-19 14:40:30.842129965 -0600 -@@ -24,7 +24,7 @@ - - AC_CONFIG_HEADERS(include/common/config.h) - --AC_SUBST(DEFAULT_INCLUDES, ['-I$(top_srcdir)/include/common -I$(top_srcdir)/include']) -+AC_SUBST(DEFAULT_INCLUDES, ['-I$(top_builddir)/include/common -I$(top_srcdir)/include/common -I$(top_srcdir)/include']) - - AC_CANONICAL_HOST - diff --git a/zabbix.spec b/zabbix.spec index 7b07ec2..75c6284 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.6 +Version: 7.0.11 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,10 @@ fi %files web-pgsql %changelog +* Wed Apr 02 2025 Orion Poplawski - 1:7.0.11-1 +- Update to 7.0.11 (CVE-2024-36465, CVE-2024-36469, CVE-2024-42325, + CVE-2024-45699, CVE-2024-45700) + * Sat Nov 30 2024 Orion Poplawski - 1:7.0.6-1 - Update to 7.0.6 From c4c66226482e8fade6939bcab3e546e9fc55a2a6 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 20 Jun 2025 15:58:48 -0500 Subject: [PATCH 2/9] 7.0.15 --- .gitignore | 1 + sources | 2 +- zabbix.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 570c826..9321692 100644 --- a/.gitignore +++ b/.gitignore @@ -107,3 +107,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.5.tar.gz /zabbix-7.0.6.tar.gz /zabbix-7.0.11.tar.gz +/zabbix-7.0.15.tar.gz diff --git a/sources b/sources index e7ceb73..2f38e70 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.11.tar.gz) = a715f7b30e9ed6b1a626e9d0e49ec302716eb4da33bd4a5853ecbe8392ebe3177c7437b70989c6d25ff3406be53c8c0c8ca0813d8ee926c8ba48a4795fe73762 +SHA512 (zabbix-7.0.15.tar.gz) = c6b0e8cbc573792629772e6806f7ec07931f7b83766fc4b26a7d13a0b71408543cef39ed653c43ba43cd8a01f1aa093bbbf730cdff0744351f7f858f4c166e9c diff --git a/zabbix.spec b/zabbix.spec index 75c6284..4a39b31 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.11 +Version: 7.0.15 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Fri Jun 20 2025 Gwyn Ciesla - 1:7.0.15-1 +- 7.0.15 + * Wed Apr 02 2025 Orion Poplawski - 1:7.0.11-1 - Update to 7.0.11 (CVE-2024-36465, CVE-2024-36469, CVE-2024-42325, CVE-2024-45699, CVE-2024-45700) From 6533d82c20a27dbef103b65d561bea2349c08026 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 27 Jun 2025 09:57:33 -0500 Subject: [PATCH 3/9] 7.0.16 --- .gitignore | 1 + sources | 2 +- zabbix.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 9321692..27018d2 100644 --- a/.gitignore +++ b/.gitignore @@ -108,3 +108,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.6.tar.gz /zabbix-7.0.11.tar.gz /zabbix-7.0.15.tar.gz +/zabbix-7.0.16.tar.gz diff --git a/sources b/sources index 2f38e70..0c6087a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.15.tar.gz) = c6b0e8cbc573792629772e6806f7ec07931f7b83766fc4b26a7d13a0b71408543cef39ed653c43ba43cd8a01f1aa093bbbf730cdff0744351f7f858f4c166e9c +SHA512 (zabbix-7.0.16.tar.gz) = 9a4b22d55ffaac09cec8aff0c906c2d75cc3eeac12d4efa726865e9a7d70d778367cc22e481455fbc507cb1d7157bb76743e3750d4ccbb8a2c0a3e922f07e86f diff --git a/zabbix.spec b/zabbix.spec index 4a39b31..866e7c1 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.15 +Version: 7.0.16 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Fri Jun 27 2025 Gwyn Ciesla - 1:7.0.16-1 +- 7.0.16 + * Fri Jun 20 2025 Gwyn Ciesla - 1:7.0.15-1 - 7.0.15 From 27eebef3e94cf802160f86349fa00f849d0c6a41 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 23 Jul 2025 10:00:27 -0500 Subject: [PATCH 4/9] 7.0.17 --- .gitignore | 1 + sources | 2 +- zabbix.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 27018d2..c147625 100644 --- a/.gitignore +++ b/.gitignore @@ -109,3 +109,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.11.tar.gz /zabbix-7.0.15.tar.gz /zabbix-7.0.16.tar.gz +/zabbix-7.0.17.tar.gz diff --git a/sources b/sources index 0c6087a..c4a11fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.16.tar.gz) = 9a4b22d55ffaac09cec8aff0c906c2d75cc3eeac12d4efa726865e9a7d70d778367cc22e481455fbc507cb1d7157bb76743e3750d4ccbb8a2c0a3e922f07e86f +SHA512 (zabbix-7.0.17.tar.gz) = 87ef51f8b866791419017e730980debb352d04e5968171813fe2ce0de8a8cb4f42ddff3e9953dd3807f96a682ed9ca3c3f656a4a404a92b1dfbe681108599aa8 diff --git a/zabbix.spec b/zabbix.spec index 866e7c1..c929412 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.16 +Version: 7.0.17 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Wed Jul 23 2025 Gwyn Ciesla - 1:7.0.17-1 +- 7.0.17 + * Fri Jun 27 2025 Gwyn Ciesla - 1:7.0.16-1 - 7.0.16 From 60dcdb24f6a9dcd90d75053353753c2f3e93b4d8 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 25 Aug 2025 08:59:25 -0500 Subject: [PATCH 5/9] 7.0.18 --- .gitignore | 1 + sources | 2 +- zabbix.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c147625..2ac0afc 100644 --- a/.gitignore +++ b/.gitignore @@ -110,3 +110,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.15.tar.gz /zabbix-7.0.16.tar.gz /zabbix-7.0.17.tar.gz +/zabbix-7.0.18.tar.gz diff --git a/sources b/sources index c4a11fb..b4f1cf3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.17.tar.gz) = 87ef51f8b866791419017e730980debb352d04e5968171813fe2ce0de8a8cb4f42ddff3e9953dd3807f96a682ed9ca3c3f656a4a404a92b1dfbe681108599aa8 +SHA512 (zabbix-7.0.18.tar.gz) = cb3530ee122aac0df1d969192bff6721b00560acabbc97877f1323e717def04f8111a42109289d881ca059364b33bcf1b5a7e5549ee33b3375a9a8956d5b354d diff --git a/zabbix.spec b/zabbix.spec index c929412..7beda89 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.17 +Version: 7.0.18 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Mon Aug 25 2025 Gwyn Ciesla - 1:7.0.18-1 +- 7.0.18 + * Wed Jul 23 2025 Gwyn Ciesla - 1:7.0.17-1 - 7.0.17 From 2be2e7b6944cb0972347b90a91f362a3fe916edf Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Tue, 30 Sep 2025 15:09:49 -0500 Subject: [PATCH 6/9] 7.0.19 --- .gitignore | 1 + sources | 2 +- zabbix.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 2ac0afc..4243034 100644 --- a/.gitignore +++ b/.gitignore @@ -111,3 +111,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.16.tar.gz /zabbix-7.0.17.tar.gz /zabbix-7.0.18.tar.gz +/zabbix-7.0.19.tar.gz diff --git a/sources b/sources index b4f1cf3..ae6eb32 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.18.tar.gz) = cb3530ee122aac0df1d969192bff6721b00560acabbc97877f1323e717def04f8111a42109289d881ca059364b33bcf1b5a7e5549ee33b3375a9a8956d5b354d +SHA512 (zabbix-7.0.19.tar.gz) = 44541f13ddc816f67e8e601255e7c21faa18b395eb5a77daf09bb9d59fc252d41ebf77c0e264749570f0edb697590832e618b007887e740f320b3a848aff6df1 diff --git a/zabbix.spec b/zabbix.spec index 7beda89..3941d54 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.18 +Version: 7.0.19 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Tue Sep 30 2025 Gwyn Ciesla - 1:7.0.19-1 +- 7.0.19 + * Mon Aug 25 2025 Gwyn Ciesla - 1:7.0.18-1 - 7.0.18 From e519ea660d1421656da119bf4c456f0d75d64dd1 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 29 Oct 2025 11:57:44 -0500 Subject: [PATCH 7/9] 7.0.20 --- .gitignore | 1 + sources | 2 +- zabbix.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 4243034..6d8c35d 100644 --- a/.gitignore +++ b/.gitignore @@ -112,3 +112,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.17.tar.gz /zabbix-7.0.18.tar.gz /zabbix-7.0.19.tar.gz +/zabbix-7.0.20.tar.gz diff --git a/sources b/sources index ae6eb32..b9857b6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.19.tar.gz) = 44541f13ddc816f67e8e601255e7c21faa18b395eb5a77daf09bb9d59fc252d41ebf77c0e264749570f0edb697590832e618b007887e740f320b3a848aff6df1 +SHA512 (zabbix-7.0.20.tar.gz) = ef83bfc80f33b3cae73de4c8076f2d41e09915b8e6fd29b945586cd6ec1b097007e14a26ff154c0435c299200b347ad938b75466bd824a9f9e83f8798fd871eb diff --git a/zabbix.spec b/zabbix.spec index 3941d54..34ff68e 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.19 +Version: 7.0.20 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Wed Oct 29 2025 Gwyn Ciesla - 1:7.0.20-1 +- 7.0.20 + * Tue Sep 30 2025 Gwyn Ciesla - 1:7.0.19-1 - 7.0.19 From 589e3abddff5553301bd33254552e21a98ce41e1 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 3 Nov 2025 10:36:19 -0600 Subject: [PATCH 8/9] 7.0.21 --- zabbix.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/zabbix.spec b/zabbix.spec index 34ff68e..ed86b9c 100644 --- a/zabbix.spec +++ b/zabbix.spec @@ -16,7 +16,7 @@ Name: zabbix Epoch: 1 -Version: 7.0.20 +Version: 7.0.21 Release: 1%{?dist} Summary: Open-source monitoring solution for your IT infrastructure @@ -838,6 +838,9 @@ fi %files web-pgsql %changelog +* Mon Nov 03 2025 Gwyn Ciesla - 1:7.0.21-1 +- 7.0.21 + * Wed Oct 29 2025 Gwyn Ciesla - 1:7.0.20-1 - 7.0.20 From 9fc67a1c4dff796c0cb9b578765adebe7ef0e2cc Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 3 Nov 2025 10:39:05 -0600 Subject: [PATCH 9/9] 7.0.21 --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 6d8c35d..b5610b1 100644 --- a/.gitignore +++ b/.gitignore @@ -113,3 +113,4 @@ zabbix-1.8.2.tar.gz /zabbix-7.0.18.tar.gz /zabbix-7.0.19.tar.gz /zabbix-7.0.20.tar.gz +/zabbix-7.0.21.tar.gz diff --git a/sources b/sources index b9857b6..54374f0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (zabbix-7.0.20.tar.gz) = ef83bfc80f33b3cae73de4c8076f2d41e09915b8e6fd29b945586cd6ec1b097007e14a26ff154c0435c299200b347ad938b75466bd824a9f9e83f8798fd871eb +SHA512 (zabbix-7.0.21.tar.gz) = 0c3d1972082695e6c82df07ab41df6c1d82f4c80978a56c32bc27b6a8d5cc3793185910a34c5c068b8c2322b63d05b254fde4f2afa0fbed8311140f71a6dc77c