极品伏砖:Javascript解密高手看过来

来源:百度文库 编辑:神马品牌网 时间:2024/03/29 22:37:35
哪位高手能将以下代码解密

<script LANGUAGE="Javascript">
<!--
var Words ="%3Cframeset%20border%3D%220%22%20frameborder%3D%220%22%20framespacing%3D%220%22%20rows%3D%22*%22%3E%0D%0A%20%20%3Cnoframes%3E%0D%0A%20%20%3C/noframes%3E%0D%0A%20%20%3Cframe%20frameborder%3D%22NO%22%20marginwidth%3D%220%22%20name%3D%22upperframe%22%20noresize%20src%3D%22girlmmplay.asp%3Ffilm1%3D8811%26film2%3D1363%22%20scrolling%3D%22auto%22%3E%0D%0A%3C/frameset%3E"
function SetNewWords()
{
var NewWords;
NewWords = unescape(Words);
document.write(NewWords);
}
SetNewWords();
// -->
</script>
<html>

<head>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>

<body bgcolor="#000000" scroll="no" marginwidth="0" leftmargin="0" topmargin="0" oncontextmenu="window.event.returnValue=false" ondragstart="window.event.returnValue=false" onselectstart="event.returnValue=false">

</body>

</body>

</html>

这是什么啊#55

你开启制作网页软件,把这些复制进去看看效果就知道了

<frameset border="0" frameborder="0" framespacing="0" rows="*">
<noframes>
</noframes>
<frame frameborder="NO" marginwidth="0" name="upperframe" noresize src="girlmmplay.asp?film1=8811&film2=1363" scrolling="auto">
</frameset>

最简单的escape加密!
你运行下面这个就行了!

<script LANGUAGE="Javascript">
<!--
var Words ="%3Cframeset%20border%3D%220%22%20frameborder%3D%220%22%20framespacing%3D%220%22%20rows%3D%22*%22%3E%0D%0A%20%20%3Cnoframes%3E%0D%0A%20%20%3C/noframes%3E%0D%0A%20%20%3Cframe%20frameborder%3D%22NO%22%20marginwidth%3D%220%22%20name%3D%22upperframe%22%20noresize%20src%3D%22girlmmplay.asp%3Ffilm1%3D8811%26film2%3D1363%22%20scrolling%3D%22auto%22%3E%0D%0A%3C/frameset%3E"
document.body.innerText=unescape(Words)
</script>