Skip to content

Commit

Permalink
apacheHttpd: fix CVE-2017-9798 (Optionsbleed)
Browse files Browse the repository at this point in the history
  • Loading branch information
fpletz committed Sep 18, 2017
1 parent 88604ee commit c15a900
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion pkgs/servers/http/apache-httpd/2.4.nix
Expand Up @@ -5,6 +5,7 @@
, ldapSupport ? true, openldap
, libxml2Support ? true, libxml2
, luaSupport ? false, lua5
, fetchpatch
}:

let optional = stdenv.lib.optional;
Expand Down Expand Up @@ -35,10 +36,19 @@ stdenv.mkDerivation rec {
optional http2Support nghttp2 ++
optional stdenv.isDarwin libiconv;

patchPhase = ''
prePatch = ''
sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|"
'';

patches = [
(fetchpatch {
name = "CVE-2017-9798.patch";
url = "https://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/server/core.c?r1=1805223&r2=1807754&pathrev=1807754&view=patch";
sha256 = "00hbq5szgav91kwsc30jdjvgd3vbgm8n198yna8bcs33p434v25k";
stripLen = 3;
})
];

# Required for ‘pthread_cancel’.
NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s";

Expand Down

0 comments on commit c15a900

Please sign in to comment.