Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Security-Linkedin.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ def loop():
counter = 0 #Used to see how many passwords were cracked

linkCracked.write("The left column contains the hash and the right are passwords \n\n")
for theWord in wordFile:
i = i+1
for (i,theWord) in enumerate(wordFile):
#for theWord in wordFile:
#i = i+1
hasher = append(theWord)
print "Password attempt number :%i " %(i)
for line in linkedin:
Expand Down