This might be old news to many of you but it's new to me...
I was chugging through some 404 reports today and spotted this:
I took a look at the script, and even ran it from another site and found that it's trying to look for vulnerabilities.
The script it's asking for is common in CMS and carts. It tries to find info and to write to the shell.
If you have a script called include_once.php I would recommend changing it to something like this
<?
if (substr($include_file,0,4)!='http')
{
//original code
if (!defined($include_file . '__'))
{
define($include_file . '__', 1);
include($include_file);
}
//end of original code
}
else include '/home/sitename/public_html/404.php';
?>
He's also been asking for
Any other ideas?
Sarah