This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author agateriver
Recipients agateriver
Date 2008-02-29.02:42:30
SpamBayes Score 0.024587257
Marked as misclassified No
Message-id <1204252950.83.0.917993482097.issue2206@psf.upfronthosting.co.za>
In-reply-to
Content
I write a pieces of code below to find my lost password:

import hashlib

for i in range(9999,99999999):
	m=hashlib.md5(str(i)).hexdigest()
	if m=="21e83200cfd4845fd5e07ee151d70caf":
		print "password is: ", i
		break


when I run it serval minutes, all memory use up.
History
Date User Action Args
2008-02-29 02:42:31agateriversetspambayes_score: 0.0245873 -> 0.024587257
recipients: + agateriver
2008-02-29 02:42:30agateriversetspambayes_score: 0.0245873 -> 0.0245873
messageid: <1204252950.83.0.917993482097.issue2206@psf.upfronthosting.co.za>
2008-02-29 02:42:30agateriverlinkissue2206 messages
2008-02-29 02:42:30agaterivercreate