-
Notifications
You must be signed in to change notification settings - Fork 7.9k
ext/standard: Improve checking of allowed_classes option #15267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9ce3e98
ext/standard: Add some unserializing tests
Girgias c1cff7e
ext/standard: Add proper type checking for values of the allowed_clas…
Girgias d5ec5b2
ext/standard: Check that class names are somewhat sensible for the al…
Girgias 33a4464
Indicate type of value
Girgias 0e62448
Add test for Stringable objects
Girgias File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
61 changes: 61 additions & 0 deletions
61
ext/standard/tests/serialize/unserialize_allowed_classes_option_invalid_array.phpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
--TEST-- | ||
Test unserialize() with array allowed_classes and nonsensical values | ||
--FILE-- | ||
<?php | ||
class foo { | ||
public $x = "bar"; | ||
} | ||
$z = array(new foo(), 2, "3"); | ||
$s = serialize($z); | ||
|
||
try { | ||
unserialize($s, ["allowed_classes" => [null]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [false]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [true]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [42]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [15.2]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [[]]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [STDERR]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [new stdClass]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
|
||
?> | ||
--EXPECT-- | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, null given | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, false given | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, true given | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, int given | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, float given | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, array given | ||
TypeError: unserialize(): Option "allowed_classes" must be an array of class names, resource given | ||
Error: Object of class stdClass could not be converted to string |
48 changes: 48 additions & 0 deletions
48
ext/standard/tests/serialize/unserialize_allowed_classes_option_invalid_class_names.phpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
--TEST-- | ||
Test unserialize() with array allowed_classes and nonsensical class names | ||
--FILE-- | ||
<?php | ||
class foo { | ||
public $x = "bar"; | ||
} | ||
$z = array(new foo(), 2, "3"); | ||
$s = serialize($z); | ||
|
||
try { | ||
unserialize($s, ["allowed_classes" => [""]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => ["245blerg"]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => [" whitespace "]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => ["name\nwith whitespace"]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => ['$dollars']]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
try { | ||
unserialize($s, ["allowed_classes" => ["have\0nul_byte"]]); | ||
} catch (Throwable $e) { | ||
echo $e::class, ': ', $e->getMessage(), "\n"; | ||
} | ||
|
||
?> | ||
--EXPECT-- | ||
ValueError: unserialize(): Option "allowed_classes" must be an array of class names, " whitespace " given | ||
ValueError: unserialize(): Option "allowed_classes" must be an array of class names, "name | ||
with whitespace" given | ||
ValueError: unserialize(): Option "allowed_classes" must be an array of class names, "$dollars" given | ||
ValueError: unserialize(): Option "allowed_classes" must be an array of class names, "have" given |
File renamed without changes.
32 changes: 32 additions & 0 deletions
32
ext/standard/tests/serialize/unserialize_allowed_classes_option_stringable_value.phpt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--TEST-- | ||
Test unserialize() with Stringable object in allowed_classes | ||
--FILE-- | ||
<?php | ||
class foo { | ||
public $x = "bar"; | ||
} | ||
$z = array(new foo(), 2, "3"); | ||
$s = serialize($z); | ||
|
||
class Name { | ||
public function __toString(): string { | ||
return 'Foo'; | ||
} | ||
} | ||
|
||
$o = new Name(); | ||
|
||
var_dump(unserialize($s, ["allowed_classes" => [$o]])); | ||
?> | ||
--EXPECT-- | ||
array(3) { | ||
[0]=> | ||
object(foo)#3 (1) { | ||
["x"]=> | ||
string(3) "bar" | ||
} | ||
[1]=> | ||
int(2) | ||
[2]=> | ||
string(1) "3" | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.