WordPress blog infected with HTML Refresh meta tag

后端 未结 5 693
有刺的猬
有刺的猬 2021-01-03 08:53

Hello StackOverflow community. I have a very interesting (at my opinion) infection to share with you today.

4-5 days ago I realized that my blog\'s homepage after so

5条回答
  •  春和景丽
    2021-01-03 09:54

    Good answer above. To add to it, I recommend using grep to anyone who has trouble searching for the code :

    grep -nr 'http://spamcheckr.com/l.php' /www/wordpress/wp-content
    

    If you don't have grep and cant access your server (windows users) download it or use findstr :

    findstr /s /i /p "http://spamcheckr.com/l.php" /www/wordpress/wp-content
    

    (Dont forget to change /www/wordpress/wp-content to the location or your wordpress folders

提交回复
热议问题