zoukankan      html  css  js  c++  java
  • 全局处理程序图片防盗链

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.Security;
    using System.Web.SessionState;

    namespace WebApp
    {
        public class Global : System.Web.HttpApplication
        {
            
            //protected void Application_AcquireRequestState(object sender, EventArgs e)
            //{
                
            //}

            protected void Application_BeginRequest(object sender, EventArgs e)
            {
                //判断当前请求,是否请求的images文件夹
                //
                if (Request.RawUrl.ToLower().Contains("/images/"))
                {
                    Response.ContentType = "image/jpeg";

                    //判断域名是否相当
                    Uri referrer = Request.UrlReferrer;
                    Uri url = Request.Url;
                    //盗链请求,输出放盗链图片
                    if (!Compare(url, referrer))
                    {
                        string path = Request.MapPath("~/images/daolian.jpg");
                        Response.WriteFile(path);
                        Response.End();
                    }
                }


                
            }

            bool Compare(Uri u1, Uri u2)
            {
                return Uri.Compare(u1,u2, UriComponents.HostAndPort, UriFormat.SafeUnescaped, StringComparison.CurrentCultureIgnoreCase) == 0;
            }

            protected void Application_AuthenticateRequest(object sender, EventArgs e)
            {

            }


            protected void Application_Start(object sender, EventArgs e)
            {
                
            }

            protected void Session_Start(object sender, EventArgs e)
            {

            }

           

            protected void Application_Error(object sender, EventArgs e)
            {
                //Context.Server.GetLastError();
            }

            protected void Session_End(object sender, EventArgs e)
            {

            }

            protected void Application_End(object sender, EventArgs e)
            {

            }
        }
    }

  • 相关阅读:
    2019.4.26 周五 阴转小雨
    2019.4.25 周四 阴有小雨
    2019.4.24 周三 阴
    2019.4.23 周二 阴
    2019.4.22 周一 阴转小雨
    oracle优化(一)
    Opencv-Python学习笔记(二)
    Opencv-Python学习笔记(一)
    XtraGrid实现checkbox全选功能
    XtraGrid中checkbox状态设置
  • 原文地址:https://www.cnblogs.com/eric-gms/p/3474670.html
Copyright © 2011-2022 走看看