Nowadays, most of the browsers comes with a developer tool bar, often to help the developer fixing the HTML and other visible areas of web page. But this developer tool bar can also be a potential threat to the security of your system, if it is not been taken care of. The question is how? And the answer is pretty simple.
All developer tool bars have an option that let user to edit HTML on the fly and developer can see the effect immediately. Hackers and Crackers just love this option to break your website. If you are running an e-commerce website, this threat can even sell your products at zero price. If your website has a form integrated and that form takes a visitor to the payment gateway page, then before sending the value to the payment gateway, one can easily edit the form. They can put the value zero in place of price and can download any software or service which you sell online, at no price.
One can get the developer toolbar from the following places
- Firefox Developer ToolBar
- Firefox XML developer toolbar
- IE Developer Toolbar
- Opera Developer Toolbar
What does a developer toolbar do?
- It can edit the HTML on the fly.
- It can change the value of form post fields.
- It can expose the hidden password fields. If you have hit the ‘remember password’ option then the stored password can be made visible.
- It can give you detailed information of the page.
Though, the toolbar is of immense help to developer, at the same time it is a potential tool for hacker too. So, please check if the website you are running is free from the threat of this tool.
How can you protect yourself from this attack?
1. First make your site in such a way that only registered user can use the payment gateway. This will at least help you to know who is breaking the rule.
2. Track user activity throughout his life cycle at your website.
3. If possible use background process for payment. (Like cURL in PHP).
4. If the gateway supports it, make the entire payment option encrypted.
If you are following this and you are a little careful, then possibly you will be save yourself. Before opening any e-commerce venture, ensure that your entire script is free from SQL injection(old stuff), XSS attack, fuzzing and cookie poisoning and theft. If you are not aware of web security much, then one day you might have to surrender your earning to the hands of hackers and crackers. So pre-act before it is too late.





