Mozilla Monitor website will be down for 2 hours starting 5/20/2025 at 6 AM PT. Visit our status site for updates.

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Can I transfer my passwords from Lastpass to Lockwise?

  • 6 replies
  • 9 have this problem
  • 3 views
  • Last reply by s95008

I have Lastpass which keeps stopping. I want to move to Lockwise, but I am wondering if there is a way to simply transfer all my passwords rather than doing a complete re-entry.

I have Lastpass which keeps stopping. I want to move to Lockwise, but I am wondering if there is a way to simply transfer all my passwords rather than doing a complete re-entry.

Chosen solution

Hi

I am sorry, but we currently do not support any migration of passwords from other providers to your Firefox Account and Lockwise however this is something that may be included in a future release.

In the meantime, yes, you may have to re-enter your data, but I can assure you it is worth it. I have been using Lockwise for a while now and it makes life so much easier.

Read this answer in context 👍 1

All Replies (6)

Chosen Solution

Hi

I am sorry, but we currently do not support any migration of passwords from other providers to your Firefox Account and Lockwise however this is something that may be included in a future release.

In the meantime, yes, you may have to re-enter your data, but I can assure you it is worth it. I have been using Lockwise for a while now and it makes life so much easier.

Thank you for the quick response. Will now go to work on moving everything over to Lockwise!

I think that LastPass can export the logins to a JSON file. There are ways to import login data in JSON format in Firefox for desktop and then Sync the logins. That way Lockwise might pick them up.

Seburo said

Hi I am sorry, but we currently do not support any migration of passwords from other providers to your Firefox Account and Lockwise however this is something that may be included in a future release. In the meantime, yes, you may have to re-enter your data, but I can assure you it is worth it. I have been using Lockwise for a while now and it makes life so much easier.

How likely is it that this will be added? Lastpass has the option to export all your passwords in a simple text file but I don't feel really up for manually entering over seven hundred passwords.

If you have a JSON file with usernames and passwords and the file is in this format (array of password records: [{},{}],{}) then you can import these logins with JavaScript code in the Browser Console.

The JSON file should have this format: Array of JSON login records separated by commas [{login1},{login2}] with at least username and password and hostname key:value pairs.

  • [{"username":"xxx","password":"xxx","hostname":"https://xxx"}]

To enable the command line in the Browser Console:


var i,lg,LG;
if (lg = prompt("Logins JSON: [{},{}]","?")){
lg = JSON.parse(lg);
try {/*[60+]*/
 for (i=0;LG=lg[i];i++) {if(!LG.origin){LG.origin = LG.hostname}}
 ChromeUtils.import("resource://gre/modules/LoginHelper.jsm");
 LoginHelper.maybeImportLogins(lg);
} catch(e){console.log(e);}
}

Modified by cor-el

I'd like to see this feature. I have too many passwords to do it manually.