├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── commands │ ├── Interface.ts │ ├── account.ts │ ├── alias.json │ ├── debug.ts │ ├── exit.ts │ └── help.ts ├── crypto │ ├── ec2b.bin │ ├── ec2b.key │ └── index.ts ├── data │ ├── dispatch.ts │ └── keys │ │ ├── MHYPrivCN.pem │ │ ├── MHYPrivCN1.pem │ │ ├── MHYPrivOS.pem │ │ ├── MHYPrivOS1.pem │ │ └── SigningKey.pem ├── db │ ├── Account.ts │ └── Database.ts ├── http │ ├── HttpServer.ts │ ├── cert │ │ ├── cert.crt │ │ └── cert.key │ └── routes │ │ ├── account │ │ └── risky │ │ │ └── api │ │ │ └── check.ts │ │ ├── admin │ │ └── mi18n │ │ │ └── plat_oversea │ │ │ └── m2020030410 │ │ │ └── m2020030410-version.ts │ │ ├── combo │ │ └── box │ │ │ └── api │ │ │ └── config │ │ │ └── sdk │ │ │ └── combo.ts │ │ ├── crash │ │ └── dataUpload.ts │ │ ├── hk4e_global │ │ ├── combo │ │ │ └── granter │ │ │ │ ├── api │ │ │ │ ├── compareProtocolVersion.ts │ │ │ │ └── getConfig.ts │ │ │ │ └── login │ │ │ │ └── v2 │ │ │ │ └── login.ts │ │ └── mdk │ │ │ ├── agreement │ │ │ └── api │ │ │ │ └── getAgreementInfos.ts │ │ │ └── shield │ │ │ └── api │ │ │ ├── loadConfig.ts │ │ │ ├── login.ts │ │ │ └── verify.ts │ │ ├── query_cur_region.ts │ │ ├── query_region_list.ts │ │ └── sdk │ │ └── dataUpload.ts ├── index.ts └── utils │ ├── Config.ts │ └── Logger.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/Interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/commands/Interface.ts -------------------------------------------------------------------------------- /src/commands/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/commands/account.ts -------------------------------------------------------------------------------- /src/commands/alias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/commands/alias.json -------------------------------------------------------------------------------- /src/commands/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/commands/debug.ts -------------------------------------------------------------------------------- /src/commands/exit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/commands/exit.ts -------------------------------------------------------------------------------- /src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/commands/help.ts -------------------------------------------------------------------------------- /src/crypto/ec2b.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/crypto/ec2b.bin -------------------------------------------------------------------------------- /src/crypto/ec2b.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/crypto/ec2b.key -------------------------------------------------------------------------------- /src/crypto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/crypto/index.ts -------------------------------------------------------------------------------- /src/data/dispatch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/data/dispatch.ts -------------------------------------------------------------------------------- /src/data/keys/MHYPrivCN.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/data/keys/MHYPrivCN.pem -------------------------------------------------------------------------------- /src/data/keys/MHYPrivCN1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/data/keys/MHYPrivCN1.pem -------------------------------------------------------------------------------- /src/data/keys/MHYPrivOS.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/data/keys/MHYPrivOS.pem -------------------------------------------------------------------------------- /src/data/keys/MHYPrivOS1.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/data/keys/MHYPrivOS1.pem -------------------------------------------------------------------------------- /src/data/keys/SigningKey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/data/keys/SigningKey.pem -------------------------------------------------------------------------------- /src/db/Account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/db/Account.ts -------------------------------------------------------------------------------- /src/db/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/db/Database.ts -------------------------------------------------------------------------------- /src/http/HttpServer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/HttpServer.ts -------------------------------------------------------------------------------- /src/http/cert/cert.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/cert/cert.crt -------------------------------------------------------------------------------- /src/http/cert/cert.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/cert/cert.key -------------------------------------------------------------------------------- /src/http/routes/account/risky/api/check.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/account/risky/api/check.ts -------------------------------------------------------------------------------- /src/http/routes/admin/mi18n/plat_oversea/m2020030410/m2020030410-version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/admin/mi18n/plat_oversea/m2020030410/m2020030410-version.ts -------------------------------------------------------------------------------- /src/http/routes/combo/box/api/config/sdk/combo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/combo/box/api/config/sdk/combo.ts -------------------------------------------------------------------------------- /src/http/routes/crash/dataUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/crash/dataUpload.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/combo/granter/api/compareProtocolVersion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/combo/granter/api/compareProtocolVersion.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/combo/granter/api/getConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/combo/granter/api/getConfig.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/combo/granter/login/v2/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/combo/granter/login/v2/login.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/mdk/agreement/api/getAgreementInfos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/mdk/agreement/api/getAgreementInfos.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/mdk/shield/api/loadConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/mdk/shield/api/loadConfig.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/mdk/shield/api/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/mdk/shield/api/login.ts -------------------------------------------------------------------------------- /src/http/routes/hk4e_global/mdk/shield/api/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/hk4e_global/mdk/shield/api/verify.ts -------------------------------------------------------------------------------- /src/http/routes/query_cur_region.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/query_cur_region.ts -------------------------------------------------------------------------------- /src/http/routes/query_region_list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/query_region_list.ts -------------------------------------------------------------------------------- /src/http/routes/sdk/dataUpload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/http/routes/sdk/dataUpload.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/utils/Config.ts -------------------------------------------------------------------------------- /src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/src/utils/Logger.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tamilpp25/YSDispatch/HEAD/tsconfig.json --------------------------------------------------------------------------------