Hacker News new | ask | show | jobs
by revelation 5122 days ago
Given that these hashes are not salted, running a 'uniq' on the list of all users' password hashes would probably already cut it by half, if not more. Then you eliminate all the easy ones from wordlists, and post the remains on the internet for people with excess computing power to bruteforce.
2 comments

They are already unique and sorted.

sort -u combo_not.txt | wc -l 6458020

wc -l combo_not.txt 6458020

I assume the first line you meant to pipe it through uniq afer the sort? Otherwise the only thing you've demonstrated is that sorting a file doesn't change its line count. :)
"sort -u" means "sort and uniq".
Wow, I can't believe I was never aware of this. Thank you!
My password shouldn't be easy, and wasn't in the list.