├── .gitignore ├── LICENSE ├── README.md ├── cipherlists └── .gitkeep ├── laravel_crypto_killer.py ├── lib ├── core │ ├── aes_encrypter.py │ ├── checker.py │ ├── crypto_verb.py │ └── laravel_encrypter.py └── tests │ └── .gitkeep ├── logo_laravel_cryptokiller.webp ├── requirements.txt ├── results └── .gitkeep └── wordlists ├── .gitkeep ├── all_github_keys.txt ├── crater.txt ├── divers.txt ├── dork.txt ├── invoiceninja_default.txt ├── keys_from_blogposts.txt ├── keys_from_laravel_doc_forum.txt ├── leaked_from_app_php.txt └── snipe-it_default.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/README.md -------------------------------------------------------------------------------- /cipherlists/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /laravel_crypto_killer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/laravel_crypto_killer.py -------------------------------------------------------------------------------- /lib/core/aes_encrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/lib/core/aes_encrypter.py -------------------------------------------------------------------------------- /lib/core/checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/lib/core/checker.py -------------------------------------------------------------------------------- /lib/core/crypto_verb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/lib/core/crypto_verb.py -------------------------------------------------------------------------------- /lib/core/laravel_encrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/lib/core/laravel_encrypter.py -------------------------------------------------------------------------------- /lib/tests/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logo_laravel_cryptokiller.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/logo_laravel_cryptokiller.webp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pycryptodome==3.20.0 2 | tqdm==4.66.4 3 | requests 4 | -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordlists/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wordlists/all_github_keys.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/all_github_keys.txt -------------------------------------------------------------------------------- /wordlists/crater.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/crater.txt -------------------------------------------------------------------------------- /wordlists/divers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/divers.txt -------------------------------------------------------------------------------- /wordlists/dork.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/dork.txt -------------------------------------------------------------------------------- /wordlists/invoiceninja_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/invoiceninja_default.txt -------------------------------------------------------------------------------- /wordlists/keys_from_blogposts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/keys_from_blogposts.txt -------------------------------------------------------------------------------- /wordlists/keys_from_laravel_doc_forum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/keys_from_laravel_doc_forum.txt -------------------------------------------------------------------------------- /wordlists/leaked_from_app_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/leaked_from_app_php.txt -------------------------------------------------------------------------------- /wordlists/snipe-it_default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacktiv/laravel-crypto-killer/HEAD/wordlists/snipe-it_default.txt --------------------------------------------------------------------------------