├── .gitignore ├── README.md ├── Results ├── Cracked.txt ├── WHM.txt └── cPanel.txt ├── cPanel.py ├── config ├── password.txt └── username.txt ├── lib └── wordlist.txt ├── main.py ├── modules ├── __pycache__ │ ├── banners.cpython-310.pyc │ ├── cpanel_whm.cpython-310.pyc │ ├── plesk.cpython-310.pyc │ ├── ssh.cpython-310.pyc │ ├── utils.cpython-310.pyc │ └── webmail.cpython-310.pyc ├── banners.py ├── cpanel_whm.py ├── plesk.py ├── ssh.py ├── utils.py └── webmail.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | Results/ 2 | venv/* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/README.md -------------------------------------------------------------------------------- /Results/Cracked.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/Results/Cracked.txt -------------------------------------------------------------------------------- /Results/WHM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/Results/WHM.txt -------------------------------------------------------------------------------- /Results/cPanel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/Results/cPanel.txt -------------------------------------------------------------------------------- /cPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/cPanel.py -------------------------------------------------------------------------------- /config/password.txt: -------------------------------------------------------------------------------- 1 | root 2 | password -------------------------------------------------------------------------------- /config/username.txt: -------------------------------------------------------------------------------- 1 | root 2 | password -------------------------------------------------------------------------------- /lib/wordlist.txt: -------------------------------------------------------------------------------- 1 | root 2 | admin 3 | jalkoy 4 | maintena 5 | iamshahi -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/main.py -------------------------------------------------------------------------------- /modules/__pycache__/banners.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/__pycache__/banners.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/cpanel_whm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/__pycache__/cpanel_whm.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/plesk.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/__pycache__/plesk.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/ssh.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/__pycache__/ssh.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/__pycache__/utils.cpython-310.pyc -------------------------------------------------------------------------------- /modules/__pycache__/webmail.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/__pycache__/webmail.cpython-310.pyc -------------------------------------------------------------------------------- /modules/banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/banners.py -------------------------------------------------------------------------------- /modules/cpanel_whm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/cpanel_whm.py -------------------------------------------------------------------------------- /modules/plesk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/plesk.py -------------------------------------------------------------------------------- /modules/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/ssh.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/utils.py -------------------------------------------------------------------------------- /modules/webmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/modules/webmail.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThatNotEasy/cPanel-Crack/HEAD/requirements.txt --------------------------------------------------------------------------------