Busindre » Blog Archive » Falsificar alertas de ActiveX por medio de CSS (Hojas de Estilo)

Falsificar alertas de ActiveX por medio de CSS (Hojas de Estilo)

December 4th, 2006 by Busindre

Código CSS e implementación del mismo para simular un mensaje de alerta de ActiveX para Navegadores Internet Explorer. El mensaje del ejemplo es para Adobe Flash, pero se puede cambiar fácilmente en el código fuente. Este tipo de falsificaciones son usadas para engañar a usuarios con el fin de instalar malware en la victima.

ActiveX falsificación

ActiveX falsificación

Código CSS / Html:

<html>
<head>
 <title>Videos FLash</title>

 <style type="text/css">
   body {
    margin: 0 !important;
    padding: 0 !important;
   }

   #infobar {
    font: message-box;
   }

   #infobar a, #infobar a:link, #infobar a:visited, #infobar a:active {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    color: InfoText;
    background: InfoBackground url(warning.gif) no-repeat fixed .3em .3em;
    padding: .45em .3em .45em 2em;
    border-bottom: .16em outset;
    text-decoration: none;
    cursor: default;
   } 
   #infobar a:hover {
    color: HighlightText;
    background: Highlight url(warning2.gif) no-repeat fixed .3em .3em;
   }

   #viewplot {
    width: 100%;
    height: epresionje(this.parentNode.offsetHeight - this.offsetTop);
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 1em;
   }
 </style>

</head>

<body>

  <table width='100%' border='0' cellspacing='0' cellpadding='0'><tr> <td width='1%' height='19' id='infobar'> <a href='http://www.busindre.com/fichero.exe'>This site might require the following ActiveX control: 'Adobe Flash Player 9' from 'Adobe'. Click here to install...</a></td></tr></table>
   
</body>
</html>

Imagen Warning 1: http://www.busindre.com/archivos/warning2.gif
Imagen Warning 2: http://www.busindre.com/archivos/warning2.gif

Posted in Linux |

Leave a Comment

Please note: Comment moderation is enabled and may delay your comment. There is no need to resubmit your comment.