Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking to use a javascript obfuscator. What are some of the most popular and what impact do they have on performance?

share|improve this question

closed as not constructive by Robert Harvey Sep 7 '11 at 22:34

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

9 Answers

up vote 12 down vote accepted

Yahoo has a pretty good one. It's technically a minifier, but it does a nice job of obfuscating in the process.

YUI Compressor

share|improve this answer
Compressed and obfuscated via YUI Compressor online for free here: refresh-sf.com/yui – NexusRex Dec 11 '12 at 7:13

I've always found the best way to obfuscate Javascript is to get your most clueless team member to write it. It's pretty much guaranteed that they'll write some unreadable mess.

share|improve this answer
3  
hahahahahahahah – almosnow Feb 14 '12 at 19:14
+1 for making my day – Juan Nov 25 '12 at 17:11

Nowadays it seems to be JScrambler. It has a nice set of features for free. I tried and it worked out of the box with a few clicks. Other js obfuscators I tried seemed too unsophisticated or frustrating to work with.

The premium features, such as Domain Lock and Expiration Date seem to be way ahead of what other tools offer. Also, there's an API in the works to automate obfuscation.

share|improve this answer

Well, google brought up this as the first link:

http://www.javascriptobfuscator.com

But I wonder what good obfuscation of javascript does. Whatever it is you're doing in javascript that needs obfuscation should probably be done server-side anyway, right?

share|improve this answer

I've never used obfuscator in production, but I've tested JavaScript Utility and it seems pretty good.

As for the performance, obfuscated code must be unpacked on the fly each time the page is loaded. Might not be a problem for small scripts, but the unpacking time will be significant with bigger files. On the other hand, minified code is directly executable by the browser.

Some obfuscators might produce output that does not run in older or less common browsers. You should test very carefully with the browsers you plan to support.

share|improve this answer
Obfuscators don't require any code unpacking. Other schemes for minimizing the code might require that, but obfsucation by itself does not. – Ira Baxter Sep 7 '09 at 9:28
I agree that I got obfuscation and packing mixed up here. Packing is a common approach to obfuscate JS, but its main purpose is to decrease the size of the script file. – Tsvetomir Tsonev Sep 13 '09 at 8:05

Tested 8 different obfuscators (except www.javascriptobfuscator.com), and was amazed by how much they all suck. Ended up writing my own obfuscator using regular expressions. Enjoy:

static Dictionary<string, string> names = new Dictionary<string, string>();
static bool testing = false;
static string[] files1 = 
    @"a.js,b.js,c.js"
    .Split(new string[] { Environment.NewLine, " ", "\t", "," }, StringSplitOptions.RemoveEmptyEntries);
static string[] ignore_names = 
    @"sin,cos,order,min,max,join,round,pow,abs,PI,floor,random,index,http,
    __defineGetter__,__defineSetter__,indexOf,isPrototypeOf,length,clone,toString,split,clear,erase
    RECT,SIZE,Vect,VectInt,vectint,vect,int,double,canvasElement,text1,text2,text3,textSizeTester,target,Number
    number,TimeStep,images,solid,white,default,cursive,fantasy,".
  Split(new string[] { Environment.NewLine, " ", "\t", "," }, StringSplitOptions.RemoveEmptyEntries);
string[] extra_names = @"a,b,c".Split(new string[] { Environment.NewLine, " ", "\t", "," }, StringSplitOptions.RemoveEmptyEntries);
string src = @"C:\temp";
string dest1 = src + "\\all1.js";
string dest2 = src + "\\all2.js";

static void Main()
{
  File.Delete(dest1);
  File.Delete(dest2);
  foreach (string s in files1)
    File.AppendAllText(dest1, File.ReadAllText(src + "\\" + s) + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine + Environment.NewLine, Encoding.UTF8);

  string all = File.ReadAllText(dest1);
  int free_index = 0;

  foreach (string s in extra_names)
  {
    free_index++;
    string free_name = "" + (char)('A' + (free_index % 25)) + (char)('A' + ((free_index / 25) % 25));
    Debug.Assert(free_name != "AA");
    names.Add(s, free_name);
  }

  Regex reg1 = new Regex("(var |function |\\.prototype\\.)([a-zA-Z0-9_]+)");

  int startat = 0;
  while (startat < all.Length)
  {
    Match match = reg1.Match(all, startat);
    if (!match.Success)
      break;

    string key = all.Substring(match.Groups[2].Index, match.Groups[2].Length);
    if (!ignore_names.Contains(key))
    {
      free_index++;
      string free_name = "" + (char)('A' + (free_index % 25)) + (char)('A' + ((free_index / 25) % 25));
      Debug.Assert(free_name != "AA");
      if (!names.ContainsKey(key))
        names.Add(key, testing ? key + free_name : free_name);
    }
    startat = match.Groups[0].Index + match.Groups[0].Length;
  }

  Regex reg2 = new Regex(@"/\*.*\*/", RegexOptions.Multiline);
  Regex reg3 = new Regex("([^:\\\\])//.*\r\n");
  Regex reg4 = new Regex("([a-zA-Z0-9_]+)");
  Regex reg5 = new Regex("(\r\n)*[ \t]+");
  Regex reg6 = new Regex("(\r\n)+");
  all = reg2.Replace(all, eval2);
  all = reg3.Replace(all, eval3);
  all = reg4.Replace(all, eval4);
  all = reg5.Replace(all, eval5);
  all = reg6.Replace(all, eval6);
  File.WriteAllText(dest2, all);
}

public static string eval4(Match match)
{
  return names.ContainsKey(match.Groups[1].Value) ? names[match.Groups[1].Value] : match.Groups[0].Value;
}
public static string eval5(Match match)
{
  return string.IsNullOrEmpty(match.Groups[1].Value) ? " " : Environment.NewLine;
}
public static string eval6(Match match)
{
  return Environment.NewLine;
}
public static string eval2(Match match)
{
  return " ";
}
public static string eval3(Match match)
{
  return match.Groups[1].Value + Environment.NewLine;
}
share|improve this answer
5  
Why do "they all suck"? What issue does your code solve? – frenchie Mar 5 '12 at 1:53
@frenchie Well, for one, paste obfuscated javascript generated with those "sucky" obfuscators in to the JavaScript beautifier at jsbeautifier.org and watch it be un-obfuscated instantly. – trusktr Apr 13 at 7:31
@AareP, can you provide some sample transformations? – trusktr Apr 13 at 7:32

You could also try the JavaScript Compressor written by Dean Edwards.

share|improve this answer

Packer with base62

http://dean.edwards.name/packer/
https://github.com/jcoglan/packr <= ruby version

share|improve this answer
Try pasting obfuscated code generated with this into jsbeautifier.org and see it rewritten like the original. – trusktr Apr 13 at 7:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.