Last active
August 29, 2015 14:11
-
-
Save javikalsan/2bc26fc086d9807faace to your computer and use it in GitHub Desktop.
Simple linux command to detect if your wordpress template-loader.php has been modified by soak soak malware
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find /var/www -name template-loader.php -exec egrep -Rw 'wp_enqueue_script("swfobject");' {} \; | |
# assuming /var/www is your web projects folder | |
# also you can check online in: http://sitecheck.sucuri.net/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment