Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/golang-jwt/jwt
A go (or 'golang' for search engine friendliness) implementation of JSON Web Tokens.
IMPORT PATH CHANGE: Starting from v3.2.1, the import path has changed from github.com/dgrijalva/jwt-go
to github.com/golang-jwt/jwt
. After the original author of the library suggested migrating the maintenance of jwt-go
, a dedicated team of open source maintainers decided to clone the existing library into this repository. See dgrijalva/jwt-go#462 for a detailed discussion on this topic.
Future releases will be using the github.com/golang-jwt/jwt
import path and continue the existing versioning scheme of v3.x.x+incompatible
. Backwards-compatible patches and fixes will be done on the v3
release branch, where as new build-breaking features will be developed in a v4
release, possibly including a SIV-style import path.
SECURITY NOTICE: Some older versions of Go have a security issue in the crypto/elliptic. Recommendation is to upgrade to at least 1.15 See issue dgrijalva/jwt-go#216 for more detail.
SECURITY NOTICE: It's important that you validate the alg
presented is what you expect. This library attempts to make it easy to do the right thing by requiring key types match the expected alg, but you should take the extra step to verify it in your usage. See the examples provided.
Our support of Go versions is aligned with Go's version release policy. So we will support a major version of Go until there are two newer major releases. We no longer support building jwt-go with unsupported Go versions, as these contain security vulnerabilities which will not be fixed.
JWT.io has a great introduction to JSON Web Tokens.
In short, it's a signed JSON object that does something useful (for example, authentication). It's commonly used for Bearer
tokens in Oauth 2. A token is made of three parts, separated by .
's. The first two parts are JSON objects, that have been base64url encoded. The last part is the signature, encoded the same way.
The first part is called the header. It contains the necessary information for verifying the last part, the signature. For example, which encryption method was used for signing and what key was used.
The part in the middle is the interesting bit. It's called the Claims and contains the actual stuff you care about. Refer to RFC 7519 for information about reserved keys and the proper way to add your own.
This library supports the parsing and verification as well as the generation and signing of JWTs. Current supported signing algorithms are HMAC SHA, RSA, RSA-PSS, and ECDSA, though hooks are present for adding your own.
See the project documentation for examples of usage:
This library publishes all the necessary components for adding your own signing methods. Simply implement the SigningMethod
interface and register a factory method using RegisterSigningMethod
.
Here's an example of an extension that integrates with multiple Google Cloud Platform signing tools (AppEngine, IAM API, Cloud KMS): https://github.com/someone1/gcp-jwt-go
This library was last reviewed to comply with RTF 7519 dated May 2015 with a few notable differences:
alg=none
will only be accepted if the constant jwt.UnsafeAllowNoneSignatureType
is provided as the key.This library is considered production ready. Feedback and feature requests are appreciated. The API should be considered stable. There should be very few backwards-incompatible changes outside of major version updates (and only with good reason).
This project uses Semantic Versioning 2.0.0. Accepted pull requests will land on main
. Periodically, versions will be tagged from main
. You can find all the releases on the project releases page.
While we try to make it obvious when we make breaking changes, there isn't a great mechanism for pushing announcements out to users. You may want to use this alternative package include: gopkg.in/golang-jwt/jwt.v3
. It will do the right thing WRT semantic versioning.
BREAKING CHANGES:*
VERSION_HISTORY.md
. See MIGRATION_GUIDE.md
for more information on updating your code.A token is simply a JSON object that is signed by its author. this tells you exactly two things about the data:
It's important to know that JWT does not provide encryption, which means anyone who has access to the token can read its contents. If you need to protect (encrypt) the data, there is a companion spec, JWE
, that provides this functionality. JWE is currently outside the scope of this library.
There are several signing methods available, and you should probably take the time to learn about the various options before choosing one. The principal design decision is most likely going to be symmetric vs asymmetric.
Symmetric signing methods, such as HSA, use only a single secret. This is probably the simplest signing method to use since any []byte
can be used as a valid secret. They are also slightly computationally faster to use, though this rarely is enough to matter. Symmetric signing methods work the best when both producers and consumers of tokens are trusted, or even the same system. Since the same secret is used to both sign and validate tokens, you can't easily distribute the key for validation.
Asymmetric signing methods, such as RSA, use different keys for signing and verifying tokens. This makes it possible to produce tokens with a private key, and allow any consumer to access the public key for verification.
Each signing method expects a different object type for its signing keys. See the package documentation for details. Here are the most common ones:
HS256
,HS384
,HS512
) expect []byte
values for signing and validationRS256
,RS384
,RS512
) expect *rsa.PrivateKey
for signing and *rsa.PublicKey
for validationES256
,ES384
,ES512
) expect *ecdsa.PrivateKey
for signing and *ecdsa.PublicKey
for validationIt's worth mentioning that OAuth and JWT are not the same thing. A JWT token is simply a signed JSON object. It can be used anywhere such a thing is useful. There is some confusion, though, as JWT is the most common type of bearer token used in OAuth2 authentication.
Without going too far down the rabbit hole, here's a description of the interaction of these technologies:
This library uses descriptive error messages whenever possible. If you are not getting the expected result, have a look at the errors. The most common place people get stuck is providing the correct type of key to the parser. See the above section on signing methods and key types.
Documentation can be found on pkg.go.dev.
The command line utility included in this project (cmd/jwt) provides a straightforward example of token creation and parsing as well as a useful tool for debugging your own integration. You'll also find several implementation examples in the documentation.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.