Home » Hacking, How to Recipies, Internet Browser, Windows Security » Secure your FireFox by tweaking it manually

Secure your FireFox by tweaking it manually

Lately I have unleashed the power of tweaking Firefox, these days I am just tweaking around Firefox, though I ‘ve just figured out how userChrome.css can be used to tweak/hack firefox, but I am still looking forward on other areas where I can tweak Firefox.

In this tutorial I will show you how you can secure your stored password in firefox, by simply adding 2-3 lines in your userChrome.css file. For those who don’t know how to tweak userChrome.css file please refer to Basic Firefox Tweaking Tutorial and Advanced Tweaking Tutorial.

Before getting to the solution lets first see what’s the problem is – In firefox anyone can see your stored password by clicking on a simple button “Show Password”.

Step 1. In firefox go to Tools > Options > Security

ff options

Step 2. Click on saved Password button.

saved pass

Step 3. And now you will see a list of usernames in front of the website name for which you have stored password in your browser. Once you click the button you can see all your stored password just like as shown in figure below.

pass

Though we can use a Master password to protect other user from accessing it, but we can tweak it too to make it more secure.

So if you see the above steps, you can see thatall our stored password were revealed by clicking on the button “Show Password”. So we can somehow remove that button than all our problem will be solved. So how to do that?, just open your userChrome.css file (refer Basic Tweaking tutorial if you don’t know how to open it). Now add the following line in your userChrome.css file and save it. You need to restart your firefox to see changes.

Remove Show Password Button

#BrowserPreferences #showPasswordsBox { display:none !important; }

no

Hey but we can go a step before that i.e. if we can remove the Saved Password button in the security tab than there is no need to remove the show password button. So add the following line to remove the Saved Password button.

Remove Saved Password button

#BrowserPreferences #showPasswordsBox { display:none !important; }

no button

But when I think over it, than I came up with an another interesting thing, that actually Saved Password button is not the root if we can actually hide the Tools menu from the Menu bar than the whole Security system will be locked and no one can than edit any of our Firefox settings. To keep this in mind I came up with another piece of code (contributed by my friend Sid) which will remove the Tools menu from Menubar

Remove the Tools menu from Menubar

#navigator-toolbox menu[label="Tools"]
{ display: none !important; }

tools

Well this is just a tweaking tutorial, so to make it more interactive I took support of hiding password :D I hope you liked this tutorial, and yeah I will continue this tutorial as soon as I learn new things.

Do you know something tweaky about FireFox that you want to contribute/share with us







Popular on Web Today

3 Responses to " Secure your FireFox by tweaking it manually "

  1. Sensa Pen says:

    Thanks for the tips. Not many people aware how easy to reveal their store password especially if they use a share pc :) I normally use the Master password to protect them. I will implement your tweak to ensure my stored password are safe.

    Cheers
    .-= Sensa Pen´s last blog ..Sensa Pen by Boyd Willat =-.

  2. Now this is for sure I am gonna try.
    .-= Yogesh Mankani´s last blog ..Breaking News : American Government Arrested Osama Bin Laden =-.

  3. Wow… thanks for the great geeky post bro :D
    .-= Pubudu Kodikara´s last blog ..Smashing Saturday –> 27th February 2010 =-.

Leave a comment