Skip to content

Instantly share code, notes, and snippets.

@autovalue
Last active January 26, 2023 20:27
Show Gist options
  • Save autovalue/242b481c231308c85dbe2c7cb95e0ae2 to your computer and use it in GitHub Desktop.
Save autovalue/242b481c231308c85dbe2c7cb95e0ae2 to your computer and use it in GitHub Desktop.
JsFuck Unfucker | UnJsFuck | JsFuck decoder | JsFuck deobfuscate
/**
* Based off https://codegolf.stackexchange.com/questions/28714/convert-jsfuck-to-normal-js
**/
var UnJSFuck = {
decode: function(jsFuckCode){
return /\n(.+)/.exec(eval(jsFuckCode.slice(0,-2)))[1];
}
};
@wissemkarous
Copy link

Hey

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment