mirror of
https://github.com/github/codeql.git
synced 2026-08-05 18:03:27 +02:00
12 lines
300 B
C#
12 lines
300 B
C#
using System;
|
|
|
|
class PersistentCookie
|
|
{
|
|
void M(System.Web.HttpCookie cookie)
|
|
{
|
|
cookie.Expires = DateTime.Now.AddMonths(12); // $ Alert // BAD
|
|
cookie.Expires = DateTime.Now.AddMinutes(3); // GOOD
|
|
cookie.Expires = DateTime.Now.AddSeconds(301); // $ Alert // BAD
|
|
}
|
|
}
|