SoFunction
Updated on 2025-04-10

Internet Explorer6 latest vulnerability code

Use the code as follows:

<script type="text/jscript">
function init() { 
("The time is: " + Date() );

}
 = init;
</script>


This code can hide the html code in front of the web page. After running, you can only see the code executed in the javascript statement.
And after refreshing, you can no longer see the source code of the website, and you can use JavaScript to execute arbitrary code.
It is actually the best opportunity to not miss when hanging a horse.


Test method:


<h1>ncph of something<i>before</i></h1> 
<br> the <b>JavaScript</b>... ncphncph


<script type="text/jscript">
function init() { 
("The time is now: " + Date() );

}
 = init;
</script>

And <u>ncph of something</u> after the <b>JavaScript</b>


Save the above code as the html page to see.
If you only see the above time, it proves that your ie also has this loophole. (What about the previous and subsequent codes? ^.^)
I believe that anyone who knows a little bit of html language knows how to use it.
Now more than 90% of ie have this loophole.
The test passed in xp sp2 2000 sp4 2003sp1.

by rose of ncph studio