浏覽器的會話使用存儲在 SessionID 屬性中的唯一標識符進行標識。會話 ID 使 ASP.Net 應用程序能夠將特定的浏覽器與 Web 服務器上相關的會話數據和信息相關聯。會話 ID 的值在浏覽器和 Web 服務器間通過 Cookie 進行傳輸,如果指定了無 CookIE 會話,則通過 URL 進行傳輸。
ASP.NET 通過自動在頁的 URL 中插入唯一的會話 ID 來保持無 CookIE 會話狀態。例如,下面的 URL 已被 ASP.Net 修改,以包含唯一的會話 ID lit3py55t21z5v55vlm25s55:
http://www.example.com/s(lit3py55t21z5v55vlm25s55)/orderform.ASPx
如果一個包含無 CookIE SessionID 的鏈接被多個浏覽器共享時(可能通過搜索引擎或其他程序),此行為可能導致對會話數據的意外共享。可以通過禁用會話標識符的回收來降低多個客戶端共享會話數據的可能性。為此,將 sessionState 配置元素的 regenerateExpiredSessionId 屬性設置為 true。這樣,在使用已過期的會話 ID 發起無 CookIE 會話請求時,將生成一個新的會話 ID。
——摘自 MSDN
.NET2.0中我們已可以通過重寫SessionIDManager 類來改變SessionID 的生成機制和驗證方法來防止會話數據的意外共享(即出現多個浏覽器被識別為同一個會話,共用一個Session),可在.Net1.1中卻沒有相關的類讓我們改變SessionID 的生成機制(封裝死了),但受一篇文章的啟發,我們可以在SessionID 生成之後對它進行處理。文章是老外寫的,由於本人閱讀能力有限,偶可沒時間去看一大版唧唧歪歪的鷹文,直接下了代碼來看。還好代碼不算多,思路也很清晰,大概了解了他實現重寫SessionID的原理,我改了下在無CookIE 會話中完美實現了。
相關代碼
using System;
using System.Web;
using System.Web.SessionState;
using System.Web.Security;
using System.Configuration;
using System.Security.Cryptography;
using System.Runtime.Serialization;
using System.Globalization;
using System.Text;
public class SecureSessionModule : IHttpModule
{
private static string _ValidationKey = null;
public void Init (HttpApplication app)
{
if (_ValidationKey == null)
_ValidationKey = GetValidationKey ();
app.AcquireRequestState+=new EventHandler(app_AcquireRequestState);
}
void app_AcquireRequestState (Object sender, EventArgs e)
{
_ValidationKey=GetValidationKey();//每天生成一個KEY提高安全性
HttpContext current&nbs
p; = ((HttpApplication) sender).Context;
//將處理後的SessionID存在Session["ASP.Net_SessionID"]中
string sessionid = GetSession (current, "ASP.Net_SessionID");
if (sessionid != null)
{
if (sessionid.Length <= 24)
RedirectUrl(current);
string id = sessionid.Substring (0, 24);
string Mac1 = sessionid.Substring (24);
string mac2 = GetSessionIDMac (id, current.Request.UserHostAddress, current.Request.UserAgent, _ValidationKey);
// 用戶客戶端信息發生的變化,比對失敗
if (String.CompareOrdinal(mac1, Mac2) != 0)
{
RedirectUrl(current);
}
}
else
{
RedirectUrl(current);
}
}
private void RedirectUrl(HttpContext current)
{
//重定向頁面以重新生成新的SessionID
current.Response.Redirect(current.Request.Url.ToString(),true);
}
private string GetValidationKey ()
{
string key = DateTime.Now.ToShortDateString();
return key;
}
private string GetSession (HttpContext current, string name)
{
object id = FindSession(current.Session,name);
if (id == null)
{
// 將用戶客戶端信息加密存儲在Session中以便比對
id= current.Session.SessionID+GetSessionIDMac (current.Session.SessionID, current.Request.UserHostAddress,
&nb
sp; current.Request.UserAgent, _ValidationKey);
current.Session[name] = id;
}
return id.ToString();
}
private object FindSession (HttpSessionState session, string name)
{
return session[name];
}
private string GetSessionIDMac (string id, string ip, string agent, string key)
{
StringBuilder builder = new StringBuilder (id, 512);
builder.Append (ip);
builder.Append (agent);
using (HMACSHA1 hmac = new HMacSHA1 (Encoding.UTF8.GetBytes (key)))
{
return Convert.ToBase64String (hMac.ComputeHash (
Encoding.UTF8.GetBytes (builder.ToString ())));
}
}
public void Dispose () {}
}相關配置如下:
<configuration>
<system.web>
<httpModules>
<add name="SecureSession" type="SecureSessionModule,SecureSessionModule" />
</httpModules>
</system.web>
</configuration>
大家看了代碼後就會知道,它實現的原理主要是因為不可能有相同IP電腦客戶端同時訪問一台服務器,當出現SessionID相同但他們客戶端信息不同時就自動將後一個訪問的客戶端重定向以新建一個會話。
遺憾的是在WAP上應用時就有問題了,由於客戶端信息沒IP唯一標識(移動不給手機號信息了),所以如果相同型號的手機訪問時就無法區分,不知哪位高人有沒更好的解決辦法,還望不吝賜教
題外話:工作忙,時間緊,抄得多,寫得少,有問題,請留言。歡迎大家多交流溝通~~~
http://www.cnblogs.com/outman2008/archive/2007/02/25/655804.Html