Asp.net 圖片檔案防盜鏈(尊重勞動成果)及BeginRequest事件學習

來源:互聯網
上載者:User

關於圖片盜鏈這個問題,畢竟是自己的勞動成功,很多人不希望別人就那麼輕易地偷走了。 這個功能在很多的論壇上都具有,可能是因為盜鏈的行為太多了吧

反盜鏈的程式其實很簡單,熟悉ASP.NET 應用程式生命週期的話很容易就可以寫一個,運用HttpModule在BeginRequest事件中攔截請求就ok了,剩下的工作就是過濾,再過濾!

如果不熟悉HttpModule的話,可以去MSDN上查閱,介紹非常詳細,地址:ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.chs/dv_aspnetcon/html/f1d2910f-61d0-4541-8af8-c3c108ca351f.htm.這裡就不廢話了 複製代碼 代碼如下:private void Application_BeginRequest(Object source, EventArgs e)
{
HttpApplication application = (HttpApplication)source;
HttpContext context = application.Context;
bool isSafe = true; //是否合法連結
string uri = context.Request.Url.AbsolutePath.ToLower();
if (uri.LastIndexOf(“.”) > 0 && context.Request.UrlReferrer != null)
{
string exp = uri.Substring(uri.LastIndexOf(“.”));
//這裡是判斷檔案尾碼名是否在排除的檔案類型列表之內
bool isHas = ClassLibrary.RData.RString.StrIsIncUseSC(exp, config.ImgSafeType.Split(‘|'));
if (isHas)
{
string domainOutter = context.Request.UrlReferrer.Authority.ToLower(); //包含網域名稱和連接埠
ArrayList arry = Common.Cache.GetDomainValid();//取系統定義的合法的網域名稱繫結資料行表
isSafe = arry.Contains(domainOutter); //判斷當前請求的網域名稱是否在合法列表之內
}
}
//下面就是不合法的時候的輸出了,如果有預設替代圖片則輸出,如果沒有就產生一個,格式為。gif
if (!isSafe)
{
Bitmap img = null;
Graphics g = null;
MemoryStream ms = null;

try
{
string picPath = ClassLibrary.RPath.GetFullDirectory(“images/unlawful.gif”);
if (File.Exists(picPath))
{
img = new Bitmap(picPath, false);
}
else
{
img = new Bitmap(**, **);
g = Graphics.FromImage(img);
g.Clear(Color.White);
Font f = new Font(“宋體,黑體,Arial”, 9,FontStyle.Bold);
SolidBrush s = new SolidBrush(Color.Red);
g.DrawString(Resources.Message.LawlessLink, f, s, 1, 20);
img.Save(picPath, ImageFormat.Gif);
}
ms = new MemoryStream();
img.Save(ms, ImageFormat.Gif);
context.Response.ClearContent();
context.Response.ContentType = “image/Gif”;
context.Response.BinaryWrite(ms.ToArray());
context.Response.End();
}
catch
{ }
finally
{
if(g != null )
g.Dispose();
img.Dispose();
}
}
}

凡是有利必有害,這樣做最大的缺點就是增加了系統開銷,用戶端的每一請求都要過濾一遍,效能自然要打折扣了。不知道哪位朋友有更好的辦法,或者最佳化的方法,一起來探討探討

實現檔案放盜鏈的功能再續
首先添加一個通用檔案 Global.asax
在 Application_BeginRequest中我們可以判斷Http報文頭中的UrlReferre是否來源本站。 複製代碼 代碼如下:if (HttpContext.Current.Request.UrlReferrer != null)
{
if (HttpContext.Current.Request.Url.AbsolutePath.EndsWith("jpg", StringComparison.OrdinalIgnoreCase) && HttpContext.Current.Request.UrlReferrer.Host != "localhost")
{
HttpContext.Current.Response.WriteFile(HttpContext.Current.Server.MapPath("~/jzdl.jpg"));
HttpContext.Current.Response.End();
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.