├── LICENSE ├── README.md ├── WMIOps.ps1 ├── https_server.py └── weblib ├── __init__.py ├── base_handler.py ├── server.pem └── threaded_http.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/README.md -------------------------------------------------------------------------------- /WMIOps.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/WMIOps.ps1 -------------------------------------------------------------------------------- /https_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/https_server.py -------------------------------------------------------------------------------- /weblib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weblib/base_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/weblib/base_handler.py -------------------------------------------------------------------------------- /weblib/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/weblib/server.pem -------------------------------------------------------------------------------- /weblib/threaded_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSiege/WMIOps/HEAD/weblib/threaded_http.py --------------------------------------------------------------------------------