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

I'm currently developing a web application and since it has access to a database underneath require the ability to disable Developer tools from Safari, Chrome and Internet explorer and Firebug in Firefox and all similar applications. Is there a way to do this? Thanks in advance.

Note: The ajax framework provided by the database requires that any thing given to the database be in web paramaters that can be modified and that anything it returns back be handled in javascript therefore when it returns a value like whether or not a user has access to a certain part of the website it has to be handled in javascript which developer tools can then rip the code out and allow access anyways. So this is required.

UPDATE: For those of you still thinking im making bad assumptions I did ask the vendor below is their response

Here are some suggestions for ways of mitigating the risk:

1) Use a javascript Obfuscator to obfuscate the code and only provide the obfuscated version with the sold application; keep the non obfuscated version for yourself to do edits. Here is an online obfuscator: How can I obfuscate JavaScript? http://en.wikipedia.org/wiki/Obfuscated_code http://javascriptobfuscator.com/default.aspx

2) Use a less descriptive name; maybe 'repeatedtasks.js' instead of 'security.js' as 'security.js' will probably stand out more to anyone looking through this type of information as something important.

share|improve this question
14  
Huh? That's not possible. Why do you want to do that? How do you intend to debug your code? This will not make your app more secure. – SLaks Sep 26 '11 at 18:20
Me thinks that it is the point of a plugin to overwrite/overrule standard browser capability or webpage programming. – Michael Jasper Sep 26 '11 at 18:21
4  
Reminds me of the time where web developers wanted to protect their html/js source code by disabling the right-click on their page. – klaustopher Sep 26 '11 at 18:21
1  
Do you already have a solution in place that will prevent malicious users from accessing your program using a raw socket? – TokenMacGuy Sep 26 '11 at 23:27
4  
+1: I don't understand the down-votes -- this question is asked well enough for us to see that the goal of the question is misguided and an inappropriate response to a poorly-understood security objective. – sarnold Sep 27 '11 at 2:20
show 8 more comments

4 Answers

up vote 12 down vote accepted

No you cannot do this.

The developer menu is on the client side and is provided by the user's browser.

Also the browser developer should have nothing to do with your server side database code, and it does, you need some maaaajor restructuring.

share|improve this answer
While I agree the language we use does not allow the kind of restructure that would fix this – Brandon Sep 26 '11 at 20:11
@Brandon what type of language would have that big of a security hole??!! – Neal Sep 26 '11 at 20:13
7  
@Brandon NEVER trust the filters on the client side. Never (I repeat again NEVER). Do more validation on the server side always no matter what you have on the client end. – Neal Sep 26 '11 at 20:20
2  
It would be more costly to have everything stolen/erased I would Imagine. – Loktar Sep 26 '11 at 20:29
2  
I think you need to read more 4D docs. From what I can see of their website, there's plenty of server-side stuff, including PHP libraries. – ceejayoz Sep 27 '11 at 13:06
show 9 more comments

No. It is not possible to disable the Developer Tools for your end users.

If your application is insecure if the user has access to developer tools, then it is just plain insecure.

share|improve this answer
Unfortunately the server has to respond to a javascript method for anything to happen and that javascript method can be modified in the language we have to use – Brandon Sep 26 '11 at 20:12
4  
Unfortunately you're fucked, then. – ceejayoz Sep 27 '11 at 13:06

If your framework requires that you do authorization in the client, then...

You need to change your framework

When you put an application in the wild, where users that you don't trust can access it; you must draw a line in the sand.

  • Physical hardware that you own; and can lock behind a strong door. You can do anything you like here; this is a great place to keep your database, and to perform the authorization functions to decide who can do what with your database.
  • Everything else; Including browsers on client computers; mobile phones; Convenience Kiosks located in the lobby of your office. You cannot trust these! Ever! There's nothing you can do that means you can be totally sure that these machines aren't lying to cheat you and your customers out of money. You don't control it, so you can't ever hope to know what's going on.
share|improve this answer

There's no way your development environment is this brain-dead. It just can't be.

I strongly recommend emailing your boss with:

  • A demand for a week or two in the schedule for training / learning.
  • A demand for enough support tickets with your vendor to figure out how to perform server-side validation.
  • A clear warning that if the tool cannot do server-side validation, that you will be made fun of on the front page of the Wall Street Journal when your entire database is leaked / destroyed / etc.
share|improve this answer
Though perhaps it is worth mentioning that if the database stores your lunch options near the office, who prefers which food carts, and some algorithms to pick a lunch spot that suits everyone in your party, this is probably fine. If the database includes customer details, then you have no choice but to beg the vendor to teach you how to do server-side validation -- and failing that, make sure your boss knows the ramifications of the choice. – sarnold Sep 28 '11 at 0:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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