Firefox bug fix doesn't detect hashes properly

Created on 29 December 2023, over 1 year ago
Updated 12 January 2024, about 1 year ago

Problem/Motivation

When Csp::ff1313937() is checking if it needs to modify the policy, it checks for the string hash and not the proper hash algorithm prefixes.

    $hasBugSource = array_reduce(
      $directives['default-src'],
      function ($return, $value) {
        return $return || (
          $value == Csp::POLICY_STRICT_DYNAMIC
          ||
          preg_match("<^'(hash|nonce)->", $value)
        );
      },
      FALSE
    );

Steps to reproduce

Proposed resolution

Change the regular expression to get the valid hash algorithms from Csp::HASH_ALGORITHMS

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Fixed

Version

1.0

Component

Code

Created by

🇨🇦Canada gapple

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

Merge Requests

Comments & Activities

Production build 0.71.5 2024