C#實現的訪盜鏈的FileHandler

bdnp 10年前發布 | 3K 次閱讀 C#

C#實現的訪盜鏈的FileHandler

/// <summary>
/// 訪盜鏈的FileHandler
/// </summary>
public class FileHandler:IHttpHandler
{
public FileHandler()
{
//
// TODO: 在此處添加構造函數邏輯
//
}

public void ProcessRequest(HttpContext context) { if ((context.Request.UrlReferrer == null) || (context.Request.UrlReferrer.Host == "localhost" && context.Request.UrlReferrer.Port == 16490)) { context.Response.Expires = 0; context.Response.Clear(); context.Response.ContentType = "rar"; context.Response.WriteFile(context.Request.PhysicalPath); context.Response.End(); } else //如果不是本地引用,則屬于盜鏈引用, {

HttpResponse response = context.Response; response.Redirect(context.Request.ApplicationPath + "/ErrorPage.htm"); }

} public bool IsReusable { get { return false; } } }</pre>

 本文由用戶 bdnp 自行上傳分享,僅供網友學習交流。所有權歸原作者,若您的權利被侵害,請聯系管理員。
 轉載本站原創文章,請注明出處,并保留原始鏈接、圖片水印。
 本站是一個以用戶分享為主的開源技術平臺,歡迎各類分享!