mirror of
https://github.com/github/codeql.git
synced 2025-12-21 03:06:31 +01:00
9 lines
178 B
C#
9 lines
178 B
C#
class CookieWithOverlyBroadPathFix
|
|
{
|
|
static public void AddCookie()
|
|
{
|
|
HttpCookie cookie = new HttpCookie("sessionID");
|
|
cookie.Path = "/ebanking";
|
|
}
|
|
}
|