js rapid decryption of the code eval

Js code section as follows:

eval (function (E, I, A, D, J, K, L, H) {function C (A) behind the content thereof is omitted ...

Decrypting method may be employed:

 method one:

Open the Google browser, press F12, the eval copy the code and paste in the Console window, press Enter to run, you can went to the source.

Method two:
Create a html file, to replace the above document.write output to eval.
Note, plus front and rear xmp tag is the role of the complete output html tags, and without any escaping.

<html>
<head>
<title>eval解密</title>
</head>
<body>
<script type="text/javascript">
document.write("<xmp>");

document.write(function(E,I,A,D,J,K,L,H){function C(A)后面内容省略。。。

document.write("</xmp>");
</script>
</body>
</html>

 

Guess you like

Origin blog.csdn.net/gdjlc/article/details/85091156