Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aramperes/jwtvoid
Utility to convert existing JWTs to the "none" algorithm
https://github.com/aramperes/jwtvoid
jwt jwt-token rust utility
Last synced: 29 days ago
JSON representation
Utility to convert existing JWTs to the "none" algorithm
- Host: GitHub
- URL: https://github.com/aramperes/jwtvoid
- Owner: aramperes
- License: mit
- Created: 2021-06-29T05:56:28.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-06-29T06:06:16.000Z (over 3 years ago)
- Last Synced: 2024-11-18T14:58:01.769Z (about 2 months ago)
- Topics: jwt, jwt-token, rust, utility
- Language: Rust
- Homepage: https://crates.io/crates/jwtvoid
- Size: 3.91 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# jwtvoid
[![Crates.io](https://img.shields.io/crates/v/jwtvoid.svg)](https://crates.io/crates/jwtvoid)
[![Crates.io](https://img.shields.io/github/v/tag/aramperes/jwtvoid?label=release)](https://github.com/aramperes/jwtvoid/releases/latest)A utility to convert existing JWTs ([JSON Web Tokens](https://jwt.io)) to
the [`none` algorithm](https://auth0.com/blog/critical-vulnerabilities-in-json-web-token-libraries/).This can be used to discover vulnerabilities in web services and JWT libraries.
## Installation
```
cargo install jwtvoid
```## Usage
```sh
# One JWT
echo "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" | jwtvoid# Multiple JWT
cat jwts.txt | jwtvoid
```## License
MIT License: see `LICENSE` file for more information.