up vote 5 down vote favorite
9
share [g+] share [fb]

I'm looking for a free JavaScript obfuscator. Would compression be enough? What tools would you recommend? Of course, I don't need military-style obfuscation, I need a simple way to prevent kiddies from stealing my javascript by looking at the source or by using something simple such as unescape().

Thanks, Tom

link|improve this question

feedback

closed as not constructive by casperOne Dec 15 '11 at 21:34

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

11 Answers

up vote 15 down vote accepted

Your problem is that no matter how much you compress it or hide it, eventually the browser has to interpret it. The best you can do is renaming all variables to meaningless random vars, and removing all comments and whitespace.

A few good tools:

link|improve this answer
Just like you can recognize structures and replace them as part of code optimization, you can recognize structures and replace them specifically to make code harder to follow. It tends to still be breakable, make things slower and use more ram, but companies sell tools to do it. – Louis Gerbarg Nov 7 '08 at 15:46
feedback

Or, you could just stop worrying about people "stealing" the source of your web page. Either you want it out there, or you don't. Why would you come to a web site that's all about helping people learn to code, to ask for help preventing people from learning from your code?

link|improve this answer
6  
1) "stop worrying" doesn't really answer my question; if this isn't a proper question, close it but don't just vote for someone who doesn't like the kind of question I've asked. 2) I'm pretty sure that only a few people from around here actually give ALL their code away for free. – Tom Nov 7 '08 at 15:23
1  
People vote up answers they think the OP should see. I wouldn't close a legitimate question just because this type of answer seems somewhat reasonable. There are plenty of real answers for you to choose from. – Bill the Lizard Nov 7 '08 at 15:44
2  
I really believe this answer is really not helpful. If he wants to obfuscate, than it's his problem. – Daok Nov 7 '08 at 16:18
2  
If it's "his problem", as you say, then why is this answer not helpful? Shouldn't other people with the same question see both sides of it? He still has the option of choosing the best answer for his situation. – Bill the Lizard Nov 7 '08 at 16:32
2  
@Daok: Code obfuscation is security theater, at least for JavaScript, because if the obfuscated code works for the OP, it works for the "thief" as well. Besides, if most of your "hard work" code is client-side JS, you're probably doing it wrong to begin with. – Coderer Nov 10 '08 at 17:22
show 7 more comments
feedback

You can use /packer/

http://dean.edwards.name/packer/

link|improve this answer
feedback

As a rule of thumb, do not use a obfuscator that uses eval since this will slow down your page, use a compressor that doesn't. This will provide obfuscation for newbies, anyone else will not be deterred by any obfuscator anyway.

Most obfuscators will create a strings representing the code in the end and then use eval, this can be undone by a simple alert statements, whats the point?

link|improve this answer
feedback

If you want simple obfuscation and excellent compression, I can recommend the YUI Compressor from Yahoo.

link|improve this answer
feedback

Check out For those looking - http://javascript-reference.info/javascript-obfuscators-review.htm - pretty good overview of JS obfuscators

link|improve this answer
feedback

I will second the recommendation for YUI Compressor as well, works very well and can compress and obfuscate, also makes recommendations on javascript coding.

link|improve this answer
feedback

I vote for Packer as well. There are online versions, Standalone Versions, and even a Console Version that I use to Automagically pack my javascripts when I build my web apps.

link|improve this answer
Why was this downvoted? – Tom Oct 11 '10 at 21:54
feedback

Try http://digua.sourceforge.net.

link|improve this answer
feedback

Try this, I think it's the best one: http://utenti.multimania.it/ascii2hex/

link|improve this answer
Warning : there are quite a few pop-ups / adds in there. – Matthieu Nov 22 '11 at 15:16
feedback

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