![]() |
how do i hide or encrypt a java script?
I have a javascript and want to hide or encrypt the source of it. Whats the easist way to do this?
|
You don't.
|
javascript -> clientside.
you can only obfuscate it... |
cheater!!!!!!!!!!1
You encrypt js w/ js.. |
im not cheating, i am hiding the script i paid $50 for from other's trying to steal it it
|
rewrite it into php and use config.inc to hide it =p
|
you could also source it (script src=____) and then put htaccess restrictions on the src file so that the referrer has to come from your server.. That way they won't be able to read it inline and they wont be able to download the src file.
|
Once upon a time, a long time ago, I ran accross a script that I wanted to view. When trying to 'copy' the script to a temporary location in order to view it, I instead got an error that I was not authorized. Even though the script appeared in the temporary internet directory I was unable to access it. I believe the server admin had apparently setup the htaccess to only allow the script from the host url.
At least on a winders box, you first have to copy the file from the temp inet dir to a location where you can view the content. That 'copy' attempt appears to retrieve the original file from the server, hence the htaccess solution. I don't know if this is correct because I never pursued it, nor tested it. But you rekindled my interest. I'd appreciate you lettin' me know if get it to work. |
Quote:
|
bump 8
|
you can't, anyone that's been on the internet for more than 2 days will be able to decrypt no matter what you do in 5 mins...
|
how about the htaccess command
|
Quote:
|
whats the internet again ????
|
The definite answer is: there is no 100% safe method for encrypting or hiding your javascript or html code.
Why? These are scripting and markup languages which means that for any browser to understand, display and/or run them it MUST have the source, and if there is a way for the browser to get it, there sure is a way for a (experienced) user to get it! However, this doesn't mean that you can't make code-stealing (much) more difficult: 1) You can use javascript to disable the right mouse button (easily disabled in some browsers) 2) You can use the .htaccess file to limit the referer (again, some browsers can fake the referer variable, or a simple php script will do the trick of fooling the server that the allowed referer was used) 3) You can encrypt your script using a javascript function, add the encrypted script along with a decryption function to your html, but have that function written 'escaped' and than just "eval(unescape(name_of_your_decrypting_function)); " -- If you want to see how this works look at the source of http://www.protware.com/e_demo.htm (Personally, I find this solution to take most time to 'break' especially is customized encryption script is used, but again a not so complex js will "decrypt" this in a snap) ...) can't think of any more right now Using 1+2+3+... obviously is the best solution if you're willing to spend that much time on hiding the code. Besides, if you bought that code, there is probably hundreds of other sites where someone can find that code -- this is actually something the maker/owner of the code should worry about. Regards |
Quote:
|
| All times are GMT -7. The time now is 03:20 AM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2026, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123