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
f07510e9
Commit
f07510e9
authored
Jul 27, 2014
by
Alexander Makarov
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4474 from tom--/4469-compareString-without-shortcut
4469 compare string without shortcut
parents
34893c9e
4f5b7afd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
9 deletions
+47
-9
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
Security.php
framework/base/Security.php
+8
-9
SecurityTest.php
tests/unit/framework/base/SecurityTest.php
+38
-0
No files found.
framework/CHANGELOG.md
View file @
f07510e9
...
...
@@ -73,6 +73,7 @@ Yii Framework 2 Change Log
-
Bug #4412: Formatter used SI Prefixes for base 1024, now uses binary prefixes (kmindi)
-
Bug #4427: Formatter could do one division too much (kmindi)
-
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: 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/base/Security.php
View file @
f07510e9
...
...
@@ -610,19 +610,18 @@ class Security extends Component
* Performs string comparison using timing attack resistant approach.
* @see http://codereview.stackexchange.com/questions/13512
* @param string $expected string to compare.
* @param string $actual
string to compare
.
* @param string $actual
user-supplied string
.
* @return boolean whether strings are equal.
*/
public
function
compareString
(
$expected
,
$actual
)
{
// timing attack resistant approach:
$length
=
StringHelper
::
byteLength
(
$expected
);
if
(
$length
!==
StringHelper
::
byteLength
(
$actual
))
{
return
false
;
}
$diff
=
0
;
for
(
$i
=
0
;
$i
<
$length
;
$i
++
)
{
$diff
|=
(
ord
(
$actual
[
$i
])
^
ord
(
$expected
[
$i
]));
$expected
.=
"
\0
"
;
$actual
.=
"
\0
"
;
$expectedLength
=
StringHelper
::
byteLength
(
$expected
);
$actualLength
=
StringHelper
::
byteLength
(
$actual
);
$diff
=
$expectedLength
-
$actualLength
;
for
(
$i
=
0
;
$i
<
$actualLength
;
$i
++
)
{
$diff
|=
(
ord
(
$actual
[
$i
])
^
ord
(
$expected
[
$i
%
$expectedLength
]));
}
return
$diff
===
0
;
}
...
...
tests/unit/framework/base/SecurityTest.php
View file @
f07510e9
...
...
@@ -312,4 +312,41 @@ class SecurityTest extends TestCase
$dk
=
$this
->
security
->
hkdf
(
$hash
,
hex2bin
(
$ikm
),
hex2bin
(
$salt
),
hex2bin
(
$info
),
$l
);
$this
->
assertEquals
(
$okm
,
bin2hex
(
$dk
));
}
public
function
dataProviderCompareStrings
()
{
return
[
[
""
,
""
],
[
false
,
""
],
[
null
,
""
],
[
0
,
""
],
[
0.00
,
""
],
[
""
,
null
],
[
""
,
false
],
[
""
,
0
],
[
""
,
"
\0
"
],
[
"
\0
"
,
""
],
[
"
\0
"
,
"
\0
"
],
[
"0"
,
"
\0
"
],
[
0
,
"
\0
"
],
[
"user"
,
"User"
],
[
"password"
,
"password"
],
[
"password"
,
"passwordpassword"
],
[
"password1"
,
"password"
],
[
"password"
,
"password2"
],
[
""
,
"password"
],
[
"password"
,
""
],
];
}
/**
* @dataProvider dataProviderCompareStrings
*
* @param $expected
* @param $actual
*/
public
function
testCompareStrings
(
$expected
,
$actual
)
{
$this
->
assertEquals
(
strcmp
(
$expected
,
$actual
)
===
0
,
$this
->
security
->
compareString
(
$expected
,
$actual
));
}
}
\ No newline at end of file
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