Possible Duplicate:
My server's been hacked EMERGENCY
my php based website got infected with malware, which added something like this in the code:
<?php eval(base64_decode("DQplcnJvcl9yZXBvcnRpbmcoMCk7DQokcWF6cGxtPWh));
Now i want to replace all the "eval(" till its ending braces "));" with space or delete all those occurences, either with sed or other tools.
i have tried this
sed 's/eval\*/ /g' code.php
But its not working.
What can be its solution?
Thanks in advance.