溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MVC過(guò)濾整個(gè)項(xiàng)目輸入關(guān)鍵字

發(fā)布時(shí)間:2020-07-06 14:27:58 來(lái)源:網(wǎng)絡(luò) 閱讀:273 作者:365850153 欄目:開發(fā)技術(shù)

第1步驟.新建過(guò)濾關(guān)鍵字實(shí)現(xiàn)類:Proce***equest

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Threading;

using System.Web;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;

using SaaS.Admin.Base;


namespace SaaS.Admin.Controllers

{

    public class Proce***equest

    {

        public void ProcessCheckkeyWord()

        {

            #region 過(guò)濾URL提交過(guò)來(lái)的參數(shù)【檢查是否存在關(guān)鍵字】


            string[] keywors = { "javascript", "vbscript", "jscript", "script", "eval", "<", ">", "\'", "\"", "&", "#" };

            string returnUrl="/";//url地址

            try

            {

                string httpmethodType = System.Web.HttpContext.Current.Request.HttpMethod;

                if (httpmethodType != "")

                {

                    string haskeyword = "";

                    if (httpmethodType.ToLower() == "get")

                    {

                        System.Collections.Specialized.NameValueCollection geturlparm = System.Web.HttpContext.Current.Request.QueryString;

                        if (System.Web.HttpContext.Current.Request.UrlReferrer != null) // 

                        {

                            returnUrl = System.Web.HttpContext.Current.Request.UrlReferrer.PathAndQuery.ToString();

                        }

                        int counts = geturlparm.AllKeys.Count();

                        string[] urlparms = geturlparm.AllKeys;

                        if (counts > 0 && urlparms.Length > 0)

                        {

                            for (int i = 0; i < urlparms.Length; i++)

                            {

                                string parmvalue = System.Web.HttpContext.Current.Request.QueryString[i];//對(duì)應(yīng)參數(shù)值

                                for (int j = 0; j < keywors.Length; j++)

                                {


                                    if (parmvalue != "" || !string.IsNullOrEmpty(parmvalue))

                                    {

                                        if (parmvalue.IndexOf(keywors[j].ToLower()) != -1)

                                        {

                                            haskeyword = haskeyword + keywors[j] + ",";

                                        }

                                    }

                                }

                            }

                        }

                        if (haskeyword != "")

                        {

                            string newkeyws = "";

                            if (haskeyword.EndsWith(","))

                            {

                                haskeyword = haskeyword.Substring(0, haskeyword.Length - 1);

                                #region 過(guò)濾掉重復(fù)出現(xiàn)的關(guān)鍵字符串

                                string[] keyws = haskeyword.Split(',');

                               

                                if (keyws.Length > 0)

                                {

                                    keyws = keyws.ToList().Distinct().ToArray();//過(guò)濾掉重復(fù)的字符


                                    for (int i = 0; i < keyws.Length; i++)

                                    {

                                        if (i == 0)

                                        {

                                            newkeyws = keyws[i];

                                        }

                                        else

                                        {

                                            newkeyws = newkeyws + "," + keyws[i];

                                        }

                                    }

                                }

                                newkeyws = newkeyws.Replace("\'", "'").

                                    Replace("\"", """);//把\'單引號(hào),\"雙引號(hào)修改為中文的單雙引號(hào)


                                #endregion

                            }

                            string script = "<script>window.alert('參數(shù)存在不安全字符');" + " </" + "script>";


                            string strScript = "<script charset='utf-8' Language=Javascript>if( confirm('參數(shù)存在不安全字符:" + newkeyws + "') ) {window.history.back(-1); } else { window.history.back(-1);}</script>";

                            StringBuilder sb = new StringBuilder();

                            sb.Append("<html>");

                            sb.Append("<head>");

                            sb.Append("<meta charset=\"utf-8\" />");

                            sb.Append(strScript);

                            sb.Append("</head>");

                            sb.Append("</html>");


                            System.Web.HttpContext.Current.Response.Write(sb.ToString());

                            System.Web.HttpContext.Current.Response.End();

                        }

                    }

                    else if (httpmethodType.ToLower() == "post")

                    {

                        System.Collections.Specialized.NameValueCollection urlparm = System.Web.HttpContext.Current.Request.Form;


                        if (System.Web.HttpContext.Current.Request.UrlReferrer != null) // 

                        {

                            returnUrl = System.Web.HttpContext.Current.Request.UrlReferrer.PathAndQuery.ToString();

                        }



                        int counts = urlparm.AllKeys.Count();

                        string[] urlparms = urlparm.AllKeys;

                        if (counts > 0 && urlparms.Length > 0)

                        {

                            for (int i = 0; i < urlparms.Length; i++)

                            {

                                string parmvalue = System.Web.HttpContext.Current.Request.Form[i];//對(duì)應(yīng)參數(shù)值


                                for (int j = 0; j < keywors.Length; j++)

                                {


                                    if (parmvalue != "" || !string.IsNullOrEmpty(parmvalue))

                                    {

                                        if (parmvalue.IndexOf(keywors[j].ToLower()) != -1)

                                        {

                                                haskeyword = haskeyword + keywors[j] + ",";

                                        }

                                    }

                                }

                            }

                        }

                        if (haskeyword != "")

                        {

                            if (haskeyword.EndsWith(","))

                            {

                                haskeyword = haskeyword.Substring(0, haskeyword.Length - 1);

                                #region 過(guò)濾掉重復(fù)出現(xiàn)的關(guān)鍵字符串

                                string[] keyws = haskeyword.Split(',');

                                string newkeyws = "";

                                if (keyws.Length>0)

                                {

                                    keyws = keyws.ToList().Distinct().ToArray();//過(guò)濾掉重復(fù)的字符


                                    for (int i = 0; i < keyws.Length; i++)

                                    {

                                        if (i == 0)

                                        {

                                            newkeyws = keyws[i];

                                        }

                                        else

                                        {

                                            newkeyws =newkeyws+ "," + keyws[i];

                                        }

                                    }

                                }

                                newkeyws = newkeyws.Replace("\'", "'").

                                    Replace("\"", """);//把\'單引號(hào),\"雙引號(hào)修改為中文的單雙引號(hào)

                        

                                #endregion


                                string strScript = "<script charset='utf-8' Language=Javascript>if( confirm('參數(shù)存在不安全字符:" + newkeyws + "') ) {window.history.back(-1); } else { window.history.back(-1);}</script>";

                                StringBuilder sb=new StringBuilder();

                                sb.Append("<html>");

                                    sb.Append("<head>");

                                        sb.Append("<meta charset=\"utf-8\" />");

                                        sb.Append(strScript);

                                    sb.Append("</head>");

                                sb.Append("</html>");


                                System.Web.HttpContext.Current.Response.Write(sb.ToString());

                                System.Web.HttpContext.Current.Response.End();


                                //System.Web.HttpContext.Current.Response.Write("<script charset='utf-8' Language=Javascript>if( confirm('" + GetBytesKeyWord + "" + newkeyws + "') ) {document.location.href='" + returnUrl + "'; } else { document.location.href='" + returnUrl + "' }</script>");

                                //System.Web.HttpContext.Current.Response.End();

                            }

                        }

                    }

                    else if (httpmethodType.ToLower() == "head")

                    {

                        System.Web.HttpContext.Current.Response.Write("<script language=javascript>alert('參數(shù)存在不安全字符');window.location = '" + returnUrl + "';</script>");

                        System.Web.HttpContext.Current.Response.End();

                    }

                    else

                    {

                        System.Web.HttpContext.Current.Response.Write("<script language=javascript>alert('參數(shù)存在不安全字符');window.location = '" + returnUrl + "';</script>");

                        System.Web.HttpContext.Current.Response.End();

                    }

                }

            }

            catch (Exception)

            {

                

                throw;

            }

      


            #endregion

        }


    }

}





第2步驟.在頁(yè)面  Global.asax  》Global.asax.cs 》 調(diào)用Proce***equest:ProcessCheckkeyWord()

 protected void Application_BeginRequest(object sender, EventArgs e)

        {

            #region //整個(gè)項(xiàng)目過(guò)濾關(guān)鍵字

            Proce***equest process = new Proce***equest();

            process.ProcessCheckkeyWord();

            #endregion

        }


這樣所有的頁(yè)面輸入框有關(guān)鍵字輸入都進(jìn)行過(guò)濾提示?。?/strong>

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI