8000 Throw TransformationFailedException when there is a null bytes injection by sormes · Pull Request #54306 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

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 1 commit
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
Next Next commit
Throw TransformationFailedException when there is a null bytes inject…
…ion.
  • Loading branch information
sormes committed Mar 15, 2024
commit df2c12dab2d3dfe82e82a8d430dfb4fc5c80da33
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 (true === str_contains($value, "\0")) {
throw new TransformationFailedException('Null bytes not allowed');
}

$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
0