diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-10-02 11:51:36 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-10-02 15:22:42 +0200 |
commit | 645d0c92e0961cd0705529c4eeff4e1845170e1b (patch) | |
tree | ee2817211f0e44d6cc763a9c53cde41d0be90d81 /gnu | |
parent | 4cc0b485be8806e7e1b2575cd94645ee2a31e1d4 (diff) | |
download | guix-645d0c92e0961cd0705529c4eeff4e1845170e1b.tar guix-645d0c92e0961cd0705529c4eeff4e1845170e1b.tar.gz |
gnu: tcpdump: Update to 4.9.3 [security fixes].
This release fixes the following CVEs: CVE-2017-16808, CVE-2018-14468,
CVE-2018-14469, CVE-2018-14470, CVE-2018-14466, CVE-2018-14461,
CVE-2018-14462, CVE-2018-14465, CVE-2018-14881, CVE-2018-14464,
CVE-2018-14463, CVE-2018-14467, CVE-2018-10103, CVE-2018-10105,
CVE-2018-14880, CVE-2018-16451, CVE-2018-14882, CVE-2018-16227,
CVE-2018-16229, CVE-2018-16301, CVE-2018-16230, CVE-2018-16452,
CVE-2018-16300, CVE-2018-16228, CVE-2019-15166, CVE-2019-15167,
CVE-2018-14879.
* gnu/packages/admin.scm (tcpdump): Update to 4.9.3.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/admin.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index dcf938bcef..b9e1f1b608 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -879,14 +879,14 @@ network statistics collection, security monitoring, network debugging, etc.") (define-public tcpdump (package (name "tcpdump") - (version "4.9.2") + (version "4.9.3") (source (origin (method url-fetch) (uri (string-append "https://www.tcpdump.org/release/tcpdump-" version ".tar.gz")) (sha256 (base32 - "0ygy0layzqaj838r5xd613iraz09wlfgpyh7pc6cwclql8v3b2vr")))) + "0434vdcnbqaia672rggjzdn4bb8p8dchz559yiszzdk0sjrprm1c")))) (build-system gnu-build-system) (inputs `(("libpcap" ,libpcap) ("openssl" ,openssl))) |