├── .gitignore ├── LICENSE.md ├── README.md ├── requirements.txt ├── role_discovery.py ├── vix.py ├── vixlib.py ├── vixutils.py └── vsphere_client.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | cryptography==1.5 2 | pyVmomi==6.5.0.2017.5-1 3 | -------------------------------------------------------------------------------- /role_discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/role_discovery.py -------------------------------------------------------------------------------- /vix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/vix.py -------------------------------------------------------------------------------- /vixlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/vixlib.py -------------------------------------------------------------------------------- /vixutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/vixutils.py -------------------------------------------------------------------------------- /vsphere_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guardicore/vmware_guest_auth_bypass/HEAD/vsphere_client.py --------------------------------------------------------------------------------