├── .gitignore ├── LICENSE ├── README.md ├── certs ├── server.crt └── server.key ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/README.md -------------------------------------------------------------------------------- /certs/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/certs/server.crt -------------------------------------------------------------------------------- /certs/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/certs/server.key -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ValorantDevelopers/riot-xmpp-mitm/HEAD/package.json --------------------------------------------------------------------------------