Downloads:
987
Downloads of v 0.4.3:
104
Last Update:
10 Nov 2023
Package Maintainer(s):
Software Author(s):
- Luciano Mammino Tim McNamara Stefano Abalsamo Stjepan Golemac
Tags:
foss utility cli jwt helper inspector token info json-web-tokens- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
JWT Info
- 1
- 2
- 3
0.4.3 | Updated: 10 Nov 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
987
Downloads of v 0.4.3:
104
Maintainer(s):
Software Author(s):
- Luciano Mammino Tim McNamara Stefano Abalsamo Stjepan Golemac
JWT Info 0.4.3
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Luciano Mammino Tim McNamara Stefano Abalsamo Stjepan Golemac. The inclusion of Luciano Mammino Tim McNamara Stefano Abalsamo Stjepan Golemac trademark(s), if any, upon this webpage is solely to identify Luciano Mammino Tim McNamara Stefano Abalsamo Stjepan Golemac goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install JWT Info, run the following command from the command line or from PowerShell:
To upgrade JWT Info, run the following command from the command line or from PowerShell:
To uninstall JWT Info, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download jwtinfo --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade jwtinfo -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade jwtinfo -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install jwtinfo
win_chocolatey:
name: jwtinfo
version: '0.4.3'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'jwtinfo' do
action :install
source 'INTERNAL REPO URL'
version '0.4.3'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller jwtinfo
{
Name = "jwtinfo"
Version = "0.4.3"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'jwtinfo':
ensure => '0.4.3',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 31 Oct 2024.
A command line tool to get information about JWTs (Json Web Tokens).
Usage
jwtinfo
is a command line interface that allows you to inspect a given JWT. The tool currently allows to see the body of the token in JSON format. It accepts a single command line argument which should be a valid JWT.
Here's an example:
jwtinfo eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Which will print:
{"sub":"1234567890","name":"John Doe","iat":1516239022}
If you want to visualize the token header (rather than the body), you can do that by passing the --header
flag:
jwtinfo --header eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
Which will print:
{"alg":"HS256","typ":"JWT"}
You can combine the tool with other command line utilities, for instance jq
:
jwtinfo eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c | jq .
Credits
A special thank you goes to the Rust Reddit community for providing a lot of useful suggestions on how to improve this project. A special thanks goes to: mardiros, matthieum, steveklabnik1, ESBDB, Dushistov, Doddzilla7. Another huge thank you goes to the Rust stackoverflow community, especially to Denys Séguret.
Big thanks also go to Tim McNamara for conducting a live code review of this codebase.
Contributing
Everyone is very welcome to contribute to this project.
You can contribute just by submitting bugs or suggesting improvements by
opening an issue on GitHub.
MIT License
Copyright (c) 2019 Luciano Mammino & Stefano Abalsamo
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
Package can be verified like this:
1. Go to https://github.com/lmammino/jwtinfo/releases/v0.4.3, and download from there.
x86_64: https://github.com/lmammino/jwtinfo/releases/download/v0.4.3/jwtinfo-win64.exe.gz
to download the archive and extract the executable. You may wish to rename one of the files.
2. You can use one of the following methods to obtain the SHA512 checksum:
- Use powershell function 'Get-FileHash'
- Use Chocolatey utility 'checksum.exe'
checksum: ca84494f8023a7ab00b8074471bb8e59a2cb2e53038a8280c9d698ceef7029040f3372edd920e8588995732b2718ddd93ce442407d147106b67795ef5885ee36
File 'LICENSE.txt' obtained from:
https://github.com/lmammino/jwtinfo/blob/v0.4.3/LICENSE
md5: 09A9802BD51BFA95C148725A9DDF7693 | sha1: C979C606FCA38F941618FDAC51CB15D80F8EB0AB | sha256: A34DE1F643D63A5F54F064788493F938B0BF4BCE7A94DBBEC17F13937D6CA2BF | sha512: CA84494F8023A7AB00B8074471BB8E59A2CB2E53038A8280C9D698CEEF7029040F3372EDD920E8588995732B2718DDD93CE442407D147106B67795EF5885EE36
Log in or click on link to see number of positives.
- jwtinfo.0.4.3.nupkg (5aff8887d0b7) - ## / 66
- jwtinfo.exe (a34de1f643d6) - ## / 72
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
JWT Info 0.4.3 | 104 | Friday, November 10, 2023 | Approved | |
JWT Info 0.4.2 | 55 | Wednesday, November 1, 2023 | Approved | |
JWT Info 0.4.1 | 37 | Tuesday, October 31, 2023 | Approved | |
JWT Info 0.4.0 | 48 | Monday, October 23, 2023 | Approved | |
JWT Info 0.3.0 | 153 | Saturday, October 29, 2022 | Approved | |
JWT Info 0.2.3 | 55 | Friday, October 28, 2022 | Approved | |
JWT Info 0.2.2 | 48 | Friday, October 28, 2022 | Approved | |
JWT Info 0.2.1 | 52 | Tuesday, October 25, 2022 | Approved | |
JWT Info 0.2.0 | 46 | Wednesday, October 19, 2022 | Approved | |
JWT Info 0.1.10 | 53 | Monday, October 17, 2022 | Approved | |
JWT Info 0.1.9 | 54 | Saturday, October 15, 2022 | Approved | |
JWT Info 0.1.8 | 43 | Friday, October 14, 2022 | Approved | |
JWT Info 0.1.7 | 64 | Thursday, October 13, 2022 | Approved | |
JWT Info 0.1.6 | 49 | Wednesday, October 12, 2022 | Approved | |
JWT Info 0.1.5 | 55 | Saturday, October 8, 2022 | Approved | |
jwtinfo 0.1.4 | 71 | Sunday, September 11, 2022 | Approved |
Copyright © 2019 - 2023 Luciano Mammino & Stefano Abalsamo
What's Changed
- fix: Panic with no args. Fixes #34 by @lmammino in https://github.com/lmammino/jwtinfo/pull/35
Full Changelog: https://github.com/lmammino/jwtinfo/compare/v0.4.2...v0.4.3
-
- vcredist140 (≥ 14.20.27508.1)
Ground Rules:
- This discussion is only about JWT Info and the JWT Info package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or JWT Info, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.