Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Fetch utils for JWKS keys
npm install get-jwks
const https = require('https')
const buildGetJwks = require('get-jwks')
const getJwks = buildGetJwks({
max: 100,
ttl: 60 * 1000,
allowedDomains: ['https://example.com'],
providerDiscovery: false,
agent: new https.Agent({
keepAlive: true,
}),
})
max
: Max items to hold in cache. Defaults to 100.ttl
: Milliseconds an item will remain in cache. Defaults to 60s.allowedDomains
: Array of allowed domains. By default all domains are allowed.providerDiscovery
: Indicates if the Provider Configuration Information is used to automatically get the jwks_uri from the OpenID Provider Discovery Endpoint. This endpoint is exposing the Provider Metadata. With this flag set to true the domain will be treated as the OpenID Issuer which is the iss property in the token. Defaults to false. Ignored if jwksPath is specified.jwksPath
: Specify a relative path to the jwks_uri. Example /otherdir/jwks.json
. Takes precedence over providerDiscovery. Optional.agent
: The custom agent to use for requests, as specified in node-fetch documentation. Defaults to null
.
max
andttl
are provided to lru-cache.
const buildGetJwks = require('get-jwks')
const getJwks = buildGetJwks()
const jwk = await getJwks.getJwk({
domain: 'https://example.com/',
alg: 'token_alg',
kid: 'token_kid',
})
Calling the asynchronous function getJwk
will fetch the JSON Web Key, and verify if any of the public keys matches the provided alg
(if any) and kid
values. It will cache the matching key so if called again it will not make another request to retrieve a JWKS. It will also use a cache to store stale values which is used in case of errors as a fallback mechanism.
domain
: A string containing the domain (e.g. https://www.example.com/
, with or without trailing slash) from which the library should fetch the JWKS. If providerDiscovery flag is set to false get-jwks
will add the JWKS location (.well-known/jwks.json
) to form the final url (ie: https://www.example.com/.well-known/jwks.json
) otherwise the domain will be treated as tthe openid issuer and the retrival will be done via the Provider Discovery Endpoint.alg
: The alg header parameter is an optional parameter that represents the cryptographic algorithm used to secure the token. You will find it in your decoded JWT.kid
: The kid is a hint that indicates which key was used to secure the JSON web signature of the token. You will find it in your decoded JWT.const buildGetJwks = require('get-jwks')
const getJwks = buildGetJwks()
const publicKey = await getJwks.getPublicKey({
domain: 'https://exampe.com/',
alg: 'token_alg',
kid: 'token_kid',
})
Calling the asynchronous function getPublicKey
will run the getJwk
function to retrieve a matching key, then convert it to a PEM public key. It requires the same arguments as getJwk
.
This library can be easily used with other JWT libraries.
fastify-jwt is a Json Web Token plugin for Fastify.
The following example includes a scenario where you'd like to varify a JWT against a valid JWK on any request to your Fastify server. Any request with a valid JWT auth token in the header will return a successful response, otherwise will respond with an authentication error.
const Fastify = require('fastify')
const fjwt = require('fastify-jwt')
const buildGetJwks = require('get-jwks')
const fastify = Fastify()
const getJwks = buildGetJwks()
fastify.register(fjwt, {
decode: { complete: true },
secret: (request, token, callback) => {
const {
header: { kid, alg },
payload: { iss },
} = token
getJwks
.getPublicKey({ kid, domain: iss, alg })
.then(publicKey => callback(null, publicKey), callback)
},
})
fastify.addHook('onRequest', async (request, reply) => {
await request.jwtVerify()
})
fastify.listen(3000)
fast-jwt is a fast JSON Web Token implementation.
The following example shows how to use JWKS in fast-jwt via get-jwks.
const { createVerifier } = require('fast-jwt')
const buildGetJwks = require('get-jwks')
// well known url of the token issuer
// often encoded as the `iss` property of the token payload
const domain = 'https://...'
const getJwks = buildGetJwks({ allowedDomains: [...]})
// create a verifier function with key as a function
const verifyWithPromise = createVerifier({
key: async function (token) {
const publicKey = await getJwks.getPublicKey({
kid: token.kid,
alg: token.alg,
domain,
})
return publicKey
},
})
const payload = await verifyWithPromise(token)
FAQs
Fetch utils for JWKS keys
The npm package get-jwks receives a total of 51,711 weekly downloads. As such, get-jwks popularity was classified as popular.
We found that get-jwks demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.