Export/View Passwords File?

User Help for Seamonkey and Mozilla Suite
Post Reply
Wish You Were Here
Posts: 215
Joined: April 10th, 2010, 1:39 am

Export/View Passwords File?

Post by Wish You Were Here »

I'm sure it's been discussed, but I haven't had lot of luck with the search function here.

Can I export the entire Passwords file to view in another program?
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Export/View Passwords File?

Post by morat »

You can use the following code snippet to export login data in SeaMonkey.

Code: Select all

(function () {
  try {
    var signons = Services.logins.getAllLogins();
    var csv = '"username","password","hostname"';
    for (var i = 0; i < signons.length; i++) {
      csv += '\n' + '"';
      csv += signons[i].username + '","';
      csv += signons[i].password + '","';
      csv += signons[i].hostname + '"';
    }
    console.log(csv);
  } catch (e) {
    console.log(e);
  }
})();
SeaMonkey should list out your usernames and passwords in CSV format for easy copy/pasting.

Instructions:

* open about:config page
* set devtools.chrome.enabled preference to true
* open browser console i.e. tools > web developer > browser console
* copy and paste code into browser console command line
* press enter to run

Similar thread: http://forums.mozillazine.org/viewtopic ... &t=3074364

I think someone got the Password Exporter working with SeaMonkey.

Password Exporter
http://addons.thunderbird.net/thunderbird/addon/2848
Wish You Were Here
Posts: 215
Joined: April 10th, 2010, 1:39 am

Re: Export/View Passwords File?

Post by Wish You Were Here »

That pulled a small number of them, but also spit out a lot of error code lines.
Wish You Were Here
Posts: 215
Joined: April 10th, 2010, 1:39 am

Re: Export/View Passwords File?

Post by Wish You Were Here »

I found a freeware tool that pulled them all, not only from SM, but from Opera, Vivaldi, Brave and a couple of others. Exported to a 'csv file and opened in a spreadsheet for sorting.

I won't mention which tool since some might consider it malware. It might even be malware and I might regret using it, but it is what it is.
User avatar
therube
Posts: 21714
Joined: March 10th, 2004, 9:59 pm
Location: Maryland USA

Re: Export/View Passwords File?

Post by therube »

OK then.
Nirsoft's WebBrowserPassView.

And it is hardly malware.
Antivirus "False Positive" Problems
Fire 750, bring back 250.
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.19) Gecko/20110420 SeaMonkey/2.0.14 Pinball CopyURL+ FetchTextURL FlashGot NoScript
User avatar
ndebord
Posts: 1122
Joined: December 7th, 2002, 9:53 am

Re: Export/View Passwords File?

Post by ndebord »

morat wrote:

I think someone got the Password Exporter working with SeaMonkey.

Password Exporter
http://addons.thunderbird.net/thunderbird/addon/2848
morat,

Yes, Password Exporter works after conversion.

Nick
-N- Si vis pacem, para bellum
FrameWork, SeaMonkey(64-bit),Windows 10 Pro (X64- 21H2), WinPatrol, Malwarebytes & Panda Dome
Rob_S
Posts: 809
Joined: December 13th, 2007, 8:54 am
Location: Vancouver Island BC
Contact:

Re: Export/View Passwords File?

Post by Rob_S »

The old password exporter works again directly, see this posting:


https://github.com/JustOff/password-bac ... /tag/1.4.1
Post Reply