Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

can i deny the firebug extention to protect my .js files on my website? how can i do that?

  • 2 پاسخ
  • 3 have this problem
  • 4 views
  • آخرین پاسخ توسّط a1ex_sinner

more options

In the tab "html" witch in Firebug panel everyone who want's can see the content of my javascript.

I did like this, but the Firebug still tricking script.

function do (style) { if(navigator.userAgent.indexOf('MSIE')==-1) { var scr=document.createElement('script'); scr.type='text/javascript'; scr.src='js/style/'+style+'.js'; } else { var scr=document.createElement("<script type=\"text/javascript\" src=\"js/style/"+style+'.js'+"\"></"+"script>"); } document.documentElement.getElementsByTagName('HEAD')[0].appendChild(scr); }

do("fill"); do("fcats");

In the tab "html" witch in Firebug panel everyone who want's can see the content of my javascript. I did like this, but the Firebug still tricking script. function do (style) { if(navigator.userAgent.indexOf('MSIE')==-1) { var scr=document.createElement('script'); scr.type='text/javascript'; scr.src='js/style/'+style+'.js'; } else { var scr=document.createElement("<script type=\"text/javascript\" src=\"js/style/"+style+'.js'+"\"></"+"script>"); } document.documentElement.getElementsByTagName('HEAD')[0].appendChild(scr); } do("fill"); do("fcats");

All Replies (2)

more options

It's hopeless. Because the JavaScript code must be sent to the browser in order to run, you can't prevent sophisticated users from seeing it.

Firebug isn't even necessary: the page source can be viewed by pressing Ctrl+u and if the JavaScript is in a separate file, clicking the link to the file in the <script> tag will display it. When you add the script dynamically, it still can be viewed using the Web Developer extension or the DOM Inspector extension. The file probably is in the cache as well.

Many people "minify" their script code, which makes it extremely difficult to read. However, some people still can make sense of it. (I'm not one of them.)

What's so important to hide, anyway?

more options

Yes, it's very important to hide it.

I did some settins in .htaccess so if someone trying to access script by using the path nothing is displaying. Also this method doesn't show the content inside <script...>" and "</script>" when you viewing the page source (except Firebug).

Cache is denied by http-headers.

I already thought about the last one you wrote about. I'l try to minify the code later, but now I want to protect it in other availible ways. Really, very bulky stuf and it needs more protection.

About the extention (how to block). Founded this article but there is no such property (at least in last version of Firebug) window.console.firebug = undefined.

Modified by a1ex_sinner