Advisory Database
  • Advisories
  • Dependency Scanning
  1. npm
  2. ›
  3. parse
  4. ›
  5. GMS-2020-422

GMS-2020-422: Storing Password in Local Storage

July 23, 2020 (updated September 22, 2021)

The setPassword method (http://parseplatform.org/Parse-SDK-JS/api/2.9.1/Parse.User.html#setPassword) stores the user’s password in localStorage as raw text making it vulnerable to anyone with access to your localStorage. We believe this is the only time that password is stored at all. In the documentation under Users > Signing Up, it clearly states, “We never store passwords in plaintext, nor will we ever transmit passwords back to the client in plaintext.”

Example Code:

async () => {
 const user = Parse.User.current()
 if (user) {
 user.setPassword('newpass')
 await user.save()
 }
}

After running the above code, the new password will be stored in localStorage as a property named “password”.

Proposed Solution: Before saving anything to localStorage, Parse should strip out any properties named “password” that are attempting to be stored with a Parse.User type object.

Configuration: Parse SDK: Parse Server:

References

  • github.com/advisories/GHSA-wvh7-5p38-2qfc
  • github.com/parse-community/Parse-SDK-JS/commit/d1106174571b699f972929dd7cbb8e45b5283cbb
  • github.com/parse-community/Parse-SDK-JS/security/advisories/GHSA-wvh7-5p38-2qfc

Code Behaviors & Features

Detect and mitigate GMS-2020-422 with GitLab Dependency Scanning

Secure your software supply chain by verifying that all open source dependencies used in your projects contain no disclosed vulnerabilities. Learn more about Dependency Scanning →

Affected versions

All versions before 2.10.0

Fixed versions

  • 2.10.0

Solution

Upgrade to version 2.10.0 or above.

Source file

npm/parse/GMS-2020-422.yml

Spotted a mistake? Edit the file on GitLab.

  • Site Repo
  • About GitLab
  • Terms
  • Privacy Statement
  • Contact

Page generated Wed, 14 May 2025 12:15:15 +0000.