CSP's report-uri directive is deprecated in favor of report-to

Created on 8 July 2024, 9 months ago
Updated 10 July 2024, 9 months ago

Problem/Motivation

The report-uri directive is deprecated in favor of report-to, see MDN's report-uri page.

Steps to reproduce

Install module and enable reporting, for example using the URI handler:

Then go to any content page and check the sent headers, the report-uri is used:

Proposed resolution

Change report-uri to report-to.

Remaining tasks

Provide a patch.

User interface changes

None.

API changes

None.

Data model changes

🐛 Bug report
Status

Closed: works as designed

Version

2.0

Component

Code

Created by

🇪🇸Spain tunic Madrid

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @tunic
  • 🇪🇸Spain tunic Madrid

    It seems the Reporting API module may need a fix also because it seems it sets the report-uri directive as well:
    https://git.drupalcode.org/project/reporting/-/blob/2.0.x/src/Plugin/Csp...

      public function alterPolicy(Csp $policy): void {
        /** @var \Drupal\reporting\Entity\ReportingEndpointInterface $reportingEndpoint */
        $reportingEndpoint = $this->reportingEndpointStorage->load($this->configuration['endpoint']);
    
        if ($reportingEndpoint && $reportingEndpoint->status()) {
          $policy->setDirective('report-uri', $reportingEndpoint->toUrl('log', ['absolute' => TRUE])->toString());
          $policy->setDirective('report-to', $reportingEndpoint->id());
        }
      }
    
  • Status changed to Closed: works as designed 9 months ago
  • 🇨🇦Canada gapple

    As also noted prominently on the MDN documentation:

    Warning: Though the report-to directive is intended to replace the deprecated report-uri directive, report-to is not yet supported in all browsers. For compatibility, you can specify both report-uri and report-to. In browsers that support report-to, the report-uri directive is ignored.

    Firefox does not yet support report-to, and though Safari is reported as having support, the Reporting API module had a recent bug fix 🐛 Warning: Undefined array key "csp-report" Fixed for handling Safari sending individual reports with content-type expected by report-uri (instead of a collection of reports to the report-to endpoint, as Chrome does according to the Reporting standard).

    CSP module does not (and won't) define a Reporting-Endpoints header that is necessary to use report-to. The sitelog report handler has been removed from CSP 2.x in favour of Reporting API's implementation which provides both reporting directives to support all browsers. Additional reporting handler plugins will be implemented by Reporting API module in the future, and then deprecated from CSP module.

  • 🇪🇸Spain tunic Madrid

    Thanks for the detailed information, that is very clear.

Production build 0.71.5 2024