Mercurial > hg > isophonics-drupal-site
view core/modules/basic_auth/src/PageCache/DisallowBasicAuthRequests.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\basic_auth\PageCache; use Drupal\Core\PageCache\RequestPolicyInterface; use Symfony\Component\HttpFoundation\Request; /** * Cache policy for pages served from basic auth. * * This policy disallows caching of requests that use basic_auth for security * reasons. Otherwise responses for authenticated requests can get into the * page cache and could be delivered to unprivileged users. */ class DisallowBasicAuthRequests implements RequestPolicyInterface { /** * {@inheritdoc} */ public function check(Request $request) { $username = $request->headers->get('PHP_AUTH_USER'); $password = $request->headers->get('PHP_AUTH_PW'); if (isset($username) && isset($password)) { return self::DENY; } } }