├── AdamAttack ├── Makefile ├── Test │ ├── adams_vs_standard_REFERENCE.png │ ├── banner.sh │ ├── plot.py │ ├── run.sh │ └── setup.sh ├── adam_main.cpp ├── charmap.txt ├── include │ ├── adam_attack.h │ ├── adaptive_model.h │ ├── hashcat_utils.h │ ├── utilities.h │ └── wordlist.h └── src │ ├── adam_attack.cpp │ ├── adaptive_model.cpp │ ├── hashcat_utils.c │ ├── semantic_deamon.cpp │ ├── utilities.cpp │ └── wordlist.cpp ├── LICENSE ├── MakeTrainingset ├── Makefile ├── include │ └── hashcat_utils.h ├── makeTrainSet.cpp └── src │ ├── hashcat_utils.c │ ├── utilities.cpp │ └── wordlist.cpp ├── NeuralNet ├── CONFs │ └── SMALL_resent.gin ├── architecture.py ├── calibrateBudget.py ├── charmap.pickle ├── check_perfomance.py ├── inference.py ├── input_pipeline_raw.py ├── losses.py ├── model.py ├── myOS.py ├── myPickle.py ├── profile_model.py ├── train.py ├── trainer.py └── utils.py ├── README.md └── hashcat_legacy ├── _sha512-sse2.c ├── bcrypt-raw.c ├── bcrypt-sse2.c ├── common.c ├── des-sse2.c ├── descrypt-sse2.c ├── engine.c ├── gost-sse2.c ├── hashcat-cli.c ├── include ├── common.h ├── constants.h ├── engine.h ├── md5.h ├── rp.h └── tsearch.h ├── keccak-sse2.c ├── md4-sse2.c ├── md5-sse2.c ├── rp.c ├── sha1-sse2.c ├── sha256-sse2.c ├── sha256.c ├── sha512-sse2.c ├── sha512.c └── tsearch.c /AdamAttack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/Makefile -------------------------------------------------------------------------------- /AdamAttack/Test/adams_vs_standard_REFERENCE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/Test/adams_vs_standard_REFERENCE.png -------------------------------------------------------------------------------- /AdamAttack/Test/banner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/Test/banner.sh -------------------------------------------------------------------------------- /AdamAttack/Test/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/Test/plot.py -------------------------------------------------------------------------------- /AdamAttack/Test/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/Test/run.sh -------------------------------------------------------------------------------- /AdamAttack/Test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/Test/setup.sh -------------------------------------------------------------------------------- /AdamAttack/adam_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/adam_main.cpp -------------------------------------------------------------------------------- /AdamAttack/charmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/charmap.txt -------------------------------------------------------------------------------- /AdamAttack/include/adam_attack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/include/adam_attack.h -------------------------------------------------------------------------------- /AdamAttack/include/adaptive_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/include/adaptive_model.h -------------------------------------------------------------------------------- /AdamAttack/include/hashcat_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/include/hashcat_utils.h -------------------------------------------------------------------------------- /AdamAttack/include/utilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/include/utilities.h -------------------------------------------------------------------------------- /AdamAttack/include/wordlist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/include/wordlist.h -------------------------------------------------------------------------------- /AdamAttack/src/adam_attack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/src/adam_attack.cpp -------------------------------------------------------------------------------- /AdamAttack/src/adaptive_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/src/adaptive_model.cpp -------------------------------------------------------------------------------- /AdamAttack/src/hashcat_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/src/hashcat_utils.c -------------------------------------------------------------------------------- /AdamAttack/src/semantic_deamon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/src/semantic_deamon.cpp -------------------------------------------------------------------------------- /AdamAttack/src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/src/utilities.cpp -------------------------------------------------------------------------------- /AdamAttack/src/wordlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/AdamAttack/src/wordlist.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/LICENSE -------------------------------------------------------------------------------- /MakeTrainingset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/MakeTrainingset/Makefile -------------------------------------------------------------------------------- /MakeTrainingset/include/hashcat_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/MakeTrainingset/include/hashcat_utils.h -------------------------------------------------------------------------------- /MakeTrainingset/makeTrainSet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/MakeTrainingset/makeTrainSet.cpp -------------------------------------------------------------------------------- /MakeTrainingset/src/hashcat_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/MakeTrainingset/src/hashcat_utils.c -------------------------------------------------------------------------------- /MakeTrainingset/src/utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/MakeTrainingset/src/utilities.cpp -------------------------------------------------------------------------------- /MakeTrainingset/src/wordlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/MakeTrainingset/src/wordlist.cpp -------------------------------------------------------------------------------- /NeuralNet/CONFs/SMALL_resent.gin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/CONFs/SMALL_resent.gin -------------------------------------------------------------------------------- /NeuralNet/architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/architecture.py -------------------------------------------------------------------------------- /NeuralNet/calibrateBudget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/calibrateBudget.py -------------------------------------------------------------------------------- /NeuralNet/charmap.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/charmap.pickle -------------------------------------------------------------------------------- /NeuralNet/check_perfomance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/check_perfomance.py -------------------------------------------------------------------------------- /NeuralNet/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/inference.py -------------------------------------------------------------------------------- /NeuralNet/input_pipeline_raw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/input_pipeline_raw.py -------------------------------------------------------------------------------- /NeuralNet/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/losses.py -------------------------------------------------------------------------------- /NeuralNet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/model.py -------------------------------------------------------------------------------- /NeuralNet/myOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/myOS.py -------------------------------------------------------------------------------- /NeuralNet/myPickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/myPickle.py -------------------------------------------------------------------------------- /NeuralNet/profile_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/profile_model.py -------------------------------------------------------------------------------- /NeuralNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/train.py -------------------------------------------------------------------------------- /NeuralNet/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/trainer.py -------------------------------------------------------------------------------- /NeuralNet/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/NeuralNet/utils.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/README.md -------------------------------------------------------------------------------- /hashcat_legacy/_sha512-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/_sha512-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/bcrypt-raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/bcrypt-raw.c -------------------------------------------------------------------------------- /hashcat_legacy/bcrypt-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/bcrypt-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/common.c -------------------------------------------------------------------------------- /hashcat_legacy/des-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/des-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/descrypt-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/descrypt-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/engine.c -------------------------------------------------------------------------------- /hashcat_legacy/gost-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/gost-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/hashcat-cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/hashcat-cli.c -------------------------------------------------------------------------------- /hashcat_legacy/include/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/include/common.h -------------------------------------------------------------------------------- /hashcat_legacy/include/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/include/constants.h -------------------------------------------------------------------------------- /hashcat_legacy/include/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/include/engine.h -------------------------------------------------------------------------------- /hashcat_legacy/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/include/md5.h -------------------------------------------------------------------------------- /hashcat_legacy/include/rp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/include/rp.h -------------------------------------------------------------------------------- /hashcat_legacy/include/tsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/include/tsearch.h -------------------------------------------------------------------------------- /hashcat_legacy/keccak-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/keccak-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/md4-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/md4-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/md5-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/md5-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/rp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/rp.c -------------------------------------------------------------------------------- /hashcat_legacy/sha1-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/sha1-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/sha256-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/sha256-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/sha256.c -------------------------------------------------------------------------------- /hashcat_legacy/sha512-sse2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/sha512-sse2.c -------------------------------------------------------------------------------- /hashcat_legacy/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/sha512.c -------------------------------------------------------------------------------- /hashcat_legacy/tsearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAdamProject/adams/HEAD/hashcat_legacy/tsearch.c --------------------------------------------------------------------------------