Update manager routes are not disabled anymore when allow_authorize_operations is FALSE

Created on 28 January 2025, 2 months ago

Problem/Motivation

Our website using Drupal 10.3.5 has $settings['allow_authorize_operations'] = FALSE; but we recently noticed that our devs could access /admin/reports/updates/update again.

(This was discussed privately with the security team and it was decided it could be handled publicly.)

Steps to reproduce

You can see this vulnerability by:
1. Adding $settings['allow_authorize_operations'] = FALSE; in settings.php
2. Empty cache
4. As a user with "administer software updates" permission browse to /admin/reports/updates/update

Proposed resolution

I think it comes from this change: https://git.drupalcode.org/project/drupal/-/commit/206a3ac2a295e6ac21a6c...
The update.route_subscriber service does not have the event_subscriber tag so it is never called.
If I add it, the routes are correctly protected again:

  update.route_subscriber:
    class: Drupal\update\Routing\UpdateRouteSubscriber
    arguments: ['@settings']
    tags:
      - { name: event_subscriber }

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

๐Ÿ› Bug report
Status

Active

Version

11.0 ๐Ÿ”ฅ

Component

update.module

Created by

๐Ÿ‡ซ๐Ÿ‡ทFrance prudloff Lille

Live updates comments and jobs are added and updated live.
  • Security

    It is used for security vulnerabilities which do not need a security advisory. For example, security issues in projects which do not have security advisory coverage, or forward-porting a change already disclosed in a security advisory. See Drupalโ€™s security advisory policy for details. Be careful publicly disclosing security vulnerabilities! Use the โ€œReport a security vulnerabilityโ€ link in the project pageโ€™s sidebar. See how to report a security issue for details.

Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024