久久久久无码精品,四川省少妇一级毛片,老老熟妇xxxxhd,人妻无码少妇一区二区

ASP的SQL防注入過濾涵數(shù)

時間:2024-09-01 10:00:01 SQL 我要投稿
  • 相關(guān)推薦

ASP的SQL防注入過濾涵數(shù)

  ASP最新SQL防注入過濾涵數(shù)

  Function Checkstr(Str)

  If Isnull(Str) Then

  CheckStr = ""

  Exit Function

  End If

  Str = Replace(Str,Chr(0),"", 1, -1, 1)

  Str = Replace(Str, """", """, 1, -1, 1)

  Str = Replace(Str,"<;","<; str="Replace(Str,"">;",">;", 1, -1, 1)

  Str = Replace(Str, "script", "script", 1, -1, 0)

  Str = Replace(Str, "SCRIPT", "SCRIPT", 1, -1, 0)

  Str = Replace(Str, "Script", "Script", 1, -1, 0)

  Str = Replace(Str, "script", "Script", 1, -1, 1)

  Str = Replace(Str, "object", "object", 1, -1, 0)

  Str = Replace(Str, "OBJECT", "OBJECT", 1, -1, 0)

  Str = Replace(Str, "Object", "Object", 1, -1, 0)

  Str = Replace(Str, "object", "Object", 1, -1, 1)

  Str = Replace(Str, "applet", "applet", 1, -1, 0)

  Str = Replace(Str, "APPLET", "APPLET", 1, -1, 0)

  Str = Replace(Str, "Applet", "Applet", 1, -1, 0)

  Str = Replace(Str, "applet", "Applet", 1, -1, 1)

  Str = Replace(Str, "[", "[")

  Str = Replace(Str, "]", "]")

  Str = Replace(Str, """", "", 1, -1, 1)

  Str = Replace(Str, "=", "=", 1, -1, 1)

  Str = Replace(Str, "’", "’’", 1, -1, 1)

  Str = Replace(Str, "select", "select", 1, -1, 1)

  Str = Replace(Str, "execute", "execute", 1, -1, 1)

  Str = Replace(Str, "exec", "exec", 1, -1, 1)

  Str = Replace(Str, "join", "join", 1, -1, 1)

  Str = Replace(Str, "union", "union", 1, -1, 1)

  Str = Replace(Str, "where", "where", 1, -1, 1)

  Str = Replace(Str, "", "", 1, -1, 1)

  Str = Replace(Str, "", "", 1, -1, 1)

  Str = Replace(Str, "update", "update", 1, -1, 1)

  Str = Replace(Str, "like", "like", 1, -1, 1)

  Str = Replace(Str, "drop", "drop", 1, -1, 1)

  Str = Replace(Str, "create", "create", 1, -1, 1)

  Str = Replace(Str, "rename", "rename", 1, -1, 1)

  Str = Replace(Str, "count", "count", 1, -1, 1)

  Str = Replace(Str, "chr", "chr", 1, -1, 1)

  Str = Replace(Str, "mid", "mid", 1, -1, 1)

  Str = Replace(Str, "truncate", "truncate", 1, -1, 1)

  Str = Replace(Str, "nchar", "nchar", 1, -1, 1)

  Str = Replace(Str, "char", "char", 1, -1, 1)

  Str = Replace(Str, "alter", "alter", 1, -1, 1)

  Str = Replace(Str, "cast", "cast", 1, -1, 1)

  Str = Replace(Str, "exists", "exists", 1, -1, 1)

  Str = Replace(Str,Chr(13),"<;br>;", 1, -1, 1)

  CheckStr = Replace(Str,"’","’’", 1, -1, 1)

  End Function

 

【ASP的SQL防注入過濾涵數(shù)】相關(guān)文章:

PHP防止SQL注入的例子09-25

ASP.NET連SQL7接口的源代碼06-06

過濾HTML代碼08-29

oracle的sql語句01-21

SQL優(yōu)化大全09-09

Cisco路由的過濾命令06-04

SQL查詢語句大全10-24

SQL語句的理解原則10-05

PHP對象注入的實(shí)例分析08-27

ASP提速技巧08-05