I have a virus that has infected thousands of files on one of my client's server.
Fortunately, I have dealt with a lot of other malware on this guy's server and this one looks easy to do simple regex on (he put all his websites on the same account :( but I'm working with him to resolve that).
Basically though, unlike most malware I have seen where it injects php BEFORE the closing ?> of the GOOD code (making it very hard to determine whats good code/bad code), this current malware ALWAYS adds a new <?php ... malware ... ?>.
So basically, say there's good code here:
<?php
require('./wp-blog-header.php');
?>
Instead of adding some kind of base64_decode eval immediately after the require statement but before the ?> (which can make removal difficult when the page happens to end in a conditional/complex statement), this will always add the following code with a NEW <?php ... ?> like so:
<?php
require('./wp-blog-header.php');
?><?php ... malware ...?>
I don't want to put any malicious code up here but, this is how the malicious code always starts:
<?php @error_reporting(0); if (!isset($eva1fYlbakBcVSir)) {$eva1fYlbakBcVSir = "tons and tons of characters";$eva1tYlbakBcVSir = "\x6335\1443\3x6f\1534\x70\170\x65";$SNIPSNIPSNIPSNIP;} ?>
I'd like to search every file for <?php @error_reporting(0); if (!isset and if it's the last PHP statement on the page, then delete everything within the

:(. – halfer May 2 '12 at 22:27sedis your friend.sed -e "s/<?php @error_reportin.*?>//g" --in-place=_cleaned *this will remove the given pattern from all files (*) and store original files with the extension_cleaned. But please make a backup first!! and readman sedfor your particular system. – mvds May 2 '12 at 22:30