Today at 1:12 PM index.php, wp-admin/index.php and wp-content/index.php files changed "itself".
My guess is I was hacked but basically there is no harm done just some number buffered at the end of each page.
<?php
ob_start("security_update"); //do not remove this line - important security update!
.
.
.
function security_update($buffer)
{
$update = '4294967295';
if (stristr($buffer, '</html') !== FALSE)
{
return eregi_replace('</html', $update.'<html', $buffer);
}
else
{
return $buffer.$update;
}
}
Anyone experienced something like this?