bref/src/Event/Http/HttpResponse.php:61-90
When Bref is used in combination with an API Gateway with the v2 format, it does not handle multiple values headers.
Precisely, if PHP generates a response with two headers having the same key but different values only the latest one is kept.
If an application relies on multiple headers with the same key being set for security reasons, then Bref would lower the application security.
For example, if an application sets multiple Content-Security-Policy
headers, then Bref would just reflect the latest one.
index.php
file with the following content:
<?php
header("Content-Security-Policy: script-src 'none'", false);
header("Content-Security-Policy: img-src 'self'", false);
?>
<script>alert(document.domain)</script>
<img src="https://bref.sh/favicon-32x32.png">
serverless.yml
to deploy the Lambda:
service: app
provider:
name: aws
region: eu-central-1
plugins:
- ./vendor/bref/bref
functions:
api:
handler: index.php
description: ''
runtime: php-81-fpm
timeout: 28 # in seconds (API Gateway has a timeout of 29 seconds)
events:
- httpApi: '*'
# Exclude files from deployment
package:
patterns:
- '!node_modules/**'
- '!tests/**'
Content-Security-Policy: script-src 'none'
header has been removed.Content-Security-Policy: img-src 'self'
header has been kept.php -S 127.0.0.1:8090
).index.php
script through the PHP server (e.g. http://127.0.0.1:8090/index.php).Content-Security-Policy: script-src 'none'
header has been kept.Content-Security-Policy: img-src 'self'
header has been kept.Concatenate all the multiple value headers' values with a comma (,
) as separator and return a single header with all the values to the API Gateway.
{ "nvd_published_at": "2024-02-01T16:17:14Z", "cwe_ids": [ "CWE-436" ], "severity": "MODERATE", "github_reviewed": true, "github_reviewed_at": "2024-02-01T20:53:08Z" }