Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working for a client wordpress website, one day I see that in the header file this code is written

<div id='hideMe'>
<p><i> Military Payday Loans Online <a href="http://NotAdvertisingTheURL.com/">Military Payday Loans Online</a></div>
 <script type='text/javascript'>if(document.getElementById('hideMe') != null){document.getElementById('hideMe').style.visibility = 'hidden';document.getElementById('hideMe').style.display = 'none';}</script>

With the addition of this code my client site shows italic font, which is terrible.

How can i avoid this kind of hack to my client website.

share|improve this question
First and foremost you need to figure out how they were able to modify your files. The point of entry could be a vulnerable plugin, outdated version of wordpress, vulnerable form, or something else all together. – Jrod Jan 23 at 20:09
2  
I think you should talk to an expert if you're dealing with clients. – markus Jan 23 at 20:20
I have tried many ways to find out how they edit the file, I have searched all the files for javascript code and also i see in the database, but i didn't find any thing. – Waheed ur Rehman Jan 23 at 20:56
why one is voting down for my question? – Waheed ur Rehman Jan 23 at 20:57
@WaheedurRehman: I didn't downvote you, but I suspect it's because it isn't a really good fit for Stack Overflow. You might be better off in asking in a WordPress forum – Matt Burland Jan 23 at 20:59
show 3 more comments

closed as off topic by Andrew Barber, Pragnani, Richard Cook, Stony, ppeterka Mar 1 at 10:09

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 4 down vote accepted

Aside from yoiur question being contrary to the SO FAQ (hacking questions are not programming questions):

This is a very common hack going around on GoDaddy servers: http://wordpress.org/support/topic/entire-site-suddenly-in-italics-1?replies=38

Work your way through these resources and follow all instructions to completely clean your site or you may be hacked again. See FAQ: My site was hacked « WordPress Codex and How to completely clean your hacked wordpress installation and How to find a backdoor in a hacked WordPress and Hardening WordPress « WordPress Codex.

Change all passwords. Scan your own PC. Use http://sitecheck.sucuri.net/ before and after.

Tell your web host you got hacked; and consider changing to a more secure host: Recommended WordPress Web Hosting

share|improve this answer

I had the Payday Loans hack inserted into my WordPress install on Godaddy hosting. This was a client's site. Godaddy is NOT my choice. They had it prior to contracting me.

I found code at the very top of my theme's functions.php file. Deleting it completely removed the Payday Loans code insertion into my pages.

The code looks like this:

<?php function callbackx($buffer)...batch of code here...buffer_endx'); ?>

I simply deleted the entire block of code at the top of functions.php.

In addition to that code I found two .php files in my theme's cache directory. They were binary. I removed those as well.

It was easy to find the offending cache files as they showed up at the top of the templates list for my theme. You can see them via the Wordpress dashboard menu using Appearance > Editor.

I hope this helps someone else trying to figure out what happened to their Wordpress site on GoDaddy hosting.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.