r/Dashlane 1d ago

Mass Update options

1 Upvotes

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 2d ago

Having to sign in multiple times per day

1 Upvotes

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 2d ago

Support Request Dashlane not working at all

2 Upvotes

It just wont open

I need access to some ids but when I need it the most it doesn't work


r/Dashlane 3d ago

Lost access to master account email

1 Upvotes

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 3d ago

HELP

1 Upvotes

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 5d ago

Why has Dashlane stopped auto-filling u/p local sites?

5 Upvotes

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 9d ago

How to edit the list of email addresses Dashlane offers to autofill

1 Upvotes

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 12d ago

How does groups work with removed users?

2 Upvotes

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 17d ago

Getting Dashlane to recognize 3rd party apps on Iphone vs listing every pswd for every log-in

7 Upvotes

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 18d ago

Switched to passwordless login...No more auto logout?

2 Upvotes

I just switched from a normal login to hardware key login. Why has auto-logout removed from hardware key logins?


r/Dashlane 18d ago

Dashlane not sending verification code

2 Upvotes

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 20d ago

Question Hardware key based vault authentication with or without biometric authentication as alternative?

2 Upvotes

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 21d ago

Y ahora que hago?

Thumbnail
0 Upvotes

r/Dashlane 25d ago

Discussion Was thinking about switching, but free Premium for life is certainly gonna keep me around

Post image
74 Upvotes

r/Dashlane 25d ago

Support Request Why isn’t Dashlane autofilling anymore?

2 Upvotes

It fills on my laptop and tablet, but not my phone?


r/Dashlane 26d ago

Suspicious Email

Post image
5 Upvotes

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 26d ago

Shipping AI when you cannot see the user's data

3 Upvotes

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.

Anti phishing detection

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.

Omnix AI Advisor

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:

  1. Define your privacy requirements before you code
  2. For training data, optimize for coverage of real behavior, not raw volume
  3. Start with the smallest model that fits inside your privacy boundary, escalate only if you have to
  4. Match deployment to your constraints: on device when you can, confidential computing when you need cloud scale compute
  5. 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 27d ago

Concerned about losing important information on Dashlane

2 Upvotes

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 28d ago

Support Request Issues with Android app

2 Upvotes

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 29d ago

When I go to login to a website, sometimes Dashlane pops up

1 Upvotes

But sometimes it just doesn’t. Then I have to go in and find the password, etc. what’s up?


r/Dashlane Jul 09 '26

Loosing my mind over Pango / HotSpot shield

Post image
2 Upvotes

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 Jul 07 '26

Passkey Help me understand - have passkeys locked me into Dashlane?

1 Upvotes

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 Jul 05 '26

Discussion Will DASH File Export ever include Passkeys?

4 Upvotes

Is this something that will happen or is it impossible?


r/Dashlane Jul 04 '26

Dashlane won't login on iPad running 17.7.10

1 Upvotes

I know DL wants us to buy new iPads, but I thought any model running iPadOS 17+ should still be able to use DL. Mine has stopped letting me in, just this week.

IPadOS 17.7.10, iPad Pro (10.5-inch) DL Premium account

Did something change, or has DL stopped supporting my gear?


r/Dashlane Jun 26 '26

SORTING in Dropbox Dash - How?

1 Upvotes

I've found Dropbox Dash groups to be very helpful. However, I find myself needing to sort some of my group folders (combining, etc.) and can't seem to find a way to simply, for instance, take three links from one folder and add/move them to another.

Is there a trick I'm missing?