We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ca8ac commit 25870fdCopy full SHA for 25870fd
brute_force_zip.py
@@ -17,14 +17,14 @@
17
try :
18
password_bytes = line.rstrip('\n').encode('utf-8')
19
zip_file.extractall(pwd=password_bytes)
20
- print('success')
+ print('Succesfully extracted zip')
21
22
zip_file.extractall()
23
- print('zip is unencrypted');
+ print('Zip file is unencrypted');
24
except:
25
print( 'password is {}'.format(line.rstrip('\n')) )
26
break
27
28
pass
29
else:
30
- print('fail, no password matched')
+ print('Failed to extract zip, no password matched')
bruteforce_zip.py
0 commit comments