├── .gitignore ├── README.md ├── docs ├── riot-client │ ├── README.md │ └── lockfile.md └── valorant-api │ └── README.md ├── samples ├── README.md └── client │ └── entitlements-token.md └── tools ├── README.md ├── browse ├── .gitignore ├── LICENSE.txt ├── README.md └── browse.py ├── logger ├── .gitignore ├── LICENSE.txt ├── README.md └── logger.py ├── rso-auth ├── JS-cookie-method │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package-lock.json │ └── package.json ├── PHP │ └── RSO_AuthFlow.php ├── Powershell │ ├── Riot-Token-CLI.ps1 │ ├── LICENSE │ ├── New-Riot-Token.ps1 │ ├── README.md │ ├── build │ │ ├── index.js │ │ └── template.hta │ └── start.bat └── Python │ ├── LICENSE │ ├── README.md │ ├── async_RSO.py │ └── sync_RSO.py └── unpack ├── .gitignore ├── Pipfile ├── Pipfile.lock ├── README.md ├── organize.py └── unpack.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/README.md -------------------------------------------------------------------------------- /docs/riot-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/docs/riot-client/README.md -------------------------------------------------------------------------------- /docs/riot-client/lockfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/docs/riot-client/lockfile.md -------------------------------------------------------------------------------- /docs/valorant-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/docs/valorant-api/README.md -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/client/entitlements-token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/samples/client/entitlements-token.md -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/browse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/browse/.gitignore -------------------------------------------------------------------------------- /tools/browse/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/browse/LICENSE.txt -------------------------------------------------------------------------------- /tools/browse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/browse/README.md -------------------------------------------------------------------------------- /tools/browse/browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/browse/browse.py -------------------------------------------------------------------------------- /tools/logger/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/logger/.gitignore -------------------------------------------------------------------------------- /tools/logger/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/logger/LICENSE.txt -------------------------------------------------------------------------------- /tools/logger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/logger/README.md -------------------------------------------------------------------------------- /tools/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/logger/logger.py -------------------------------------------------------------------------------- /tools/rso-auth/JS-cookie-method/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/JS-cookie-method/LICENSE -------------------------------------------------------------------------------- /tools/rso-auth/JS-cookie-method/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/JS-cookie-method/README.md -------------------------------------------------------------------------------- /tools/rso-auth/JS-cookie-method/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/JS-cookie-method/index.js -------------------------------------------------------------------------------- /tools/rso-auth/JS-cookie-method/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/JS-cookie-method/package-lock.json -------------------------------------------------------------------------------- /tools/rso-auth/JS-cookie-method/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/JS-cookie-method/package.json -------------------------------------------------------------------------------- /tools/rso-auth/PHP/RSO_AuthFlow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/PHP/RSO_AuthFlow.php -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/ Riot-Token-CLI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Powershell/ Riot-Token-CLI.ps1 -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Powershell/LICENSE -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/New-Riot-Token.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Powershell/New-Riot-Token.ps1 -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Powershell/README.md -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/build/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Powershell/build/index.js -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/build/template.hta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Powershell/build/template.hta -------------------------------------------------------------------------------- /tools/rso-auth/Powershell/start.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | powershell -NoLogo -ExecutionPolicy Bypass -File Riot-Token-CLI.ps1 -------------------------------------------------------------------------------- /tools/rso-auth/Python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Python/LICENSE -------------------------------------------------------------------------------- /tools/rso-auth/Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Python/README.md -------------------------------------------------------------------------------- /tools/rso-auth/Python/async_RSO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Python/async_RSO.py -------------------------------------------------------------------------------- /tools/rso-auth/Python/sync_RSO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/rso-auth/Python/sync_RSO.py -------------------------------------------------------------------------------- /tools/unpack/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | unpacked/ 3 | -------------------------------------------------------------------------------- /tools/unpack/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/unpack/Pipfile -------------------------------------------------------------------------------- /tools/unpack/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/unpack/Pipfile.lock -------------------------------------------------------------------------------- /tools/unpack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/unpack/README.md -------------------------------------------------------------------------------- /tools/unpack/organize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/unpack/organize.py -------------------------------------------------------------------------------- /tools/unpack/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahbkim/valorant/HEAD/tools/unpack/unpack.py --------------------------------------------------------------------------------