6 ms·
> #53: 9136668099 weird... wonder why
by SpectralTheory 4y ago
> #53: 9136668099
weird... wonder why
- tnbp 4y agoProbably something like this: https://sunnia.medium.com/an-analysis-of-chinese-passwords-e49b97b91919 https://sunnia.medium.com/an-analysis-of-chinese-passwords-e...
- version_five 4y ago"Liman1000" was #50 Is this a reference I'm not familiar with? Otherwise I wonder how much of her higher numbers (outside, say top 20) are effectively just noise
- NayamAmarshe 4y ago> Is this a reference I'm not familiar with? Seems like it's a reference to AFU establishing themselves in Liman and 1000s of russian soldiers backing down? That's all I could find https://theins.ru/en/news/254974 https://theins.ru/en/news/254974
- pulvinar 4y agoAnd the table lists a time to crack it of 4 days. I assume that all of these will shortly be crackable in less than 1 second, as they'll be tried first.
- MuffinFlavored 4y agoHow does a password cracker brute force against a password hash (say MD5 or SHA256, I know bcrypt is designed specifically for terrible brute force efficiency) if it has a random salt? Is the salt known and just uselessly stored with the password + easily retrievable during a login attempt or database leak?
- cjcampbell 4y agoThe salt is typically stored as a prefix to the hash. Its job is not to be a secret, but to ensure that an individual effort must be made to crack each password. I can’t precompute and store the hashes or otherwise reuse previous work. Another way to look at this is that the salt prevents information leakage from the hashes. Even if the same password occurs dozens or hundreds of times in the same database, unique salts will ensure that every hash is unique.