mirror of
https://github.com/github/codeql.git
synced 2026-03-04 22:56:47 +01:00
10 lines
224 B
C#
10 lines
224 B
C#
class ValueShadowing
|
|
{
|
|
public bool checkCSRF(HttpRequest request)
|
|
{
|
|
string postCSRF = request["csrf"];
|
|
string cookieCSRF = request.Cookies["csrf"];
|
|
return postCSRF.Equals(cookieCSRF);
|
|
}
|
|
}
|