3
0
Fork 0
forked from mirrors/nixpkgs

zabbix: Apply fix for a SQL injection bug

https://support.zabbix.com/browse/ZBX-7091

CVE-2013-5743
This commit is contained in:
Eelco Dolstra 2013-10-04 13:52:49 +02:00
parent c7149103eb
commit e5ebb59e1d
2 changed files with 10 additions and 2 deletions

View file

@ -31,6 +31,14 @@ in
inherit src preConfigure;
patchFlags = "-p0";
patches =
[ (fetchurl {
url = "https://support.zabbix.com/secure/attachment/24449/ZBX-7091-2.0.8.patch";
sha256 = "1rlk3812dd12imk29i0fw6bzpgi44a8231kiq3bl5yryx18qh580";
})
];
configureFlags = [
"--enable-agent"
"--enable-server"

View file

@ -2,11 +2,11 @@
let
version = "1.8.17";
version = "1.8.18rc1";
src = fetchurl {
url = "mirror://sourceforge/zabbix/zabbix-${version}.tar.gz";
sha256 = "0c2dpx7ncahp161p6zymrrxwyn3algkfzh6dz7x2j0wsnvb6lrp2";
sha256 = "1pa4656dcl5r7r36nwk05zy38z49np6j717wjmmd8sqlz6szw01n";
};
preConfigure =