├── README.md ├── VcenterKit.py ├── VcenterKit_PyQt6.py ├── info_tab_icon.ico ├── logo.ico ├── proxysettings.ico ├── requirements.txt ├── requirements_PyQt6.txt ├── tabicon.ico └── utils ├── CollectVcenterInfo.py ├── __init__.py ├── exploit ├── cve_2021_21972 │ ├── cve_2021_21972_check.py │ └── cve_2021_21972_shell_upload.py ├── cve_2021_21985 │ ├── cve_2021_21985_check.py │ └── cve_2021_21985_exploit.py ├── cve_2021_22005 │ ├── cve_2021_22005_check.py │ └── cve_2021_22005_exploit.py ├── cve_2022_22954 │ ├── cve_2022_22954_check.py │ └── cve_2022_22954_exploit.py ├── cve_2022_22972 │ └── cve_2022_22972_get_cookie.py └── post_exploitation │ ├── generate_vcenter_extracertfrommdb_and_vcenter_generatelogincookie_py.py │ ├── generate_vcenter_ldapmanage_py.py │ ├── generate_vcenter_saml_login_py.py │ └── generate_vhost_password_decrypt_py.py ├── output.py └── test_url_connection.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/README.md -------------------------------------------------------------------------------- /VcenterKit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/VcenterKit.py -------------------------------------------------------------------------------- /VcenterKit_PyQt6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/VcenterKit_PyQt6.py -------------------------------------------------------------------------------- /info_tab_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/info_tab_icon.ico -------------------------------------------------------------------------------- /logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/logo.ico -------------------------------------------------------------------------------- /proxysettings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/proxysettings.ico -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_PyQt6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/requirements_PyQt6.txt -------------------------------------------------------------------------------- /tabicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/tabicon.ico -------------------------------------------------------------------------------- /utils/CollectVcenterInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/CollectVcenterInfo.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/exploit/cve_2021_21972/cve_2021_21972_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2021_21972/cve_2021_21972_check.py -------------------------------------------------------------------------------- /utils/exploit/cve_2021_21972/cve_2021_21972_shell_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2021_21972/cve_2021_21972_shell_upload.py -------------------------------------------------------------------------------- /utils/exploit/cve_2021_21985/cve_2021_21985_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2021_21985/cve_2021_21985_check.py -------------------------------------------------------------------------------- /utils/exploit/cve_2021_21985/cve_2021_21985_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2021_21985/cve_2021_21985_exploit.py -------------------------------------------------------------------------------- /utils/exploit/cve_2021_22005/cve_2021_22005_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2021_22005/cve_2021_22005_check.py -------------------------------------------------------------------------------- /utils/exploit/cve_2021_22005/cve_2021_22005_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2021_22005/cve_2021_22005_exploit.py -------------------------------------------------------------------------------- /utils/exploit/cve_2022_22954/cve_2022_22954_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2022_22954/cve_2022_22954_check.py -------------------------------------------------------------------------------- /utils/exploit/cve_2022_22954/cve_2022_22954_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2022_22954/cve_2022_22954_exploit.py -------------------------------------------------------------------------------- /utils/exploit/cve_2022_22972/cve_2022_22972_get_cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/cve_2022_22972/cve_2022_22972_get_cookie.py -------------------------------------------------------------------------------- /utils/exploit/post_exploitation/generate_vcenter_extracertfrommdb_and_vcenter_generatelogincookie_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/post_exploitation/generate_vcenter_extracertfrommdb_and_vcenter_generatelogincookie_py.py -------------------------------------------------------------------------------- /utils/exploit/post_exploitation/generate_vcenter_ldapmanage_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/post_exploitation/generate_vcenter_ldapmanage_py.py -------------------------------------------------------------------------------- /utils/exploit/post_exploitation/generate_vcenter_saml_login_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/post_exploitation/generate_vcenter_saml_login_py.py -------------------------------------------------------------------------------- /utils/exploit/post_exploitation/generate_vhost_password_decrypt_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/exploit/post_exploitation/generate_vhost_password_decrypt_py.py -------------------------------------------------------------------------------- /utils/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/output.py -------------------------------------------------------------------------------- /utils/test_url_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ridter/VcenterKit/HEAD/utils/test_url_connection.py --------------------------------------------------------------------------------