DECOMPRESS JAVASCRIPT
It is IMPOSSIBLE to hide compressed code.
Typical JavaScript compressed with / packer / starts with the following code:
`eval(function(p,a,c,k,e,r)`β¦ `eval` can simply be replaced by `alert`.
The eval function evaluates a string argument containing JavaScript. Most packers use eval and then document.write .
To unpack JavaScript, replace these methods with one of the following:
1. Replace eval with alert (For example: alert(function(p,a,c,k,e,r) ... and open or refresh the html page, the warning will simply print the code in a pop-up window)
2. If JavaScript appears after the <body> element, you can add <textarea> like this:
`<textarea id="code"></textarea>`
Then replace eval (...); on document.getElementById("code").value=β¦;
Of both options, the first is simpler ... Good luck :)
Username
source share