Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-6g6m-m6h5-w9gf

Опубликовано: 30 июн. 2020
Источник: github
Github: Прошло ревью
CVSS3: 7.7

Описание

Authorization bypass in express-jwt

Overview

Versions before and including 5.3.3, we are not enforcing the algorithms entry to be specified in the configuration. When algorithms is not specified in the configuration, with the combination of jwks-rsa, it may lead to authorization bypass.

Am I affected?

You are affected by this vulnerability if all of the following conditions apply:

You are using express-jwt AND You do not have algorithms configured in your express-jwt configuration. AND You are using libraries such as jwks-rsa as the secret.

How to fix that?

Specify algorithms in the express-jwt configuration. The following is an example of a proper configuration

const checkJwt = jwt({ secret: jwksRsa.expressJwtSecret({ rateLimit: true, jwksRequestsPerMinute: 5, jwksUri: `https://${DOMAIN}/.well-known/jwks.json` }), // Validate the audience and the issuer. audience: process.env.AUDIENCE, issuer: `https://${DOMAIN}/`, // restrict allowed algorithms algorithms: ['RS256'] });

Will this update impact my users?

The fix provided in patch will not affect your users if you specified the algorithms allowed. The patch now makes algorithms a required configuration.

Credit

IST Group

Пакеты

Наименование

express-jwt

npm
Затронутые версииВерсия исправления

<= 5.3.3

6.0.0

EPSS

Процентиль: 45%
0.00222
Низкий

7.7 High

CVSS3

Дефекты

CWE-285
CWE-863

Связанные уязвимости

CVSS3: 7.7
nvd
больше 5 лет назад

In express-jwt (NPM package) up and including version 5.3.3, the algorithms entry to be specified in the configuration is not being enforced. When algorithms is not specified in the configuration, with the combination of jwks-rsa, it may lead to authorization bypass. You are affected by this vulnerability if all of the following conditions apply: - You are using express-jwt - You do not have **algorithms** configured in your express-jwt configuration. - You are using libraries such as jwks-rsa as the **secret**. You can fix this by specifying **algorithms** in the express-jwt configuration. See linked GHSA for example. This is also fixed in version 6.0.0.

EPSS

Процентиль: 45%
0.00222
Низкий

7.7 High

CVSS3

Дефекты

CWE-285
CWE-863