vote up 12 vote down star
2

One of my custom developed asp.net sites was hacked today: "Hacked By Swan ( Please Stop Wars !.. )" It is using asp,net and SQL Server 2005 and IIS 6.0 and Windows 2003 server. I am not using Ajax and I think I am using stored procedures everywhere I am connecting to the database so I dont think it is sql injection. I have now removed the write permission on the folders.

How can I find out what they did to hack the site and what to do to prevent it from happening again?

The server is up to date with all windows updates.

What they have done is uploading 6 files (index.asp, index.html, index.htm,...) to the main directory for the website.

What log files should I upload? I have log files for IIS from this folder: c:\winnt\system32\LogFiles\W3SVC1 I am willing to show it to some of you but dont think it is good to post on the internet. Anyone willing to take a look at it?

I have already searched on google but the only thing I find there are other sites that have been hacked - I havent been able to see any discussion about it.

I know this is not strictly related to programming but this is still important thing for programmers and a lot of programmers have been hacked like this.

flag

60% accept rate
Seems like a valid question to me... – Ian Hopkinson Nov 21 '08 at 11:00
I also thing this is a very valid and relevant question. I have updated the title to perhaps improve. – Rob Cooper Nov 21 '08 at 11:25
The updated question is a vast improvement... – Dan Vinton Nov 21 '08 at 12:10
Edited tags so that question shows up on more generalised feeds. 'swan' isn't exactly a category tag that hits anyone's radar. – George Stocker Nov 21 '08 at 12:52
Is this a custom developed ASP.NET site or do you use some framework or CMS package? – spoulson Nov 21 '08 at 13:09
show 1 more comment

6 Answers

vote up 2 vote down

Well, for starters:

  • Have you patched your server?
  • Do you have lingering remnants of things like FrontPage Extensions, Office extensions for web, etc.?
  • Have you made sure you don't have SQL Injection vulnerabilities?
  • Have you googled for that text, "Hacked by swan"? There's many hits, perhaps one of them has figured out his entrance

If you do have, or is unsure about, wether you have SQL Injection problems or not, then you can ask further here, but otherwise I would get some security experts to help you.

This is indeed a programming site, so unless your problem is programming-related, it will most likely be closed again.

link|flag
1. Yes 2. I think I have removed all extensions. 3. I am using procedures so I think that is not the problem. 4. Yes I have - havent found anything useful. – Imageree Nov 21 '08 at 23:14
vote up 0 vote down

The first thing you should do is check your log files. You could paste them here,and we'll tell you if we recognize an attack .

link|flag
vote up 5 vote down

IIS Process

Check that your ASPNET process does not have privilage to write files on the server. If you need the process to have write permissions, allow them only to do so on a specific folder, and deny execute permissions on that folder for all User accoutns.

SQL Injection

To see people looking for SQL vunrabilities have a look in your log files for the following text, "CAST(".

Do you have any places where you build up SQL in the code behind to query the database? These can be prone to SQL injection attacks. By replacing code such as the following you will be more safe.

Dim strSQL As String = "Select * FROM USERS Where name = '" & Response.Querystring("name") "'"

then consider an alternative like the following.

Dim strSQL As String = "Select * FROM USERS Where name = @name"

and then adding the corresponding SQL PArameter to the sql command.

link|flag
vote up 1 vote down

You might want to give try using a penetration toolkit like metasploit to discover any obvious wholes.

Also, please post your log files if they are untampered with.

link|flag
1. I am not sure how to use toolkit like metasploit. – Imageree Nov 21 '08 at 23:16
vote up 1 vote down

Hopefully you've had your IIS logfiles turned on and hopefully the hacker didn't erase them. By default they're located here: c:\winnt\system32\LogFiles\W3SVC1 and will generally be named after the date.

Then it's probably helpful to figure out how to use log parser (from Microsoft), which is free. Then use this guide to help you with looking forensically at your logfiles. Do you have a firewall because it's syslogs might be helpful.

Another decent tool to help you find sql injection issues is to go here and download HP's Scrawlr.

If you have any more questions about what you've found, come back and ask.

link|flag
+1 for the Log Parser page. It is a great resource. – Flory Nov 21 '08 at 15:36
vote up 11 vote down

It appears that the attack on your website was part of a mass defacement carried out by SWAN on 21 November, 2008 against Windows 2003 and Windows 2000 boxes running IIS 6.0. Others here have suggested a number of things. I would only add that whenever you decide to bring up the website, please format the box and reinstall from scratch. Once a box is compromised, it cannot be trusted, at all, however you clean and purify it.

link|flag
I would like to reiterate what ayaz says....Rebuild the web server from scratch after you've taken it off-line to study it forensically. This webserver cannot be trusted once it's been compromised. The only safe route is to reimage it. – GregD Nov 21 '08 at 13:12

Your Answer

Get an OpenID
or

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