I have just had a series of these types of request - clearly a vulnerability probe looking for certain types of php page.
The format of the GET request seems to be designed to avoid any bot traps that I have set up in .htaccess using various RewriteRule statements.
This is the format of the latest attempt - the second of its type in the last week - but not one I've seen before - it is unedited - exactly as it appeared in the log:
"GET //newsletter/admin/index.php?_SERVER[ConfigFile]=../../../../../../../../../../../../../../../../../../../../../../../etc/passwd HTTP/1.1" 404 2321 www.mydomain.org.uk "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98)" "-"
My current Rewrite commands don't seem to catch these requests
- is it the double slash at the beginning that is the problem?
They are in this format:
RewriteRule ^/target.php /trap/trap.php [L]
Thanks in advance