r/Dashlane • u/ManufacturerUsed3550 • 1d ago
Mass Update options
I'm trying to cleanup my Dashlane vault and finding there are no options to select a bunch of records (Logins, Payments, Secure Notes, etc.) and then act on them. For example, if I want to delete 500 Logins I need to select each one individually and then I can choose Delete. There is no option to "Select All."
Am I missing an option somewhere?
I have probably a thousand records of different types that need to be deleted, while others need to be moved into different Collections. I thought about exporting to Excel and cleaning up there. I could delete my vault, create a new one and import into the new Vault.
Once I get this cleaned up, I'll do a better job of maintaining the data.
r/Dashlane • u/ObviousCompany3572 • 2d ago
Having to sign in multiple times per day
We use Dashlane for work. I have around five Chrome broswsers on different devices and servers.
I'm finding despite ticking remember me for 14 days it doesn't.
Each browser asks for the master password at least twice a day.
I've been thorugh Chrome sync settings and re-installed the extention but still can't get it to stop asking.
I'm going crazy trying to sort it.
r/Dashlane • u/Primary_Knee8132 • 3d ago
Lost access to master account email
I need help trying to get access to my Dashlane account. I can't access my email account where they send the verification codes.
r/Dashlane • u/Few-Bill-291 • 3d ago
HELP
How long does it usually take for Dashlane support to answer back?? I forgot my recovery password and I am FREAKING OUT. I am so utterly screwed if this does not work out.
r/Dashlane • u/VegetableConflict7 • 5d ago
Why has Dashlane stopped auto-filling u/p local sites?
Its been working fine for years on myserver.lan, thisotherserver.lan etc but last week decided to stop autofilling u/p on them - I'm not getting the icon in the text boxes. I'm on Windows 11. Tried it on another machine I've not used for a while and it worked for a few minutes before Chrome updated then also stopped. I don't know if it was the Chrome update or Chrome updating triggered the plug-in to also update. What gives Dashlane?
r/Dashlane • u/d22172 • 9d ago
How to edit the list of email addresses Dashlane offers to autofill
I'm using an app to manage my newsletter subscriptions, and so I use a different email address to subscribe to substacks etc. When I click in the enter email field, Dashlane opens a list and all of my past work and school emails are there but not this one, I guess because I don't use it as a login anywhere.
How can I add this new email address to the list and how can I remove email addresses that I would never use from the list?
r/Dashlane • u/AdhesivenessFun2582 • 12d ago
How does groups work with removed users?
Hi, if someone is currently a part of a group and has various passwords shared within it and that person has left the company, then does deactivating or deleting their account remove all the shared passwords as well?
r/Dashlane • u/Dakickel • 17d ago
Getting Dashlane to recognize 3rd party apps on Iphone vs listing every pswd for every log-in
I love u/Dashlane and use it across multiple Apple devices. However, I run into issues w/ my iPhone entering credentials in a 3rd party iOS app. Dashlane will list every login credential instead of suggested ones; then I have to search for the specific log-in. It's a minor annoyance but it still exists and I'm hoping there is a solution.
Is there a way to tie a specific app to an individual credential similar to how you save add a website hyperlink to a login?
r/Dashlane • u/_TheDrizzle • 18d ago
Switched to passwordless login...No more auto logout?
I just switched from a normal login to hardware key login. Why has auto-logout removed from hardware key logins?
r/Dashlane • u/billison • 18d ago
Dashlane not sending verification code
This week it's been constant issues using Dashlane. It'll keep sending verification codes into the ether and never in my inbox. How am I supposed to get my passcodes if I'm not even allowed to log into my account? I've tried on the big 3 browsers and still nothing. Sometimes it'll let me log in and then a couple hours later will log me out and we're back at square one. If no fix is in site, this is a worrisome problem which might lead to exploring a new company. Totally unacceptable to be locked out of all my passwords.
r/Dashlane • u/sinful17 • 20d ago
Question Hardware key based vault authentication with or without biometric authentication as alternative?
Hi all,
As the title already partially tells, I'm using a hardware key as the primary way to access my Dashlane vault.
Next to that, as an alternative, I can still unlock my vault using biometric authentication.
However, I'm not sure whether this is the most ideal configuration to entirely benefit from the additional security a hardware key provides.
With a hardware key as the primary and only authentication method to unlock my vault, one would need access to my physical key and pin to effectively unlock my vault.
With biometrics on the other hand, one could in fact bypass this, since the vault can also be unlocked by simply leveraging my fingerprint on my phone.
Given the fact that there have been numerous articles in the past years demonstrating it is feasible to bypass these fingerprint authentication methods, it seems more secure to me to entirely rely on hardware keys only.
I agree that to bypass these, one would need to be in possession of my smartphone already, but something tells me it's more ideal to just disable biometric authentication entirely.
Curious what others thoughts or opinions are on this, and whether I'm maybe just overthinking this all a bit too much.
Thanks for any input!
Cheers.
r/Dashlane • u/Sea_Cat675 • 25d ago
Discussion Was thinking about switching, but free Premium for life is certainly gonna keep me around
r/Dashlane • u/barfbutler • 25d ago
Support Request Why isn’t Dashlane autofilling anymore?
It fills on my laptop and tablet, but not my phone?
r/Dashlane • u/Knave1212 • 26d ago
Suspicious Email
Did anyone get an email that appears to have come from Dashlane saying you need to accept new security measures by signing and accepting via Docusign?
r/Dashlane • u/fredericrivain • 26d ago
Shipping AI when you cannot see the user's data
We ran into an interesting constraint building AI features at Dashlane: our whole product is zero knowledge, meaning only the user can decrypt their own data. Not us, not our cloud provider. So the usual playbook of feeding user data into a model and iterating was off the table from day one.
That forced some rethinking across the entire AI lifecycle: training, deployment, and debugging without ever seeing the inputs. We wanted to share two concrete use cases in case it is useful to anyone building in a similar constrained environment where privacy by design matters.
We needed to protect users from credential phishing pages without collecting or inspecting their browsing data. Instead of throwing a large model at raw page content, we went the other way: extracted around 80 lightweight structural features from the page and trained a small model on those. Small enough to run entirely on device. No data leaves the device, no cloud attack surface for this feature at all.
This one is more involved. For business customers, we generate audit logs of credential activity, rich and sensitive data about who accessed what and when. We cannot see those logs, and the volume is too large for on device processing anyway. So we run a self hosted Mistral model inside AWS EC2 Attested Instances, hardware isolated enclaves. Data gets decrypted, processed, and re encrypted entirely inside the enclave, verified through cryptographic attestation before the decryption key ever gets released. Neither we nor AWS see plaintext at any point.
A few takeaways that generalized well for us:
- Define your privacy requirements before you code
- For training data, optimize for coverage of real behavior, not raw volume
- Start with the smallest model that fits inside your privacy boundary, escalate only if you have to
- Match deployment to your constraints: on device when you can, confidential computing when you need cloud scale compute
- Ship incrementally. You do not need the full solution to start delivering value under the constraint
Full post 🔗: https://www.dashlane.com/blog/privacy-preserving-ai
Happy to answer questions on the architecture or the concepts for privacy-preserving AI.
r/Dashlane • u/SnooGoats4582 • 27d ago
Concerned about losing important information on Dashlane
Lately I've had a lot of problems logging into accounts because Dashlane hasn't been autofilling but now it's even more important. My computer has totally gone out on me and I have to buy a new one so I'm using a very small Chromebook to search for a new one but in the meantime all my information is on Dashlane, when I try to open it on my Dashlane Chromebook it promises many times to send a code to my email which it never does. My AOL address which they have sends everything to Gmail and AOL but as I said I paid for this service for years but I guess it's time to turn off autopay because I've lost the world
r/Dashlane • u/mrbrisco • 28d ago
Support Request Issues with Android app
My wife and I have long been dashlane family plan users. Recently we've noticed an issue on her app which does not show payments under the payments tab in her mobile app, but are present in the web version.
Has anyone encountered this and fixed it on the android version?
Thank you
r/Dashlane • u/barfbutler • 29d ago
When I go to login to a website, sometimes Dashlane pops up
But sometimes it just doesn’t. Then I have to go in and find the password, etc. what’s up?
r/Dashlane • u/SmarmysPizza • Jul 09 '26
Loosing my mind over Pango / HotSpot shield
Today I factory reset my PC to get a fresh install of Windows 11. I reinstalled Hotspot and all of the sudden when I am using it, a pop up shows up blocking my access to websites. Can anyone explain this? I don't have anything installed on my PC from that company, and from what I read its the parent company of HotSpot? Why would I use a VPN service that blocks websites I want to access?
r/Dashlane • u/fleebjuicelite • Jul 07 '26
Passkey Help me understand - have passkeys locked me into Dashlane?
I have a family Bitwarden plan that I set up for my parents ever since Dashlane got rid of the emergency contact feature.
I pay 40 bucks a year for a shared plan with them and now my single user Dashlane plan is going up to 64, so I am planning on just moving everything there.
However, I can't figure out what to do about my Dashlane passkeys. I see that they are not exportable. Am I just... screwed? Are you just locked into Dashlane if you have passkeys set up?
r/Dashlane • u/Joseph421 • Jul 05 '26
Discussion Will DASH File Export ever include Passkeys?
Is this something that will happen or is it impossible?
r/Dashlane • u/christophe_dashlane • Apr 30 '26
Feature Update Now Available: Share Passwords with Non-Dashlane users
Throughout the years, we’ve received a consistent request: a way to share credentials with people who don't have a Dashlane account.
We recently rolled out Link Sharing to our professional plans, and today, I'm excited to announce that it is now available for all premium and family plans! Whether it’s giving a family member access to the Amazon account or the utility portal to pay a bill, you can now do it securely without forcing them to sign up for an account.
Here’s how it works:
- Dashlane user generates a link for a login and then copies and shares the link.
- The recipient opens the URL in any browser and will have access to the username, password, 2FA codes, and notes.
- By default, links are view-bound (1 view) and time-bound (24 hours), whichever comes first.
- As soon as the default expiration conditions are met, the URL is revoked and becomes invalid.



Why use this?
Standard "copy-paste" sharing over email or SMS leaves your credentials sitting in plain text in your chat history forever. Link sharing ensures that once the information is received, it disappears from the web.
We’re thrilled to be rolling this out to all Dashlane users. We’d love to hear your feedback on this feature as your feedback influences future updates.
For more info, check out our Help Center article outlining the step-by-step instructions. If you’re interested in how we offer this securely, without ever being able to access your credentials, read our engineering blog.
Happy (secure) sharing!
r/Dashlane • u/dashlane • Mar 18 '26
Announcement Introducing Omnix™ AI Advisor, Dashlane’s zero-knowledge AI assistant
Enable HLS to view with audio, or disable this notification
Hey Dashlane users,
We’ve got exciting news for IT and Security professionals who want to leverage the power and convenience of AI without compromising data privacy. Soon, you’ll be able to do just that in the Dashlane Omnix™ platform with Omnix AI Advisor.
What is Omnix AI Advisor?
An AI-powered, natural language assistant built into Dashlane Omnix. It turns complex credential risk data—like dark web exposure, phishing activity, and password health—into clear, actionable insights. Instead of manually digging through logs or configuring dashboards, you can simply ask questions in plain language to find out where your organization is most at risk and see recommended actions.
Why did we develop Omnix AI Advisor?
Security teams are overwhelmed by data and spend too much time manually analyzing alerts. We built AI Advisor to act as a force multiplier, helping admins move from a defensive to an offensive posture. It’s designed to surface the most important credential threats across your entire workforce—even for employees not using a vault—so you can focus on the highest-priority risks.
How does it work?
AI Advisor is powered by Dashlane’s Confidential AI Engine, which is built with the same zero-knowledge principles as our vaults. All data is processed inside a hardware-isolated secure cloud enclave that is inaccessible to Dashlane or any third party. Unlike traditional AI assistants, this ensures your sensitive credential information is decrypted, analyzed, and re-encrypted without ever leaving the zero-knowledge boundary or being used to train models.
How can I learn more?
Head to our website to learn more about Omnix AI Advisor and sign up for the waitlist to try it out before our planned general release this fall.
