Skip to content

Commit 84ee311

Browse files
security #cve-2019-10913 [HttpFoundation] reject invalid method override (nicolas-grekas)
This PR was merged into the 3.4 branch. Discussion ---------- [HttpFoundation] reject invalid method override Based on #86 Commits ------- 944e60f [HttpFoundation] reject invalid method override
2 parents b7bdf2c + 944e60f commit 84ee311

File tree

1 file changed

+29
-14
lines changed

1 file changed

+29
-14
lines changed

src/Symfony/Component/HttpFoundation/Request.php

Lines changed: 29 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1346,22 +1346,37 @@ public function setMethod($method)
13461346
*/
13471347
public function getMethod()
13481348
{
1349-
if (null === $this->method) {
1350-
$this->method = strtoupper($this->server->get('REQUEST_METHOD', 'GET'));
1351-
1352-
if ('POST' === $this->method) {
1353-
if ($method = $this->headers->get('X-HTTP-METHOD-OVERRIDE')) {
1354-
$this->method = strtoupper($method);
1355-
} elseif (self::$httpMethodParameterOverride) {
1356-
$method = $this->request->get('_method', $this->query->get('_method', 'POST'));
1357-
if (\is_string($method)) {
1358-
$this->method = strtoupper($method);
1359-
}
1360-
}
1361-
}
1349+
if (null !== $this->method) {
1350+
return $this->method;
1351+
}
1352+
1353+
$this->method = strtoupper($this->server->get('REQUEST_METHOD', 'GET'));
1354+
1355+
if ('POST' !== $this->method) {
1356+
return $this->method;
1357+
}
1358+
1359+
$method = $this->headers->get('X-HTTP-METHOD-OVERRIDE');
1360+
1361+
if (!$method && self::$httpMethodParameterOverride) {
1362+
$method = $this->request->get('_method', $this->query->get('_method', 'POST'));
1363+
}
1364+
1365+
if (!\is_string($method)) {
1366+
return $this->method;
1367+
}
1368+
1369+
$method = strtoupper($method);
1370+
1371+
if (\in_array($method, ['GET', 'HEAD', 'POST', 'PUT', 'DELETE', 'CONNECT', 'OPTIONS', 'PATCH', 'PURGE', 'TRACE'], true)) {
1372+
return $this->method = $method;
1373+
}
1374+
1375+
if (!preg_match('/^[A-Z]++$/D', $method)) {
1376+
throw new SuspiciousOperationException(sprintf('Invalid method override "%s".', $method));
13621377
}
13631378

1364-
return $this->method;
1379+
return $this->method = $method;
13651380
}
13661381

13671382
/**

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy