Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Throw TransformationFailedException when there is a null bytes injection #54306

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

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ public function reverseTransform($value)
throw new TransformationFailedException('Expected a string.');
}

if (str_contains($value, "\0")) {
throw new TransformationFailedException('Null bytes not allowed');
fabpot marked this conversation as resolved.
Show resolved Hide resolved
}

$outputTz = new \DateTimeZone($this->outputTimezone);
$dateTime = \DateTime::createFromFormat($this->parseFormat, $value, $outputTz);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,19 @@ public function testReverseTransformEmpty()
$this->assertNull($reverseTransformer->reverseTransform(''));
}

public function testReverseTransformWithNullBytes()
{
$transformer = new DateTimeToStringTransformer();

$nullByte = \chr(0);
$value = '2024-03-15 21:11:00'.$nullByte;

$this->expectException(TransformationFailedException::class);
$this->expectExceptionMessage('Null bytes not allowed');

$transformer->reverseTransform($value);
}

public function testReverseTransformWithDifferentTimezones()
{
$reverseTransformer = new DateTimeToStringTransformer('America/New_York', 'Asia/Hong_Kong', 'Y-m-d H:i:s');
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.