Used for bruteforce examples ( EDUCATIONAL )
Project description
Building something
""" def md5(args): - converts "args" to md5 arg = hashlib.md5() arg.update(args) arg.digest()
def sha256(args): - converts "args" to sha256 arg = hashlib.sha256() arg.update(args) arg.digest()
def hexList(args): - Shows an hash list in md5 and sha256 arg = hashlib.md5() sha = hashlib.sha256() sha.update(args) arg.update(args) arg.hexdigest() sha.digest()
def crack(wordlist): - Cracks password charlist = [wordlist] abv = 0 for i in charlist(): while(password != wordlist): guess = "" guess = "#".join(guess) print(guess) print("Cracking Password...") found = abv + 1 print(f"Passwords found: {found}, {password}")
def newWordlist(wordPath): - Creates an new wordlist in PATH: "wordPath" subprocess.call(r"cd {wordPath}".format(wordPath)) filename = "wordlist.txt" text = "123456 password 123456789 12345 12345678 qwerty 1234567 1111 0123123" with open('wordlist.txt', 'w') as f: f.write(text) """
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
Built Distribution
File details
Details for the file brutelib-0.2.4.tar.gz
.
File metadata
- Download URL: brutelib-0.2.4.tar.gz
- Upload date:
- Size: 1.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6fb5a84df2379fb12e4e3abdbecb75026db1aa222bc763d3a2cafc3f2547180 |
|
MD5 | 8e173ef100ef953a1d5c721cae0f13a0 |
|
BLAKE2b-256 | 0310cb3b0d662280162b986baaf0829c8bdfa90454fae74fb2107e5f1ca88280 |
File details
Details for the file brutelib-0.2.4-py3-none-any.whl
.
File metadata
- Download URL: brutelib-0.2.4-py3-none-any.whl
- Upload date:
- Size: 1.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a231d99eb7f7d7716b5c010437aa5a7dcb02facdb436671e40136a5f596efb9 |
|
MD5 | e0d0c5a33a59412c440913ac4d01b87e |
|
BLAKE2b-256 | 769cec8f3d2503994ae4b156cc4376e92ccd06eb34cc96cd30280db31b3a21f1 |