├── .gitignore ├── README.md ├── common ├── HashExtAttack.py ├── __init__.py ├── crypto_utils.py └── md5_manual.py ├── hash_ext_attack.py ├── img ├── img.png └── img_1.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/README.md -------------------------------------------------------------------------------- /common/HashExtAttack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/common/HashExtAttack.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/crypto_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/common/crypto_utils.py -------------------------------------------------------------------------------- /common/md5_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/common/md5_manual.py -------------------------------------------------------------------------------- /hash_ext_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/hash_ext_attack.py -------------------------------------------------------------------------------- /img/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/img/img.png -------------------------------------------------------------------------------- /img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shellfeel/hash-ext-attack/HEAD/img/img_1.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | loguru==0.6.0 2 | --------------------------------------------------------------------------------