I use suhosin. I get the following alerts.

ALERT-SIMULATION - tried to register forbidden variable '_REQUEST' through GET variables (attacker
ALERT-SIMULATION - tried to register forbidden variable '_REQUEST[option]' through GET variables (attacker
ALERT-SIMULATION - tried to register forbidden variable '_REQUEST[Itemid]' through GET variables (attacker
ALERT-SIMULATION - tried to register forbidden variable 'GLOBALS' through GET variables (attacker

Are they real attackers? If not, how to set suhosin configuration to ignore these alert?

link|improve this question

71% accept rate
feedback

1 Answer

Those are not necessarily "attacks," but rather tests/prodding of your site to determine if they (the potential attacker) can inject code though register_globals being enabled.

The uri's used to produce those errors are as follows

http://www.example.com/index.php?_REQUEST=someValue
http://www.example.com/index.php?_REQUEST[option]=someValue
http://www.example.com/index.php?_REQUEST[ItemId]=someValue
http://www.example.com/index.php?GLOBALS=someValue

Do you have register_globals set to on?

That IP traces to ATL: http://www.ip-adress.com/ip_tracer/

link|improve this answer
Thanks, the IP is actually our own server. To remove these alerts, how to do suhosin configuration? What is register_globals? – chnet Aug 5 '11 at 2:39
Yikes to "What is register_globals" ... read my post on what register globals is and how it can be exploited: dan.doezema.com/2010/04/php-register-globals-overview after that find out what you need to configure here: hardened-php.net/suhosin/configuration.html – Daniel Doezema Aug 5 '11 at 3:12
I like the post. It is very useful. However, I still do not figure out how to set in suhosin configuration. I do not see any setting related with the alerts. Any hints? – chnet Aug 5 '11 at 14:55
We set register_globals off. – chnet Aug 7 '11 at 2:10
feedback

Your Answer

 
or
required, but never shown

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