I wrote a very cheesy Python script that runs through the file and counts the passwords and the amount of times they appear. Note that these may not even be correct.<p>This is what I got for the top 10:<p><pre><code> len(passlist): 342,514 # Amount of unique passwords.
Password, Repetition
'', 10,654 (Apparently, some passwords were blank.)
'123456', 1667
'password', 780
'ninja', 333
'abc123', 250
'123456789', 222
'12345678', 208
'sunshine', 205
'princess', 202
</code></pre>
Edit: Source code at <a href="https://gist.github.com/3096511" rel="nofollow">https://gist.github.com/3096511</a>