Skip to main content

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(): #Cracks hash md5 password and sha256 and normal password ( STRING PASSWORDS ) [...] """

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

brutelib-0.3.1.tar.gz (6.9 kB view hashes)

Uploaded Source

Built Distribution

brutelib-0.3.1-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page