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)
            {

            }
        }
    }

  • 相关阅读:
    Open War I: 野王复活与视野,望远镜视野,近距离射击,远程狙击
    取石子(六)_nyoj_585(博弈-奇异矩阵).java
    (step6.1.1)hdu 1879(继续畅通工程——最小生成树、kruscal)
    iOS的@property属性和@synthesize属性
    [Python]datetime常用的几个操作
    论明天
    汉语-词语-清净:百科
    汉语-词语-解脱:百科
    汉语-词语-放下:百科
    汉语-词语-执着:百科
  • 原文地址:https://www.cnblogs.com/eric-gms/p/3474670.html
Copyright © 2011-2022 走看看