Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
08a480c6
Commit
08a480c6
authored
Jul 29, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make Request more robust against invalid CSRF data
fixes #4514
parent
4d3e0c77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
5 deletions
+3
-5
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Request.php
framework/web/Request.php
+2
-5
No files found.
framework/CHANGELOG.md
View file @
08a480c6
...
...
@@ -75,6 +75,7 @@ Yii Framework 2 Change Log
-
Bug #4453:
`yii message/extract`
wasn't properly writing to po files in case of multiple categories (samdark)
-
Bug #4469: Make
`Security::compareString()`
timing depend only on length of
`$actual`
input and add unit test. (tom--)
-
Bug #4470: Avoid endless loop when exporting logs with low values of flushInterval and eportInterval (cebe)
-
Bug #4514: Fixed Request class crashing when empty CSRF token value is sent in cookie (cebe)
-
Bug: Fixed inconsistent return of
`\yii\console\Application::runAction()`
(samdark)
-
Bug: URL encoding for the route parameter added to
`\yii\web\UrlManager`
(klimov-paul)
-
Bug: Fixed the bug that requesting protected or private action methods would cause 500 error instead of 404 (qiangxue)
...
...
framework/web/Request.php
View file @
08a480c6
...
...
@@ -1228,12 +1228,11 @@ class Request extends \yii\base\Request
{
if
(
$this
->
_csrfCookie
===
null
)
{
$this
->
_csrfCookie
=
$this
->
getCookies
()
->
get
(
$this
->
csrfParam
);
if
(
$this
->
_csrfCookie
===
null
)
{
if
(
$this
->
_csrfCookie
===
null
||
empty
(
$this
->
_csrfCookie
->
value
)
)
{
$this
->
_csrfCookie
=
$this
->
createCsrfCookie
();
Yii
::
$app
->
getResponse
()
->
getCookies
()
->
add
(
$this
->
_csrfCookie
);
}
}
return
$this
->
_csrfCookie
->
value
;
}
...
...
@@ -1277,7 +1276,7 @@ class Request extends \yii\base\Request
if
(
$n1
>
$n2
)
{
$token2
=
str_pad
(
$token2
,
$n1
,
$token2
);
}
elseif
(
$n1
<
$n2
)
{
$token1
=
str_pad
(
$token1
,
$n2
,
$token1
);
$token1
=
str_pad
(
$token1
,
$n2
,
$
n1
===
0
?
' '
:
$
token1
);
}
return
$token1
^
$token2
;
...
...
@@ -1289,7 +1288,6 @@ class Request extends \yii\base\Request
public
function
getCsrfTokenFromHeader
()
{
$key
=
'HTTP_'
.
str_replace
(
'-'
,
'_'
,
strtoupper
(
self
::
CSRF_HEADER
));
return
isset
(
$_SERVER
[
$key
])
?
$_SERVER
[
$key
]
:
null
;
}
...
...
@@ -1304,7 +1302,6 @@ class Request extends \yii\base\Request
$options
=
$this
->
csrfCookie
;
$options
[
'name'
]
=
$this
->
csrfParam
;
$options
[
'value'
]
=
Yii
::
$app
->
getSecurity
()
->
generateRandomString
();
return
new
Cookie
(
$options
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment