步骤:1.新建html页面,把以下代码考进去,运行。 2.把加密的代码粘进文本域,点击解密,OK! 核心代码:
<script> <br>a=62; <br>function encode() { <br>var code = document.getElementById('code').value; <br>code = code.replace(/[\r\n]+/g, ''); <br>code = code.replace(/'/g, "\\'"); <br>var tmp = code.match(/\b(\w+)\b/g); <br>tmp.sort(); <br>var dict = []; <br>var i, t = ''; <br>for(var i=0; i<tmp.length; i++) { <BR>if(tmp[i] != t) dict.push(t = tmp[i]); <BR>} <BR>var len = dict.length; <BR>var ch; <BR>for(i=0; i<len; i++) { <BR>ch = num(i); <BR>code = code.replace(new RegExp('\\b'+dict[i]+'\\b','g'), ch); <BR>if(ch == dict[i]) dict[i] = ''; <BR>} <BR>document.getElementById('code').value = "eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)d[e(c)]=k[c]||e(c);k=[function(e){return d[e]}];e=function(){return'\\\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\\\b'+e(c)+'\\\\b','g'),k[c]);return p}(" <br>+ "'"+code+"',"+a+","+len+",'"+ dict.join('|')+"'.split('|'),0,{}))"; <br>} <br><br>function num(c) { <br>return(c<a?'':num(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36)); <br>} <br><br>function run() { <br>eval(document.getElementById('code').value); <br>} <br><br>function decode() { <br>var code = document.getElementById('code').value; <br>code = code.replace(/^eval/, ''); <br>document.getElementById('code').value = eval(code); <br>} <br></script>
Statement: The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn