The title is misleading. Yes, the passes are generated using a crappy and predictable seed value, but the passes are stored in a vault, and good luck breaking into that vault providing you use a strong master password, like a six-word diceware passphrase.
Kaspersky Password Manager: All your passwords are belong to us
71–80 of 122 posts
Re: Kaspersky Password Manager: All your passwords are belong to us
#72To me, using a Password Manager puts you at risk, no matter which one you use. I cannot speak to windows, but on Linux, I use a encrypted text file via emacs. And to generate passwords: tr -cd "[:alnum:]" And a real TL;DR: Upgrade your Kaspersky Password Manager
If you're happy with the command line, using something like pass ( https://www.passwordstore.org/ ) is worth serious consideration rather than rolling your own. It is GPLv2 and has a number of benefits, including the fact that your passwords are stored encrypted in a git repo and if you do "pass edit" it will call out to $EDITOR to do your edits, putting encryption/decryption and git transparently on both sides.
Re: Kaspersky Password Manager: All your passwords are belong to us
#73I feel like the discussion about uniform password generation and PRNG, while interesting, is relatively irrelevant here. Even a garbo xorshift-based non uniform PRNG is almost certainly good enough to generate strong random passwords, as long as it's seeded correctly. An attacker is unlikely to gather enough output (generated passwords) to predict other ones, and the passwords are unlikely to be all generated within…
Bias simply weakens your password. If you generate long elaborate passwords then they can resist some of these flaws but the point is you don't want to introduce a flaw when they are simpler and better solutions out there. Mistakes are natural, you want to provide the utmost resistance to such exploits which can stack up to become viable.
hiKxChDiaHNAtgVz
vis-à-vis: kähdikyylkönekkimahdakerttaksa
One is a 16 random `[a-zA-Z0-9]` characters, the other is a 32 character long nonce word, containing and among others that conforms to Finnish phonology, but otherwise is devoid of any meaning and phonology but easier to remember to speakers of Finnish.
One is a 16.Does 32 characters opposed to 16 offset that the latter conforms to the phonology of a language with 6 million speakers?
Re: Kaspersky Password Manager: All your passwords are belong to us
#74I use Bitwarden and it's open source. Switched over from LastPass and haven't regretted it since
What did you find was better about Bitwarden?
This simplified a bunch of things for me:
* Dev deployments of an app, where I have one or two different logins (eg, the default admin login) but it's deployed on a bunch of subdomains and/or internal IPs and/or internal non-FQDN hosts
* A bunch of work systems on different domains where there's old-style SSO (synchronized password, but login form as part of the app)
* Android apps just get a URI like com.domain.AppName and can otherwise be consolidated with other entries, etc
Re: Kaspersky Password Manager: All your passwords are belong to us
#75> It means every instance of Kaspersky Password Manager in the world will generate the exact same password at a given second. Whoa. That's just ... Wow.
I recall this was an issue too for certain RSA tokens.
https://en.wikipedia.org/wiki/RSA_Security#Relationship_with...
Re: Kaspersky Password Manager: All your passwords are belong to us
#76The title is misleading. Yes, the passes are generated using a crappy and predictable seed value, but the passes are stored in a vault, and good luck breaking into that vault providing you use a strong master password, like a six-word diceware passphrase.
Re: Kaspersky Password Manager: All your passwords are belong to us
#77Earlier quoted context omitted.
Bias simply weakens your password. If you generate long elaborate passwords then they can resist some of these flaws but the point is you don't want to introduce a flaw when they are simpler and better solutions out there. Mistakes are natural, you want to provide the utmost resistance to such exploits which can stack up to become viable.
What I've been wondering for a long time is how do these two passwords compare: hiKxChDiaHNAtgVz vis-à-vis : kähdikyylkönekkimahdakerttaksa One is a 16 random `[a-zA-Z0-9]` characters, the other is a 32 character long nonce word, containing and among others that conforms to Finnish phonology, but otherwise is devoid of any meaning and phonology but easier to remember to speakers of Finnish. One is a 16. Does 32 char…
Re: Kaspersky Password Manager: All your passwords are belong to us
#78Earlier quoted context omitted.
It was just added last week https://bitwarden.com/blog/post/admin-password-reset-is-out/
I hope this makes it into bitwarden_rs, which is what we use at work, soon. That and/or the ability to disable personal vaults would go a long ways for us.
Re: Kaspersky Password Manager: All your passwords are belong to us
#79I feel like the discussion about uniform password generation and PRNG, while interesting, is relatively irrelevant here. Even a garbo xorshift-based non uniform PRNG is almost certainly good enough to generate strong random passwords, as long as it's seeded correctly. An attacker is unlikely to gather enough output (generated passwords) to predict other ones, and the passwords are unlikely to be all generated within…
Re: Kaspersky Password Manager: All your passwords are belong to us
#80I feel like the discussion about uniform password generation and PRNG, while interesting, is relatively irrelevant here. Even a garbo xorshift-based non uniform PRNG is almost certainly good enough to generate strong random passwords, as long as it's seeded correctly. An attacker is unlikely to gather enough output (generated passwords) to predict other ones, and the passwords are unlikely to be all generated within…
As somebody who only ever uses rng for games, and then indeed seeds with os.microtime(), what's the issue and what is a better approach?