Got a malicious script on my WordPress site, randomly appearing and disappearing in my source code as
<script src="www.71wp.org/jquery.min.js></script>
I have custom designed footer.php file, I figured out that the script is getting echoed into the footer somehow, because if I delete from my footer, that's the only script that I have there then the malicious script won't appear anymore.
I have been using this to find the source of the virus, and so far no success. find . -name ".php" -exec grep "base64" '{}' \; -print &> b64-detections.txt find . -name ".php" -exec grep "eval" '{}' \; -print &> eval-detections.txt
Anyone might have any ideas how I can locate this script?