-
Notifications
You must be signed in to change notification settings - Fork 0
/
FooSessionHelper.cs
76 lines (62 loc) · 2.27 KB
/
FooSessionHelper.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System.Configuration;
using System.Web;
using System.Web.Security;
using FooBlog.common;
using Newtonsoft.Json;
namespace FooBlog
{
public class FooSessionHelper
{
public static UserObject GetUserObjectFromCookie(HttpContext context)
{
HttpCookie cookie = context.Request.Cookies[FormsAuthentication.FormsCookieName];
if (cookie != null)
{
FormsAuthenticationTicket ticket = FormsAuthentication.Decrypt(cookie.Value);
if (ticket != null)
{
if (!string.IsNullOrEmpty(ticket.UserData))
{
return JsonConvert.DeserializeObject<UserObject>(ticket.UserData);
}
}
}
return null;
}
public static void AuthenticationCheck(HttpContext context)
{
if (!HttpContext.Current.User.Identity.IsAuthenticated)
{
context.Response.Redirect("login.aspx");
}
}
public static string SetToken(HttpContext context)
{
string value = FooStringHelper.RandomString(24);
string encryptedValue = FooCryptHelper.MachineEncrypt(value);
string cookieName = ConfigurationManager.AppSettings["CSRF Cookie Name"];
var ck = new HttpCookie(cookieName, encryptedValue)
{
Path = FormsAuthentication.FormsCookiePath
};
context.Response.Cookies.Add(ck);
return value;
}
public static bool IsValidRequest(HttpContext context, string formValue)
{
string cookieName = ConfigurationManager.AppSettings["CSRF Cookie Name"];
HttpCookie httpCookie = context.Request.Cookies[cookieName];
if (httpCookie != null)
{
string userToken = FooCryptHelper.MachineDecrypt(httpCookie.Value);
if (!FooStringHelper.IsValidAlphanumeric(userToken, 24) ||
!FooStringHelper.IsValidAlphanumeric(formValue, 24))
{
return false;
}
return userToken == formValue;
}
return false;
}
}
}