-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
Trivial crash in phpdbg lexer #17387
Comments
This is a buffer overread of the input in unescape_string, so that read should be bounded by the length, and the length field written to the parameter should be of the appropriate length as well. Fixing that however makes us end up in an infinite loop; so that implies there's a bug in the lexer/parser grammar itself probably as well. |
Possibly related to #17523. |
The length of the string should be set to the truncated length (that was used to duplicate the input anyway).
* PHP-8.3: Fix memory leak in phpdbg calling registered function Partially fix GH-17387
* PHP-8.4: Fix memory leak in phpdbg calling registered function Partially fix GH-17387
GH closed this automatically, but this is only partially fixed, reopening... |
The length of the string should be set to the truncated length (that was used to duplicate the input anyway).
Description
The following reproducer in phpdbg prompt:
Gives the following output:
PHP Version
8.3+
Operating System
No response
The text was updated successfully, but these errors were encountered: