Im finding unknown code in our live webpages. We also noticed couple of websites hosted on our shared web hosting space are mysteriously getting deleted.

The unknown code we found is displayedd below in image format. Kindly update us what kind of code is this and how can we avoid these code from getting added to our webpages.enter image description here

link|improve this question

Your site has been hacked through a code vulnerability. Take it down now , rebuild from known-clean backup (you have those, right?), find the security hole that was responsible, fix it; update to latest versions of relevant software. (just removing the hack won't help, the computer is now compromised and should be treated as such) – Piskvor Mar 3 '11 at 13:40
feedback

3 Answers

up vote 1 down vote accepted

Yep it looks like a backdoor identical to this one. I think thats an interesting post, it goes over the process of decoding it and bit on how to clean up your system.

link|improve this answer
What is permanent solution to this problem? Every few days we come across similar code in some of the sites hosted on a shared server – Swift Guy Mar 4 '11 at 10:50
@Swiftguy there can never be permanent solution, software will always be vulnerable to attack. You just have to keep your shit up to date. If your code that got hacked, learn the basics about writing secure code. – Rook Mar 4 '11 at 16:24
feedback

See if this helps you any: http://forum.joomla.org/viewtopic.php?p=2360137

link|improve this answer
feedback

You are likely to have the same or similar code/trojan/virus duplicated elsewhere on your server, even outside of your user account. See advice #3 below.

This is suspiciously looking like a RAT, since it executes the decoded base64_decode by invoking eval(base64_decode( "whole_bunch_of_obfuscated_stuff")); As you did not put that file there, zip it immediately!

Further advice:

  1. Note the creation date/time of this virus ; it will help you detect when/how you got infected.
  2. ZIP the file rather than deleting it, take it off the server, and send it to dev@thegothicparty.com for a RAT dissection.
  3. Search for other RAT on your system: execute a [~] grep -r "base64_decode" . as high up the directory tree as you can. See the article mentioned below for more details.
  4. Contact your provider. Under certain conditions, such a remote control tool can cross user accounts.

An article dedicated to RAT and Server RAT Infection is located on thegothicparty.com.

You can read it here: http://thegothicparty.com/dev/article/server-side-virus-rat/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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