From 4876e3a692739bb9ca00d0f500fd5f4b3eb16ce3 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Fri, 7 Sep 2012 11:39:29 -0400 Subject: apply fix for CVE-2012-4409 (thanks to Raphael Geissert) --- mcrypt-2.6.8/src/extra.c.CVE-2012-4409 2012-09-07 11:00:55.906870746 -0400 +++ mcrypt-2.6.8/src/extra.c 2012-09-07 11:00:27.967858365 -0400 @@ -242,6 +242,8 @@ int check_file_head(FILE * fstream, char if (m_getbit(0, sflag) != 0) { /* if the first bit is set */ *salt_size = m_setbit(0, sflag, 0); if (*salt_size > 0) { + if (*salt_size > sizeof(tmp_buf)) + err_quit(_("Salt is too long\n")); fread(tmp_buf, 1, *salt_size, fstream); memmove(salt, tmp_buf, *salt_size); -- cgit v0.12 > Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/README
/guix/log/gnu/home.scm?id=cb1107416e51fc90d5031f3d9c71510e6eb38a19&showmsg=1'>Expand)
AgeCommit message (Expand)Author
Author
2023-03-20home: 'home-environment-with-provenance' uses the HE location info....Sergey Trofimov
2023-03-13home: Export home-environment-packages....Sergey Trofimov
2022-08-19home: Fix docstring....Andrew Tropin
2022-08-01home: Add 'home-generation-base'....Ludovic Courtès
2022-07-17Revert "home: Add 'home-generation-base'."...Tobias Geerinckx-Rice
2022-07-23home: Add 'home-generation-base'....Ludovic Courtès
2021-12-19home: Add gexp-compiler for home-environments....Andrew Tropin
2021-10-09Move (gnu home-services) to (gnu home services)....Oleg Pykhalov
2021-10-08gnu: Move (gnu home-services) to (gnu home services)....Oleg Pykhalov
2021-09-09gnu: home: Add doc comment about the module....Andrew Tropin
2021-09-09home: Add home-environment....Andrew Tropin