History log of /PHP-8.2/sapi/fuzzer/generate_parser_corpus.php (Results 1 – 5 of 5)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 5d05f810 06-Oct-2021 Nikita Popov

Reduce max input size in parser fuzzer

Still seeing stack overflows for $$$$$x style input, let's reduce
the input size limit further...


# 40aa6b63 23-Sep-2021 Nikita Popov

Further limit max input size in parser fuzzer

It's easy to cause stack overflows with degenerate cases like
"$$$$$x" repeated thousands of times. We have no interest in
addressing th

Further limit max input size in parser fuzzer

It's easy to cause stack overflows with degenerate cases like
"$$$$$x" repeated thousands of times. We have no interest in
addressing these.

Make the input size smaller to hopefully avoid these stack
overflows.

show more ...


Revision tags: php-7.3.13RC1, php-7.2.26RC1, php-7.4.0, php-7.2.25, php-7.3.12, php-7.4.0RC6
# 11649a6d 07-Nov-2019 Nikita Popov

Reduce size limit in parser fuzzer

Avoid stack overflows during compilation of deeply nested
expressions.


Revision tags: php-7.3.12RC1, php-7.2.25RC1, php-7.4.0RC5, php-7.1.33, php-7.2.24, php-7.3.11, php-7.4.0RC4, php-7.3.11RC1, php-7.2.24RC1
# 76c8f2ed 02-Oct-2019 Fabien Villepinte

Fix regex in generate_parser_corpus.php

The next section after --FILE-- is not necessarily --EXPECT--.
Accept any section.

Closes GH-4770.


Revision tags: php-7.4.0RC3, php-7.2.23, php-7.3.10, php-7.4.0RC2
# c1adb7a7 16-Sep-2019 Nikita Popov

Move scripts out of corpus/ directory