Skip to content
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

Change default setting for zend.exception_ignore_args #18215

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

andrewnicols
Copy link

@andrewnicols andrewnicols commented Apr 1, 2025

The default setting for zend.exception_ignore_args (On) should be the safest setting rather than the setting more convenient to developers (Off).

This setting was introduced in PHP 7.4 to hide arguments passed into methods which cause a stacktrace to be displayed.

It is not well documented in the PHP documentation and many people are unaware of its purpose. Whilst it is not a perfect solution, where a production site does display a stack trace it would be best to do so without all args being dispalyed.

In this case I feel that PHP should fail safe and require that developers actively disable this setting when they do want args (either in php.ini, or through ini_set() calls).

Happy to raise this as an RFC if this is required -- I'm uncertain whether this change requires one from reading the RFC documentation.


RFC: https://wiki.php.net/rfc/exception_ignore_args_default_value

@andrewnicols
Copy link
Author

andrewnicols commented Apr 1, 2025

Re failing unit tests, is it better to:

  • explicitly set the zend ini on those tests;
  • change the test expectations in these tests; or
  • change the default configuration somehow for unit tests to set this?

@andrewnicols andrewnicols force-pushed the defaultExceptionIgnoreArgsOn branch from 53c2706 to eaeb2c9 Compare April 1, 2025 08:26
@andrewnicols andrewnicols requested a review from nielsdos as a code owner April 1, 2025 08:26
@andrewnicols andrewnicols force-pushed the defaultExceptionIgnoreArgsOn branch from eaeb2c9 to bb4f809 Compare April 1, 2025 08:34
@andrewnicols
Copy link
Author

I've gone through the failing tests and addressed these by reverting one set of test changes I made (they were run with a explicit value to the ini setting already), and updating the expected output for the remaining failing test to remove the args from the stacktrace.

@TimWolla
Copy link
Member

TimWolla commented Apr 1, 2025

As per https://chat.stackoverflow.com/transcript/message/57868601#57868601 (see also previous and next day for further context), I'd rather see the value in php.ini-production changed to Off:

zend.exception_ignore_args = On

/cc @bwoebi

@andrewnicols
Copy link
Author

As per https://chat.stackoverflow.com/transcript/message/57868601#57868601 (see also previous and next day for further context), I'd rather see the value in php.ini-production changed to Off:

I'm not sure I follow... you'd rather than we reveal exception args in production?

I'd rather disable them in development too if the desire is to keep dev and production configurations as close as possible.

The SensitiveParameter attribute is no good in this instance. It only works if you configure it on parameters up and down the stack, and the moment you use anything like dependency injection it becomes very difficult (maybe impossible) to mask those params.

@TimWolla
Copy link
Member

TimWolla commented Apr 1, 2025

you'd rather than we reveal exception args in production?

Yes. Though reveal is not the correct word. I don't want to reveal them to the user, but I want them in my error logs.

Whilst it is not a perfect solution, where a production site does display a stack trace it would be best to do so without all args being dispalyed.

The correct solution here would be display_errors = Off or properly configuring your framework’s error handler.

@iluuu1994 iluuu1994 added the RFC label Apr 1, 2025
@andrewnicols andrewnicols force-pushed the defaultExceptionIgnoreArgsOn branch from bb4f809 to 26496ab Compare April 3, 2025 01:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants