This might sound silly, but as a developer, I'm using the debugger in Chrome every day to test my web applications, but although these tools are valuable for us developers, it might also be used against us by users how wants to mess with our systems.
You probably know that it is fairly easy, using the debugger, to re-enable a button that was previously set to disabled, or change the value of hidden tags or variables. It would then be easy to post a form that is not suppose to be sent, with forged values...
Would it be a way to prevent all debbugging tools to be used when your page is displayed in production environment?
Some sort of meta tags that could be added to the web page, or something else?
I know I could scramble my JS scripts but is there any other ways?
Thanks