Created
July 23, 2015 20:21
-
-
Save nstarke/bd4ffab0f1231e889c4c to your computer and use it in GitHub Desktop.
simple js obfuscation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function rewrite(text) { | |
var obs = ""; | |
for (var i = 0; i < text.length; i++) { | |
obs += "(function() { return String.fromCharCode(" + text[i].charCodeAt(0) + "); })() + "; | |
} | |
obs += ' ""'; | |
return obs; | |
} | |
var n = rewrite('console.log("test")'); | |
eval(eval(n)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment