Cookies should not have a long expiration
このページは日本語には対応しておりません。随時翻訳に取り組んでいます。
翻訳に関してご質問やご意見ございましたら、
お気軽にご連絡ください。
ID: java-security/cookies-persistence
Language: Java
Severity: Warning
Category: Security
CWE: 539
Description
Cookie should not persist for too long. If the computer that stores the cookie is attacked or breached, this can lead to a potential account compromise.
Cookies should not be stored too long and should not be used to store sensitive data (such as personal identifiable information).
Learn More
Non-Compliant Code Examples
class NotCompliant {
public void setCookie(String field, String value) {
Cookie cookie = new Cookie("field", value);
// Set Cookie for a year
cookie.setMaxAge(2592000);
}
}
Compliant Code Examples
class Compliant {
public void setCookie(String field, String value) {
Cookie cookie = new Cookie("field", value);
// Set Cookie for a month
cookie.setMaxAge(216000);
}
}