cve/2020/CVE-2020-7787.md

19 lines
1.5 KiB
Markdown
Raw Normal View History

2024-05-25 21:48:12 +02:00
### [CVE-2020-7787](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-7787)
![](https://img.shields.io/static/v1?label=Product&message=react-adal&color=blue)
![](https://img.shields.io/static/v1?label=Version&message=%3E%3D%200%20&color=brighgreen)
![](https://img.shields.io/static/v1?label=Vulnerability&message=Improper%20Authentication&color=brighgreen)
### Description
This affects all versions of package react-adal. It is possible for a specially crafted JWT token and request URL can cause the nonce, session and refresh values to be incorrectly validated, causing the application to treat an attacker-generated JWT token as authentic. The logical defect is caused by how the nonce, session and refresh values are stored in the browser local storage or session storage. Each key is automatically appended by ||. When the received nonce and session keys are generated, the list of values is stored in the browser storage, separated by ||, with || always appended to the end of the list. Since || will always be the last 2 characters of the stored values, an empty string ("") will always be in the list of the valid values. Therefore, if an empty session parameter is provided in the callback URL, and a specially-crafted JWT token contains an nonce value of "" (empty string), then adal.js will consider the JWT token as authentic.
### POC
#### Reference
- https://snyk.io/vuln/SNYK-JS-REACTADAL-1018907
2024-06-09 00:33:16 +00:00
- https://snyk.io/vuln/SNYK-JS-REACTADAL-1018907
2024-05-25 21:48:12 +02:00
#### Github
No PoCs found on GitHub currently.