├── .github └── CONTRIBUTING.md ├── .gitignore ├── README.md ├── examples ├── Malwares │ ├── TelegramBackdoor.py │ ├── backdoors │ │ └── ssh │ │ │ ├── private-rsa.key │ │ │ ├── ssh_backdoor.py │ │ │ └── ssh_handler.py │ ├── data_harvesters │ │ ├── TelegramDataHarvester.py │ │ └── wifi-password-harvester.py │ ├── key_logger.py │ └── reverse_backdoors │ │ └── ssh │ │ ├── handler.py │ │ ├── private-rsa.key │ │ └── reverse_backdoor.py ├── Ransomwares │ ├── dmsec_decrypter.py │ └── dmsec_encrypter.py ├── Worms │ └── DirClonerWorm.py └── generatorScript.py ├── poetry.lock ├── pyhtools_evil_files ├── exec_generator.py ├── malwares │ ├── __init__.py │ ├── backdoor │ │ └── ssh │ │ │ ├── backdoor.py │ │ │ └── handler.py │ ├── data_harvesters │ │ ├── credential_harvester.py │ │ ├── ssh_cred_harvester.py │ │ ├── telegram_data_harvester.py │ │ └── wireless_password_harvester.py │ ├── installer │ │ ├── __init__.py │ │ └── cert.py │ ├── keylogger │ │ ├── __init__.py │ │ └── keylogger.py │ ├── reverse_backdoor │ │ ├── HTTP │ │ │ ├── __init__.py │ │ │ ├── backdoor.py │ │ │ └── listener.py │ │ ├── TCP │ │ │ ├── __init__.py │ │ │ ├── listener.py │ │ │ └── reverse_backdoor.py │ │ ├── __init__.py │ │ └── ssh │ │ │ ├── __init__.py │ │ │ └── backdoor.py │ ├── telegram_remote_code_executor │ │ ├── TelegramRemoteCodeExecutor.py │ │ └── __init__.py │ └── utils.py ├── ransomwares │ ├── __init__.py │ └── dmsec │ │ ├── __init__.py │ │ ├── decrypter.py │ │ └── encrypter.py └── worms │ ├── __init__.py │ └── dir_cloner.py └── pyproject.toml /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/README.md -------------------------------------------------------------------------------- /examples/Malwares/TelegramBackdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/TelegramBackdoor.py -------------------------------------------------------------------------------- /examples/Malwares/backdoors/ssh/private-rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/backdoors/ssh/private-rsa.key -------------------------------------------------------------------------------- /examples/Malwares/backdoors/ssh/ssh_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/backdoors/ssh/ssh_backdoor.py -------------------------------------------------------------------------------- /examples/Malwares/backdoors/ssh/ssh_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/backdoors/ssh/ssh_handler.py -------------------------------------------------------------------------------- /examples/Malwares/data_harvesters/TelegramDataHarvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/data_harvesters/TelegramDataHarvester.py -------------------------------------------------------------------------------- /examples/Malwares/data_harvesters/wifi-password-harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/data_harvesters/wifi-password-harvester.py -------------------------------------------------------------------------------- /examples/Malwares/key_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/key_logger.py -------------------------------------------------------------------------------- /examples/Malwares/reverse_backdoors/ssh/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/reverse_backdoors/ssh/handler.py -------------------------------------------------------------------------------- /examples/Malwares/reverse_backdoors/ssh/private-rsa.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/reverse_backdoors/ssh/private-rsa.key -------------------------------------------------------------------------------- /examples/Malwares/reverse_backdoors/ssh/reverse_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Malwares/reverse_backdoors/ssh/reverse_backdoor.py -------------------------------------------------------------------------------- /examples/Ransomwares/dmsec_decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Ransomwares/dmsec_decrypter.py -------------------------------------------------------------------------------- /examples/Ransomwares/dmsec_encrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Ransomwares/dmsec_encrypter.py -------------------------------------------------------------------------------- /examples/Worms/DirClonerWorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/Worms/DirClonerWorm.py -------------------------------------------------------------------------------- /examples/generatorScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/examples/generatorScript.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyhtools_evil_files/exec_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/exec_generator.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/backdoor/ssh/backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/backdoor/ssh/backdoor.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/backdoor/ssh/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/backdoor/ssh/handler.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/data_harvesters/credential_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/data_harvesters/credential_harvester.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/data_harvesters/ssh_cred_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/data_harvesters/ssh_cred_harvester.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/data_harvesters/telegram_data_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/data_harvesters/telegram_data_harvester.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/data_harvesters/wireless_password_harvester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/data_harvesters/wireless_password_harvester.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/installer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/installer/cert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/installer/cert.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/keylogger/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/keylogger/keylogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/keylogger/keylogger.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/HTTP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/HTTP/backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/reverse_backdoor/HTTP/backdoor.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/HTTP/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/reverse_backdoor/HTTP/listener.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/TCP/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/TCP/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/reverse_backdoor/TCP/listener.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/TCP/reverse_backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/reverse_backdoor/TCP/reverse_backdoor.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/ssh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/reverse_backdoor/ssh/backdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/reverse_backdoor/ssh/backdoor.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/telegram_remote_code_executor/TelegramRemoteCodeExecutor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/telegram_remote_code_executor/TelegramRemoteCodeExecutor.py -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/telegram_remote_code_executor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/malwares/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/malwares/utils.py -------------------------------------------------------------------------------- /pyhtools_evil_files/ransomwares/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/ransomwares/dmsec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/ransomwares/dmsec/decrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/ransomwares/dmsec/decrypter.py -------------------------------------------------------------------------------- /pyhtools_evil_files/ransomwares/dmsec/encrypter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/ransomwares/dmsec/encrypter.py -------------------------------------------------------------------------------- /pyhtools_evil_files/worms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyhtools_evil_files/worms/dir_cloner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyhtools_evil_files/worms/dir_cloner.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmdhrumilmistry/pyhtools-evil-files/HEAD/pyproject.toml --------------------------------------------------------------------------------