A hash cracker package
Project description
cracklib
this is library for crack Hash
imports used:
- hashlib
How to use?
import cracklib
# call the class
app = cracklib.Cracker(testWord)
if app.crackHash(testHash):
print("Done : {}".format(testWord))
else:
print("it's not {}".format(testWord))
# end app
How to use for Tools?
import cracklib
testWord = input("Enter Word Guess: ")
testHash = input("Enter Hash Guess: ")
app = cracklib.Cracker(testWord)
if app.crackHash(testWord):
print("Done : {} -> {}".format(testWord, testHash))
else:
print("Error : {}".format(testWord))
How to use list?
import cracklib
hashes = [
"5f4dcc3b5aa765d61d8327deb882cf99", # MD5 password
"58acb7acccce58ffa8b953b12b5a7702bd42dae441c1ad85057fa70b", # SHA224 admin
"c90023380fc1d5721a5e20d230077a13cd3c0f9c2f407fa7bde17abecac0301dd95baf3fe5784e833a185218763ac549", # SHA3_384 glitch
]
for Hash in hashes:
app = cracklib.Cracker("glitch")
if app.crackHash(Hash):
print("Done : ", Hash)
else:
print("Error : ", Hash)
THX
- Thx spooky sec for help
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cracklib-pkg-0.0.1.tar.gz
(3.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cracklib-pkg-0.0.1.tar.gz.
File metadata
- Download URL: cracklib-pkg-0.0.1.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7a06dc6eec8c63c01888991c2984aa05e6de714da40b744ad62c0c3cb5794b67
|
|
| MD5 |
9c74e87be1e515f425ce6c8af65a7a3d
|
|
| BLAKE2b-256 |
0a0b6ff9d4189152a80c5714c52cbfc1c1f7c0cad2d5d3be2f197721c6ec1f65
|
File details
Details for the file cracklib_pkg-0.0.1-py3-none-any.whl.
File metadata
- Download URL: cracklib_pkg-0.0.1-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6148a75dcb04e88785e538b68c612fc37a39e2f9c8d45dfe48deaa58a74bb83
|
|
| MD5 |
6dc5d0efcbaa7327516e6ba0a2a153ea
|
|
| BLAKE2b-256 |
3c32268e2c624e140f06b3d867b6ebb99e75795d6610764d860b7023a8f92dfb
|