├── .gitignore ├── CHANGELOG ├── LICENSE ├── README.md ├── hashes ├── __init__.py ├── __main__.py ├── common │ ├── __init__.py │ ├── helpers.py │ └── orchestra.py └── ops │ ├── __init__.py │ ├── bcrypt.py │ ├── cisco_pix.py │ ├── cisco_type7.py │ ├── hash_template.txt │ ├── ldap_md5.py │ ├── ldap_salted_md5.py │ ├── ldap_salted_sha1.py │ ├── ldap_sha1.py │ ├── md5.py │ ├── md5_crypt.py │ ├── msdcc.py │ ├── msdcc2.py │ ├── mssql2000.py │ ├── mssql2005.py │ ├── mysql323.py │ ├── mysql41.py │ ├── nt.py │ ├── oracle10.py │ ├── oracle11.py │ ├── postgres_md5.py │ ├── sha1.py │ ├── sha1_crypt.py │ ├── sha256.py │ ├── sha256_crypt.py │ ├── sha512.py │ └── sha512_crypt.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/README.md -------------------------------------------------------------------------------- /hashes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hashes/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/__main__.py -------------------------------------------------------------------------------- /hashes/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hashes/common/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/common/helpers.py -------------------------------------------------------------------------------- /hashes/common/orchestra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/common/orchestra.py -------------------------------------------------------------------------------- /hashes/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hashes/ops/bcrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/bcrypt.py -------------------------------------------------------------------------------- /hashes/ops/cisco_pix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/cisco_pix.py -------------------------------------------------------------------------------- /hashes/ops/cisco_type7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/cisco_type7.py -------------------------------------------------------------------------------- /hashes/ops/hash_template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/hash_template.txt -------------------------------------------------------------------------------- /hashes/ops/ldap_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/ldap_md5.py -------------------------------------------------------------------------------- /hashes/ops/ldap_salted_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/ldap_salted_md5.py -------------------------------------------------------------------------------- /hashes/ops/ldap_salted_sha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/ldap_salted_sha1.py -------------------------------------------------------------------------------- /hashes/ops/ldap_sha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/ldap_sha1.py -------------------------------------------------------------------------------- /hashes/ops/md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/md5.py -------------------------------------------------------------------------------- /hashes/ops/md5_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/md5_crypt.py -------------------------------------------------------------------------------- /hashes/ops/msdcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/msdcc.py -------------------------------------------------------------------------------- /hashes/ops/msdcc2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/msdcc2.py -------------------------------------------------------------------------------- /hashes/ops/mssql2000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/mssql2000.py -------------------------------------------------------------------------------- /hashes/ops/mssql2005.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/mssql2005.py -------------------------------------------------------------------------------- /hashes/ops/mysql323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/mysql323.py -------------------------------------------------------------------------------- /hashes/ops/mysql41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/mysql41.py -------------------------------------------------------------------------------- /hashes/ops/nt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/nt.py -------------------------------------------------------------------------------- /hashes/ops/oracle10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/oracle10.py -------------------------------------------------------------------------------- /hashes/ops/oracle11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/oracle11.py -------------------------------------------------------------------------------- /hashes/ops/postgres_md5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/postgres_md5.py -------------------------------------------------------------------------------- /hashes/ops/sha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/sha1.py -------------------------------------------------------------------------------- /hashes/ops/sha1_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/sha1_crypt.py -------------------------------------------------------------------------------- /hashes/ops/sha256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/sha256.py -------------------------------------------------------------------------------- /hashes/ops/sha256_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/sha256_crypt.py -------------------------------------------------------------------------------- /hashes/ops/sha512.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/sha512.py -------------------------------------------------------------------------------- /hashes/ops/sha512_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/hashes/ops/sha512_crypt.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/Hasher/HEAD/setup.py --------------------------------------------------------------------------------