Skip to content

Commit

Permalink
security #cve-2020-15094 Remove headers with internal meaning from Ht…
Browse files Browse the repository at this point in the history
…tpClient responses (mpdude)

This PR was merged into the 4.4 branch.
  • Loading branch information
fabpot committed Sep 2, 2020
2 parents a5ed890 + 8e8d0ed commit cdf1e9b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions HttpClientKernel.php
Expand Up @@ -58,6 +58,10 @@ public function handle(Request $request, $type = HttpKernelInterface::MASTER_REQ

$response = new Response($response->getContent(!$catch), $response->getStatusCode(), $response->getHeaders(!$catch));

$response->headers->remove('X-Body-File');
$response->headers->remove('X-Body-Eval');
$response->headers->remove('X-Content-Digest');

$response->headers = new class($response->headers->all()) extends ResponseHeaderBag {
protected function computeCacheControlValue(): string
{
Expand Down

0 comments on commit cdf1e9b

Please sign in to comment.