Do not store sensitive data to local storage

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: javascript-browser-security/local-storage-sensitive-data

Language: JavaScript

Severity: Warning

Category: Security

CWE: 312

Description

Do not store sensitive data in localStorage and keep the data safe from any malicious software that could read this data.

Learn More

Non-Compliant Code Examples

localStorage.setItem('user', email)

localStorage.setItem('user', user.email)

Compliant Code Examples

localStorage.setItem('user', uuid)

localStorage.setItem('user', user.id)
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis