├── Dockerfile ├── KmsDataBase.xml ├── LICENSE ├── README.md ├── client.py ├── dcerpc.py ├── filetimes.py ├── kmsBase.py ├── kmsPidGenFromDB.py ├── kmsPidGenerator.py ├── kmsRequestUnknown.py ├── kmsRequestV4.py ├── kmsRequestV5.py ├── kmsRequestV6.py ├── pyaes ├── __init__.py ├── aes.py ├── blockfeeder.py └── util.py ├── requirements-micropython.txt ├── rpcBase.py ├── rpcBind.py ├── rpcRequest.py ├── server.py ├── structure.py ├── systemd-unit-file ├── upy ├── __init__.py ├── codecs.py ├── fakerandom.py ├── socketserver.py ├── test_socketserver.py ├── test_uuid.py └── uuid.py ├── uxml2dict.py └── xmltok.py /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/Dockerfile -------------------------------------------------------------------------------- /KmsDataBase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/KmsDataBase.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/README.md -------------------------------------------------------------------------------- /client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/client.py -------------------------------------------------------------------------------- /dcerpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/dcerpc.py -------------------------------------------------------------------------------- /filetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/filetimes.py -------------------------------------------------------------------------------- /kmsBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsBase.py -------------------------------------------------------------------------------- /kmsPidGenFromDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsPidGenFromDB.py -------------------------------------------------------------------------------- /kmsPidGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsPidGenerator.py -------------------------------------------------------------------------------- /kmsRequestUnknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsRequestUnknown.py -------------------------------------------------------------------------------- /kmsRequestV4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsRequestV4.py -------------------------------------------------------------------------------- /kmsRequestV5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsRequestV5.py -------------------------------------------------------------------------------- /kmsRequestV6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/kmsRequestV6.py -------------------------------------------------------------------------------- /pyaes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/pyaes/__init__.py -------------------------------------------------------------------------------- /pyaes/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/pyaes/aes.py -------------------------------------------------------------------------------- /pyaes/blockfeeder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/pyaes/blockfeeder.py -------------------------------------------------------------------------------- /pyaes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/pyaes/util.py -------------------------------------------------------------------------------- /requirements-micropython.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/requirements-micropython.txt -------------------------------------------------------------------------------- /rpcBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/rpcBase.py -------------------------------------------------------------------------------- /rpcBind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/rpcBind.py -------------------------------------------------------------------------------- /rpcRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/rpcRequest.py -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/server.py -------------------------------------------------------------------------------- /structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/structure.py -------------------------------------------------------------------------------- /systemd-unit-file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/systemd-unit-file -------------------------------------------------------------------------------- /upy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /upy/codecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/upy/codecs.py -------------------------------------------------------------------------------- /upy/fakerandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/upy/fakerandom.py -------------------------------------------------------------------------------- /upy/socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/upy/socketserver.py -------------------------------------------------------------------------------- /upy/test_socketserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/upy/test_socketserver.py -------------------------------------------------------------------------------- /upy/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/upy/test_uuid.py -------------------------------------------------------------------------------- /upy/uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/upy/uuid.py -------------------------------------------------------------------------------- /uxml2dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/uxml2dict.py -------------------------------------------------------------------------------- /xmltok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderEX/py-kms/HEAD/xmltok.py --------------------------------------------------------------------------------