Advertisement
Kasha

Fake anti-virus looks like your OWN AV!

Apr 10th, 2012
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. Came across this page today while search for something on the net. It is a page that tries to make you think your computer is infected and that it is your own anti-virus telling you. It is not however but instead is an image that comes up based on what anti-virus it detects that you are using.
  2.  
  3. Here is the source code from the page:
  4.  
  5. <html>
  6. <head>
  7. <title>Viruses were found on your computer!</title>
  8. <script>
  9. window.moveTo(0,0);
  10. window.resizeTo(screen.width,screen.height);
  11. </script>
  12. <script>
  13. var ask=1;
  14. var text='Viruses were found on your computer.\nYou need to clean your computer to prevent the system crash.';
  15. function al(){alert(text);}
  16. window.onbeforeunload=function (){if (ask==1){return text;}}
  17. </script>
  18. </head>
  19. <body topmargin=0 leftmargin=0 bgcolor='#FFFFFF'>
  20. <table cellspacing="0" cellpadding="0" border="0" width="100%" height="99%">
  21. <tr valign="middle" align="center"><td>
  22. <img id="al" src="images/alert.png" width="617" height="345" border="0" usemap="#map">
  23. <map name="map">
  24. <area shape="rect" coords="544,12,593,33" onmousedown='al();'>
  25. <area shape="rect" coords="480,287,578,308" href='download/' style='cursor:point' onmousedown='ask=0;'>
  26. </map>
  27. </td>
  28. </tr>
  29. </table>
  30. <script>al();</script>
  31. </body>
  32. </html>
  33.  
  34. There is a copy of this image on imgur not uploaded by the scammers but by scam investigators. They added a warning on it so that it can't be used on similar pages:
  35. http://i.imgur.com/XzmDH.png
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement