vote up -5 vote down star

plz help me to solve this problem. thank u very much.

flag
2  
what you mean by secure? – Eldar Djafarov Aug 21 at 10:24
1  
Please rephrase your question into coherent sentences, thanks. – DisgruntledGoat Aug 21 at 10:36
If you want to keep it secure, don't send it to your visitors! Otherwise, no chance! – Workshop Alex Aug 21 at 10:46

closed as not a real question by balpha, Marc Gravell Aug 21 at 10:42

6 Answers

vote up 1 vote down

You can at the maximum obfuscate it. But won't be secure.

There are many obfuscating tools available.

Take a look at

YUI Compressor

Jsmin

link|flag
vote up 0 vote down

No JavaScript file will ever be secure. At best, you can obfuscate, but this can be reverse engineered.

A relevant discussion on the topic

link|flag
vote up 0 vote down

Not quite an obfuscator (it is designed to make JS smaller), but something like JSMin might be useful to you.

By using JavaScript as a technology choice you must be happy that people can view the code.

Using JSMin will certainly make it harder for someone to understand your JavaScript. It also has the added bonus of making your pages smaller (that's it real purpose).

link|flag
vote up 0 vote down

Not sure what you mean by "secure", but javascripts can be downloaded easily. Obfuscating the javascript code might help a bit, but I general see this as a bad idea, as anyone who really wants to understand your code can do it.

If you don't want others to see your code, maybe you can put some of the logic on server side, using PHP or any other language.

link|flag
vote up 0 vote down

It's not possible, as already suggested the best thing you can do is obfuscate it. You can make it harder for people to get to it by referencing external js files and separating the code up and referencing them inside eachother so they are having to bounce about multiple files. However, I think all in all...its just not worth the hassle!

link|flag
vote up 0 vote down

I don't know what you mean by 'secure', but if you're talking passwords and such, forget about it. JavaScript is client-side, which means it is readable by the user whatsoever. There are tricks to make it harder for a user to obtain your script file (and subsequently, to understand it), but they'll never solve it all. Simply having FireBug allows you to retrieve all the code on the current page, after which 'de-obfuscation' is just a matter of time.

Long story short: don't put sensitive data in JavaScript. It's not secure.

link|flag

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