Safeguarding against UnblockUser::execute()'s method unblocking the anonymous user

Created on 23 September 2022, about 2 years ago
Updated 11 April 2023, over 1 year ago

Problem/Motivation

The Anonymous user, as created by the user_install() function (@see user.module's .install file),
has its status property set to 0 and is therefore blocked from authenticating.
That reasonable default should not be modified since we don't want to authenticate anonymous users.

To safeguard against this, the User::activate() method should ascertain that the Anonymous user does not become unblocked.
In order to achieve this, the User::isAnonymous() method also needs to enforce a stricter check on the uid property.

Proposed resolution

Modify the User::activate() method and implement a Logical Exception being thrown that disallows the Anonymous user from becoming unblocked.
Additionally, make User::isAnonymous() more strict and accept only uid === 0 as the condition that reveals when a user is truly anonymous.

Remaining tasks

Provide a patch.
Provide a Change Record for changes that may affect developers.

📌 Task
Status

Fixed

Version

10.1

Component
User module 

Last updated 3 days ago

Created by

🇨🇭Switzerland stefanos.petrakis@gmail.com Biel, Switzerland

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

    It makes Drupal less vulnerable to abuse or misuse. Note, this is the preferred tag, though the Security tag has a large body of issues tagged to it. Do NOT publicly disclose security vulnerabilities; contact the security team instead. Anyone (whether security team or not) can apply this tag to security improvements that do not directly present a vulnerability e.g. hardening an API to add filtering to reduce a common mistake in contributed modules.

Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇺🇸United States smustgrave

    This issue is being reviewed by the kind folks in Slack, #needs-review-queue-initiative. We are working to keep the size of Needs Review queue [2700+ issues] to around 400 (1 month or less), following Review a patch or merge request as a guide.

    At this time we would need a D10.1.x patch or MR for this issue.

  • 🇮🇳India _utsavsharma

    Patch for 10.1.x.

  • First commit to issue fork.
  • @rpayanm opened merge request.
  • Status changed to RTBC over 1 year ago
  • 🇺🇸United States smustgrave

    Hiding files to avoid confusion.

    Ran the tests locally without the fix and got

    Failed asserting that exception of type "LogicException" is thrown.

    And clearly it passes with the fix.

    Changes look good. Not sure if a security review should happen first (question for committer)

  • Status changed to Needs work over 1 year ago
  • 🇬🇧United Kingdom longwave UK

    Added a question to the MR. This also needs a change record to note that we are making User::isAnonymous() more strict, as other code may have copied the pattern in core and used isAnonymous() to detect new users, which will now stop working.

  • 🇨🇭Switzerland stefanos.petrakis@gmail.com Biel, Switzerland

    Added a Change Record as per #19.
    Will have a look at the failing tests now.

  • Status changed to Needs review over 1 year ago
  • 🇨🇭Switzerland stefanos.petrakis@gmail.com Biel, Switzerland

    This one is up for a review again, the change record is in place, although a draft that could use some eyes on.
    The points in the MR have all been addressed.

  • 🇺🇸United States smustgrave

    See \Drupal\Core\Session\AccountInterface is being replaced now. Is this change going to be disruptive to anyone using that interface now?

  • 🇨🇭Switzerland stefanos.petrakis@gmail.com Biel, Switzerland

    The reason I replaced \Drupal\Core\Session\AccountInterface with \Drupal\user\UserInterface is because it was causing a breakage in that Unit test class due to the following change:

    diff --git a/core/modules/user/src/UserAccessControlHandler.php b/core/modules/user/src/UserAccessControlHandler.php
    index a231d5214d..46b97cfa2e 100644
    --- a/core/modules/user/src/UserAccessControlHandler.php
    +++ b/core/modules/user/src/UserAccessControlHandler.php
    @@ -101,7 +101,7 @@ protected function checkFieldAccess($operation, FieldDefinitionInterface $field_
           case 'name':
             // Allow view access to anyone with access to the entity.
             // The username field is editable during the registration process.
    -        if ($operation == 'view' || ($items && $items->getEntity()->isAnonymous())) {
    +        if ($operation == 'view' || ($items && $items->getEntity()->isNew())) {
               return AccessResult::allowed()->cachePerPermissions();
             }
             // Allow edit access for the own user name if the permission is
    

    That change is however crucial to this issue and also makes sense in that class since it is an access control handler specific to the user entity type. And that type has a isNew() method.

    The Unit test class however that is testing that handler has been using so far a \Drupal\Core\Session\AccountInterface mock that does not have an isNew() method (which causes the breakage) but most importantly makes less sense to use for testing the access control handler for the user entity type instead of the \Drupal\user\UserInterface itself.

    So, all in all, that change is not disruptive, but the Unit test needed an adjustment IMHO.

  • Status changed to RTBC over 1 year ago
  • 🇺🇸United States smustgrave

    Thanks for the explanation. Will move it on and see what the committer thinks too.

    • catch committed c704db94 on 10.1.x
      Issue #3311563 by stefanos.petrakis, rpayanm, smustgrave, longwave, Wim...
  • Status changed to Fixed over 1 year ago
  • 🇬🇧United Kingdom catch

    There's a very small chance that this could break some existing code (for example using ::isAnonymous() as a proxy for ::isNew()) but that could would already be broken as this issue shows, and it might even fix some hidden bugs for people. So I think the change record here (which looks good) is enough.

    Committed c704db9 and pushed to 10.1.x. Thanks!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024