Skip to content

Commit

Permalink
Fix infinite loop when parsing malformed Sieve script (#9562)
Browse files Browse the repository at this point in the history
  • Loading branch information
alecpl committed Jul 31, 2024
1 parent df057fa commit 20f3988
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@
- Fix bug where "with attachment" filter could fail on some fts engines (#9514)
- Fix bug where an unhandled exception was caused by an invalid image attachment (#9475)
- Fix bug where a long subject title could not be displayed in some cases (#9416)
- Fix infinite loop when parsing malformed Sieve script (#9562)

## Release 1.6.7

Expand Down
1 change: 1 addition & 0 deletions plugins/managesieve/Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- Fix javascript error when relational or spamtest extension is not enabled (#9139)
- Support an array in managesieve_host option (#9447)
- Protect special scripts in managesieve_kolab_master mode
- Fix infinite loop when parsing a malformed script (#9562)

* version 9.5 [2023-03-26]
-----------------------------------------------------------
Expand Down
7 changes: 4 additions & 3 deletions plugins/managesieve/lib/Roundcube/rcube_sieve_script.php
Original file line number Diff line number Diff line change
Expand Up @@ -1306,9 +1306,10 @@ public static function tokenize($str, $num = 0, &$position = 0)
break;
// bracket-comment (<< reindent once https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues/7179 is fixed)
case '/':
if ($str[$position + 1] == '*') {
if ($end_pos = strpos($str, '*/', $position + 2)) {
$position = $end_pos + 2;
$position++;
if ($str[$position] == '*') {
if ($end_pos = strpos($str, '*/', $position + 1)) {
$position = $end_pos + 1;
} else {
// error
$position = $length;
Expand Down
14 changes: 14 additions & 0 deletions plugins/managesieve/tests/ManagesieveScriptTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ public static function provide_parser_cases(): iterable
return $result;
}

/**
* Sieve script parsing
*/
public function test_parser_bug9562()
{
// This is an obviously invalid script
$input = "vacation :subject \"a\" :from \"b\"\n<a href=\"https://test.org/\">test</a>";
$script = new \rcube_sieve_script($input);
$result = $script->as_text();

// TODO: The output still is BS, but it at least does not cause an infinite loop
$this->assertSame("require [\"vacation\"];\r\nvacation :subject \"a\" :from \"b\" \"a\";\r\n", $result);
}

public static function provide_tokenizer_cases(): iterable
{
return [
Expand Down

0 comments on commit 20f3988

Please sign in to comment.