Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
CVE-2020-15084: Express-jwt ライブラリのセキュリティアップデート
const checkJwt = jwt({ secret: jwksRsa.expressJwtSecret({ rateLimit: true, jwksRequestsPerMinute: 5, jwksUri: `https://{DOMAIN}/.well-known/jwks.json` }), // オーディエンスとIssuerを検証する。 audience: process.env.AUDIENCE, issuer: `https://{DOMAIN}/`, // 許可するアルゴリズムを制限する algorithms: ['RS256'] });