<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Cannot export and view saved passwords]]></title><description><![CDATA[<p dir="auto">Hi, I cannot view (or export) saved passwords in opera.</p>
<p dir="auto">I tried using<br />
opera://password-manager/settings<br />
opera://password-manager/passwords</p>
<p dir="auto">but neither or these links show any passwords, there's also no button to export them to a file.</p>
<p dir="auto">I need to backup my passwords so I appreciate any help.</p>
<p dir="auto">Here's how it looks.</p>
<p dir="auto"><img src="https://i.ibb.co/6ctBvkXh/Screenshot-20250204-200138.png" alt="img" class=" img-responsive img-markdown" /></p>
]]></description><link>https://forums.opera.com/topic/76075/cannot-export-and-view-saved-passwords</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 15:38:05 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/76075.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 04 Feb 2025 19:03:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Cannot export and view saved passwords on Sun, 16 Feb 2025 07:38:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/927458">@aayu234</a> You don't need a key used to encode them, you need your user's password (whatever password you use on your computer). Your system handles the encoding and decoding.</p>
]]></description><link>https://forums.opera.com/post/376006</link><guid isPermaLink="true">https://forums.opera.com/post/376006</guid><dc:creator><![CDATA[sgunhouse]]></dc:creator><pubDate>Sun, 16 Feb 2025 07:38:52 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Sun, 16 Feb 2025 06:54:58 GMT]]></title><description><![CDATA[<p dir="auto">Where do I find the key or a passphrase used to encode passwords?</p>
]]></description><link>https://forums.opera.com/post/376002</link><guid isPermaLink="true">https://forums.opera.com/post/376002</guid><dc:creator><![CDATA[aayu234]]></dc:creator><pubDate>Sun, 16 Feb 2025 06:54:58 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Tue, 11 Feb 2025 11:18:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/927101">@Andyblake432</a> See above</p>
]]></description><link>https://forums.opera.com/post/372373</link><guid isPermaLink="true">https://forums.opera.com/post/372373</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Tue, 11 Feb 2025 11:18:14 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Sun, 09 Feb 2025 08:10:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Wow, thanks, this URL (<a href="https://ohyicong.medium.com/how-to-hack-chrome-password-with-python-1bedc167be3d" target="_blank" rel="noopener noreferrer nofollow ugc">https://ohyicong.medium.com/how-to-hack-chrome-password-with-python-1bedc167be3d</a>) is really helpful <img src="https://forums.opera.com/assets/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=o7miklbo7rs" class="not-responsive emoji emoji-emoji-one emoji--winking_face" title=";)" alt="😉" /></p>
<p dir="auto">Also, this one: <a href="https://chromium.googlesource.com/chromium/src.git/+/refs/heads/main/docs/linux/password_storage.md" target="_blank" rel="noopener noreferrer nofollow ugc">https://chromium.googlesource.com/chromium/src.git/+/refs/heads/main/docs/linux/password_storage.md</a> kindof explains why I might be having problems with passwords. I used KWallet before but it's been unreliable so I've removed it.</p>
<p dir="auto">As for the python script - I've found that already but I requires windows (which I don't have access to) and relies on WinApi which makes it unportable. There still has to be a way to do this in Linux somehow...</p>
]]></description><link>https://forums.opera.com/post/371254</link><guid isPermaLink="true">https://forums.opera.com/post/371254</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Sun, 09 Feb 2025 08:10:31 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Sun, 09 Feb 2025 05:51:06 GMT]]></title><description><![CDATA[<p dir="auto">Opera/Chromium makes use of the root/os_crypt/encrypted_key value in the "Local State" file in some way. I don't know how exactly that's generated/salted/hashed etc. based on your OS login info, but on Windows for example, I think it uses <a href="https://learn.microsoft.com/en-us/windows/win32/api/dpapi/nf-dpapi-cryptprotectdata" target="_blank" rel="noopener noreferrer nofollow ugc">CryptProtectData</a>. Also, see <a href="https://tierzerosecurity.co.nz/2024/01/22/data-protection-windows-api.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://tierzerosecurity.co.nz/2024/01/22/data-protection-windows-api.html</a>. But, not sure what exact entropy is given to it. For macOS, it uses the macOS key chain. For Linux, it uses a certain API depending on the desktop environment. See <a href="https://chromium.googlesource.com/chromium/src.git/+/refs/heads/main/docs/linux/password_storage.md" target="_blank" rel="noopener noreferrer nofollow ugc">https://chromium.googlesource.com/chromium/src.git/+/refs/heads/main/docs/linux/password_storage.md</a> for example.</p>
<p dir="auto">For Linux, you can take a look at posts like <a href="https://stackoverflow.com/questions/23201146/how-to-decrypt-data-which-is-crypted-by-cryptprotectdata-function" target="_blank" rel="noopener noreferrer nofollow ugc">https://stackoverflow.com/questions/23201146/how-to-decrypt-data-which-is-crypted-by-cryptprotectdata-function</a> and <a href="https://www.reddit.com/r/linux/comments/1coiu2g/how_does_chrome_encrypt_users_passwords_etc_on/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.reddit.com/r/linux/comments/1coiu2g/how_does_chrome_encrypt_users_passwords_etc_on/</a>.</p>
<p dir="auto">Looking at <a href="https://ohyicong.medium.com/how-to-hack-chrome-password-with-python-1bedc167be3d" target="_blank" rel="noopener noreferrer nofollow ugc">https://ohyicong.medium.com/how-to-hack-chrome-password-with-python-1bedc167be3d</a> might explain things the best for how to use the encrypted key the the Login State file and the password data for an entry in Login Data and AES to decrypt a password.</p>
]]></description><link>https://forums.opera.com/post/371250</link><guid isPermaLink="true">https://forums.opera.com/post/371250</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Sun, 09 Feb 2025 05:51:06 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Sat, 08 Feb 2025 19:40:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/641947">@sdfgvfdrvhdfg</a> Chromium uses your OS login credentials to encrypt saved passwords.</p>
]]></description><link>https://forums.opera.com/post/371179</link><guid isPermaLink="true">https://forums.opera.com/post/371179</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Sat, 08 Feb 2025 19:40:00 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Sat, 08 Feb 2025 16:13:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Where do I find the key or a passphrase used ot encode passwords? Is it somewhere in <code>Local State</code>? Or does opera use system passwords?</p>
]]></description><link>https://forums.opera.com/post/371134</link><guid isPermaLink="true">https://forums.opera.com/post/371134</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Sat, 08 Feb 2025 16:13:56 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 13:57:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> It's a mix of:</p>
<ul>
<li>v116</li>
<li>v11</li>
<li>v10</li>
<li>v112</li>
</ul>
<p dir="auto">Mostly <code>v10</code>.</p>
]]></description><link>https://forums.opera.com/post/370658</link><guid isPermaLink="true">https://forums.opera.com/post/370658</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Fri, 07 Feb 2025 13:57:58 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 12:57:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/641947">@sdfgvfdrvhdfg</a> Using <a href="https://sqlitestudio.pl/" target="_blank" rel="noopener noreferrer nofollow ugc">https://sqlitestudio.pl/</a> for example, "add database", point it to "Login Data", right-click the database, choose "connect" and then double-left-click on the "Logins" table. Then, switch to the "data" tab in the right-hand pane.</p>
<p dir="auto">For example, I see v10 before password values. Do yours have an older version? Maybe the password-manager page is picky about version where as autofill is not. Would be weird, but, you could compare to a fresh Login Data file.</p>
<p dir="auto">You can also expand the Columns for the "Logins" table and compare with a fresh Login Data to see if the number of columns is different. If so, maybe the password-manager page is picky about that.</p>
<p dir="auto">Ultimately, I don't know though.</p>
]]></description><link>https://forums.opera.com/post/370655</link><guid isPermaLink="true">https://forums.opera.com/post/370655</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Fri, 07 Feb 2025 12:57:09 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 12:45:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/641947">@sdfgvfdrvhdfg</a> Because the passwords are still there, but they are hidden for some reason.</p>
]]></description><link>https://forums.opera.com/post/370654</link><guid isPermaLink="true">https://forums.opera.com/post/370654</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Fri, 07 Feb 2025 12:45:28 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 11:57:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/73">@leocg</a> Looks like it, but how come Opera still fills out my form with these passwords?</p>
]]></description><link>https://forums.opera.com/post/370649</link><guid isPermaLink="true">https://forums.opera.com/post/370649</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Fri, 07 Feb 2025 11:57:03 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 11:41:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/641947">@sdfgvfdrvhdfg</a> If the problem started after step 3, it seems to me that one of those files, or even both, is messed up.</p>
]]></description><link>https://forums.opera.com/post/370646</link><guid isPermaLink="true">https://forums.opera.com/post/370646</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Fri, 07 Feb 2025 11:41:55 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 09:53:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Ok, I've done that and here're the results:</p>
<ol>
<li>Started a new profile - manually added some passwords - they are visible and editable</li>
<li>Restarted opera - the same, everything works</li>
<li>Copied over <code>Local State</code> and <code>Default/Login Data</code> from my original profile to the new one - passwords are hidden again.</li>
<li>Added a new password manually inside the new profile - it's there.</li>
<li>And after restart - it's gone.</li>
</ol>
<p dir="auto">It's a bit confusing for me that opera is able to read my  passwords and suggest them but fails to list them inside Password Manager...</p>
]]></description><link>https://forums.opera.com/post/370636</link><guid isPermaLink="true">https://forums.opera.com/post/370636</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Fri, 07 Feb 2025 09:53:43 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Fri, 07 Feb 2025 03:34:14 GMT]]></title><description><![CDATA[<p dir="auto">For what it's worth, I tested in Linux Mint 2.2 (Cinnamon) with the deb version of Opera 116.0.5366.71. Opera saves login entries for sites and they show up no problem at <code>opera://password-manager/passwords</code> and they are available for export at ```opera://password-manager/passwords. They are still there through multiple restarts of Opera and Linux.</p>
]]></description><link>https://forums.opera.com/post/370589</link><guid isPermaLink="true">https://forums.opera.com/post/370589</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Fri, 07 Feb 2025 03:34:14 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 18:38:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Console is clear, no errors.</p>
<p dir="auto">I will try creating a new profile, too, sounds like an interesting idea, thanks!</p>
]]></description><link>https://forums.opera.com/post/370561</link><guid isPermaLink="true">https://forums.opera.com/post/370561</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Thu, 06 Feb 2025 18:38:48 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 18:29:04 GMT]]></title><description><![CDATA[<p dir="auto">You can launch a test Opera profile using the "--user-data-dir=pathtofolderyouwant" command-line switch in a terminal to create the test profile, close that Opera, replace its "Local State" and "Login Data" files with <em>copies</em> of the ones from your original profile and start that test profile again to see if it has the same issue or not.</p>
<p dir="auto">Before you replace that test profile's "Local State" and "Login Data" files, you could save a few passwords in it to see if the password manager shows those or not.</p>
<p dir="auto">Also, when you goto <code>opera://password-manager/settings</code> and or <code>opera://password-manager/passwords</code> and hit ctrl + shift + j, are there any errors in the error console related to that page or passwords?</p>
]]></description><link>https://forums.opera.com/post/370557</link><guid isPermaLink="true">https://forums.opera.com/post/370557</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 06 Feb 2025 18:29:04 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 18:16:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> but it IS ABLE to decrypt it. It always suggests login + passwd combos on all pages that are in the database.</p>
<p dir="auto">It's just password manager somehow cannot show me the list.</p>
]]></description><link>https://forums.opera.com/post/370556</link><guid isPermaLink="true">https://forums.opera.com/post/370556</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Thu, 06 Feb 2025 18:16:05 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 17:58:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/641947">@sdfgvfdrvhdfg</a> I wonder if the os_crypt key in the "Local State" file recently changed for some reason. That would cause Opera to not be able to decrypt "Login Data" entries.</p>
]]></description><link>https://forums.opera.com/post/370553</link><guid isPermaLink="true">https://forums.opera.com/post/370553</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 06 Feb 2025 17:58:23 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 17:02:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Thank for the reply.<br />
No, I'm not using sync and I've already reinstalled opera to the latest version.</p>
<p dir="auto"><code>Login Data</code> is 100% NOT corrupted as I'm able to view the database using a sqllite browser. All the passwords are there (but hashed, unreadable).</p>
]]></description><link>https://forums.opera.com/post/370532</link><guid isPermaLink="true">https://forums.opera.com/post/370532</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Thu, 06 Feb 2025 17:02:55 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 16:57:14 GMT]]></title><description><![CDATA[<p dir="auto">That usually means that your password file ("Login Data" in the profile folder) either contains no login entries or the file is corrupted, or the login entries are encrypted in a way that Opera can no longer decrypt them (like if you changed your Linux user account password or something).</p>
<p dir="auto">This means that you're most likely out of luck. Your only chance might be to use a tool like <a href="https://www.nirsoft.net/utils/web_browser_password.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.nirsoft.net/utils/web_browser_password.html</a> or <a href="https://www.nirsoft.net/utils/chromepass.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.nirsoft.net/utils/chromepass.html</a>, but those are for Windows. (Running them with Wine and pointing them to your "Login Data" file most likely won't be enough to decrypt the file.)</p>
<p dir="auto">You can see <a href="https://www.google.com/search?q=linux+chrome+password+decrypt" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.google.com/search?q=linux+chrome+password+decrypt</a> to find a Linux tool to see if it helps.</p>
<p dir="auto">Besides all that, there's a weird issue that some Opera users experience where Opera thinks their passwords are gone after an update and then when Opera updates again, they'll show again. Don't have an explanation for that, but I guess you could uninstall and reinstall Opera (without deleting your data in ~/.config) to make sure Opera's program files are not corrupted.</p>
<p dir="auto">Are you using Opera Sync to sync passwords?</p>
]]></description><link>https://forums.opera.com/post/370520</link><guid isPermaLink="true">https://forums.opera.com/post/370520</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 06 Feb 2025 16:57:14 GMT</pubDate></item><item><title><![CDATA[Reply to Cannot export and view saved passwords on Thu, 06 Feb 2025 15:17:14 GMT]]></title><description><![CDATA[<p dir="auto">Anyone?...</p>
]]></description><link>https://forums.opera.com/post/370498</link><guid isPermaLink="true">https://forums.opera.com/post/370498</guid><dc:creator><![CDATA[sdfgvfdrvhdfg]]></dc:creator><pubDate>Thu, 06 Feb 2025 15:17:14 GMT</pubDate></item></channel></rss>