Honore With His Spouce IGA KUBUNTU! OWNER. BLOG SITE. This is My Child FUTURE COMPUTER TECHNOLOGY
blogger JavaScript Rocks.

Thursday 20 March 2014

Hacking Firefox to Always Auto Save Password Without Showing Notification

 



While I was screening through new posts in the forum to see if there are any spam and also any computer topics that I can help with, I saw an interesting question being asked. Is there any way to make Firefox auto save passwords without clicking the Remember button?. In Firefox, even if you have the option “Remember passwords for sites” checked in Tools > Options > Security, the browser will still ask the question “Would you like to remember the password for “Username” on website.com?” with three selections which are “Remember Password”, “Never Remember Password for This Site” and “Not Now”. The earlier version of Firefox 3 displays a notification bar at the top of the web browser, while from version 4 until the current version 21 displays a popup notification at the top left.
Disable Firefox Remember Never for This Site Not Now button
Modifying Firefox to auto save the login information to the Firefox Saved Passwords manager without prompting was easy for version 3 because you can directly edit the JS files from the program’s folder to apply the changes. However, the file structure was a bit different starting from Firefox 4 up to and including the current versions. We researched and found that it is still possible to force Firefox to auto save the password without the popup notification. This can turn Firefox into a keylogger and no antivirus will even detect this as a threat.
Steps to Hack Firefox 3 to Auto Save Password
For Firefox 3, all you need to do is edit the nsLoginManagerPrompter.js file with a text editor preferably Notepad++ located in C:\Program Files\Mozilla Firefox \components\ folder. Search for the _showSaveLoginNotification function and replace the whole code that is highlighted in yellow…
nsLoginManagerPrompter
With the following code:
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
The end result would look like the image below.
Firefox auto save password without notification bar
Save the changes that you’ve made on the nsLoginManagerPrompter.js file and whenever you login to any website, Firefox will auto save the site, username and password to the login manager WITHOUT showing the notification bar. You can access the saved password area by going to Tools > Options > Security and click the Saved Passwords button. There is one possible bug which is even when a user entered the wrong username or password, it will still be saved.
Download Firefox 3.6.28 | Download Modified nsLoginManagerPrompter.js
As for Firefox 4, it gets slightly difficult because the nsLoginManagerPrompter.js file is archived in an omni.jar file located at C:\Program Files\Mozilla Firefox\ folder. I’ve previously written a guide on how to edit files inside omni.jar file which would allow you to modify Firefox 4 to auto save password without prompting.
Continue reading at Page 2 for steps to hack the latest versions of Firefox.

Starting from Firefox 5, you may have noticed that editing the nsLoginManagerPrompter.js inside omni.jar file does not work. The Firefox developing team did not fix the bug nor improve the security but instead they optimized it further by making Firefox load a compiled binary version of the nsLoginManagerPrompter.js file instead of the raw and editable JS file. Here is what you need to do to enable auto password saving on Firefox 5 and above. Do take note that the omni.jar file has been renamed to omni.ja starting from Firefox 10.
1. Use WinRAR, PowerArchiver or WinZIP to open the omni.jar or omni.ja file from C:\Program Files\Mozilla Firefox\ folder.
2. Navigate to jsloader\resource\gre\components\ and delete the nsLoginManagerPrompter.js file.
Delete nsLoginManagerPrompter.js
3. Go back to the root of omni.jar or omni.jar, and navigate to components folder. Edit the nsLoginManagerPrompter.js file and replace the whole _showSaveLoginNotification function as shown earlier. Save the changes and go back to the archiver. Click the Yes button when the archiver prompts you to update the archive with the updated file.
If you are having difficulty in following all the steps above, we provide an already modified version of omni.ja file for Windows version of Firefox 21 which can be downloaded by clicking here or click here for Mac OS X. Simply download and save it to C:\Program Files\Mozilla Firefox\ folder in Windows. In Mac OS X, click Go at the Finder toolbar, select Applications, right click on Firefox and select Show Package Contents. Open Contents folder and copy the omni.ja to the MacOS folder. Remember to backup the original omni.ja file in case you want to restore back the changes.
Additional Notes:
1. A potential Firefox default behavior that may cause the user to realize that their username and password has been saved is when they log out and find that their credentials automatically filled in to the textboxes. An easy way to prevent this from happening is by typing about:config in the address box, click on the “I’ll be careful, I promise” button, type signon.autofillForms in the Search box and either double click on it to change the value from true to false or you can right click on it and select Toggle.
signon.autofillforms
2. Whenever Firefox gets a minor or major update, most likely the omni.ja file will be reverted to the original. You’ll need to either re-edit the nsLoginManagerPrompter.js file again or visit this page to download the latest version of the modified omni.ja.
3. This article and research is for educational purposes only. Use it with care and think twice before implementing this illegally as it can get you into a lot of trouble!

0 comments:

Post a Comment