├── .gitignore ├── README.md ├── access_token.py ├── data ├── DeviceEnrollmentWebService.xml └── enroll.json ├── eprt.py ├── golden_jwt.py ├── output └── .keep └── register_device.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/README.md -------------------------------------------------------------------------------- /access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/access_token.py -------------------------------------------------------------------------------- /data/DeviceEnrollmentWebService.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/data/DeviceEnrollmentWebService.xml -------------------------------------------------------------------------------- /data/enroll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/data/enroll.json -------------------------------------------------------------------------------- /eprt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/eprt.py -------------------------------------------------------------------------------- /golden_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/golden_jwt.py -------------------------------------------------------------------------------- /output/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /register_device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xpn/adfstoolkit/HEAD/register_device.py --------------------------------------------------------------------------------