I've been testing security for some php scripts and have found that, among other things, suhosin strips away a posted variable that is huge... this is fine and desirable, but I'd like for my script to be able to tell that suhosin changed the request.

Does suhosin leave any fingerprints to indicate that some action was taken -- in a way that the script can detect? I'm guessing it can't trigger something like an E_USER_WARNING, because that would be thrown before the script is running and could catch it. Maybe an environment or special global variable?

I tried a few approaches myself, but didn't see anything... perhaps suhosin needs to be configured to do this? I find the suhosin documentation to be, um, difficult to understand.

link|improve this question

80% accept rate
feedback

1 Answer

Yes it does, not fingerprinting, but logging: Suhosin Logging Configuration.

link|improve this answer
I knew about logging, but even now, after re-reading the docs, I still don't see how the current requested script knows about suhosin activity on its input. suhosin.log.phpscript.name would presumably be a separate script that would be run. Could you elaborate? – dlo Oct 15 '11 at 12:20
It doesn't specifically. But you could query that log with the time of the request, the remote IP and script name / request string for example. – hakre Oct 15 '11 at 12:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.