├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── README.md ├── bin ├── __init__.py ├── attacks │ ├── __init__.py │ └── bruteforce │ │ ├── __init__.py │ │ └── bf_attack.py ├── generators │ └── __init__.py └── verify_hashes │ ├── __init__.py │ └── verify.py ├── dagon.py ├── docs ├── README.md └── _config.yml ├── legal ├── LICENSE.md └── thirdparty_info.txt ├── lib ├── __init__.py ├── algorithms │ ├── __init__.py │ ├── custom │ │ ├── __init__.py │ │ └── _crc64.py │ └── hashing_algs.py ├── data_files │ └── wordlist_links ├── github │ ├── __init__.py │ ├── auth │ │ └── oauth │ ├── create_issue.py │ ├── issue_template │ └── template └── settings.py ├── md5sum └── checksum.md5 ├── requirements.txt └── thirdparty ├── __init__.py ├── blake ├── __init__.py ├── blake.py ├── blake_test.py └── blake_wrapper.py ├── des ├── __init__.py └── pydes.py ├── md2 ├── __init__.py └── md2_hash.py └── tiger ├── LICENSE ├── README.textile ├── __init__.py ├── sboxes.py ├── test_tiger.py └── tiger.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/README.md -------------------------------------------------------------------------------- /bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/attacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/attacks/bruteforce/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/attacks/bruteforce/bf_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/bin/attacks/bruteforce/bf_attack.py -------------------------------------------------------------------------------- /bin/generators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/bin/generators/__init__.py -------------------------------------------------------------------------------- /bin/verify_hashes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/verify_hashes/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/bin/verify_hashes/verify.py -------------------------------------------------------------------------------- /dagon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/dagon.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /legal/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/legal/LICENSE.md -------------------------------------------------------------------------------- /legal/thirdparty_info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/legal/thirdparty_info.txt -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/algorithms/custom/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/algorithms/custom/_crc64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/algorithms/custom/_crc64.py -------------------------------------------------------------------------------- /lib/algorithms/hashing_algs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/algorithms/hashing_algs.py -------------------------------------------------------------------------------- /lib/data_files/wordlist_links: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/data_files/wordlist_links -------------------------------------------------------------------------------- /lib/github/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/github/auth/oauth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/github/auth/oauth -------------------------------------------------------------------------------- /lib/github/create_issue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/github/create_issue.py -------------------------------------------------------------------------------- /lib/github/issue_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/github/issue_template -------------------------------------------------------------------------------- /lib/github/template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/github/template -------------------------------------------------------------------------------- /lib/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/lib/settings.py -------------------------------------------------------------------------------- /md5sum/checksum.md5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/md5sum/checksum.md5 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/requirements.txt -------------------------------------------------------------------------------- /thirdparty/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/blake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/blake/blake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/blake/blake.py -------------------------------------------------------------------------------- /thirdparty/blake/blake_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/blake/blake_test.py -------------------------------------------------------------------------------- /thirdparty/blake/blake_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/blake/blake_wrapper.py -------------------------------------------------------------------------------- /thirdparty/des/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/des/pydes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/des/pydes.py -------------------------------------------------------------------------------- /thirdparty/md2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/md2/md2_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/md2/md2_hash.py -------------------------------------------------------------------------------- /thirdparty/tiger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/tiger/LICENSE -------------------------------------------------------------------------------- /thirdparty/tiger/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/tiger/README.textile -------------------------------------------------------------------------------- /thirdparty/tiger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /thirdparty/tiger/sboxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/tiger/sboxes.py -------------------------------------------------------------------------------- /thirdparty/tiger/test_tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/tiger/test_tiger.py -------------------------------------------------------------------------------- /thirdparty/tiger/tiger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ekultek/Dagon/HEAD/thirdparty/tiger/tiger.py --------------------------------------------------------------------------------