How to make a fake html virus (IE)

Posted by Unknown on 22:26 with No comments

How to make a fake html virus (IE)




Creating an html fake virus is very simple...just need to learn some javascript...
1. Open notepad...
2. Type the following code
     <html>
<head>
<script>
function openWin()
{
myWindow=window.open("","","width=200,height=100");
myWindow.document.write("<p>This is 'myWindow'</p>");
}

</script>
</head>
<body onmouseover="openWin()">

</body>
</html>
.
.
3. Save it with extension 'htm' or 'html'.
4. Open it using IE..
.
.
I don't know whether it works with other browsers....

Categories: