主頁 > 知識庫 > ASP下的兩個防止SQL注入式攻擊的Function

ASP下的兩個防止SQL注入式攻擊的Function

熱門標簽:調(diào)度系統(tǒng)外呼 伊春外呼業(yè)務(wù)系統(tǒng) 福建外呼增值業(yè)務(wù)線路 宜賓語音外呼系統(tǒng)軟件 中國辦理電信400電話 電銷機器人教育 綿陽防封電銷卡價格 電銷機器人源碼網(wǎng)盤下載 河北智能外呼系統(tǒng)軟件
用于防止sql注入攻擊的 函數(shù),大家可以直接用了,不過大家光會用不行,要增強安全意識
復(fù)制代碼 代碼如下:

'==========================
'過濾提交表單中的SQL
'==========================
function ForSqlForm()
dim fqys,errc,i,items
dim nothis(18)
nothis(0)="net user"
nothis(1)="xp_cmdshell"
nothis(2)="/add"
nothis(3)="exec%20master.dbo.xp_cmdshell"
nothis(4)="net localgroup administrators"
nothis(5)="select"
nothis(6)="count"
nothis(7)="asc"
nothis(8)="char"
nothis(9)="mid"
nothis(10)="'"
nothis(11)=":"
nothis(12)=""""
nothis(13)="insert"
nothis(14)="delete"
nothis(15)="drop"
nothis(16)="truncate"
nothis(17)="from"
nothis(18)="%"
'nothis(19)="@" 
errc=false
for i= 0 to ubound(nothis)
  for each items in request.Form
  if instr(request.Form(items),nothis(i))>0 then
   response.write("div>")
   response.write("你所填寫的信息:"  server.HTMLEncode(request.Form(items))  "br>含非法字符:"  nothis(i))
   response.write("/div>")
   response.write("對不起,你所填寫的信息含非法字符!a href=""#"" onclick=""history.back()"">返回/a>")
   response.End()
  end if
  next
next
end function
'==========================
'過濾查詢中的SQL
'==========================
function ForSqlInjection()
dim fqys,errc,i
dim nothis(19)
fqys = request.ServerVariables("QUERY_STRING")
nothis(0)="net user"
nothis(1)="xp_cmdshell"
nothis(2)="/add"
nothis(3)="exec%20master.dbo.xp_cmdshell"
nothis(4)="net localgroup administrators"
nothis(5)="select"
nothis(6)="count"
nothis(7)="asc"
nothis(8)="char"
nothis(9)="mid"
nothis(10)="'"
nothis(11)=":"
nothis(12)=""""
nothis(13)="insert"
nothis(14)="delete"
nothis(15)="drop"
nothis(16)="truncate"
nothis(17)="from"
nothis(18)="%"
nothis(19)="@" 
errc=false
for i= 0 to ubound(nothis)
if instr(FQYs,nothis(i))>0 then
errc=true
end if
next
if errc then
response.write "查詢信息含非法字符!a href=""#"" onclick=""history.back()"">返回/a>"
response.end
end if
end function

標簽:延邊 電商邀評 那曲 河池 優(yōu)質(zhì)小號 銅川 蘇州 新鄉(xiāng)

巨人網(wǎng)絡(luò)通訊聲明:本文標題《ASP下的兩個防止SQL注入式攻擊的Function》,本文關(guān)鍵詞  ASP,下,的,兩個,防止,SQL,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP下的兩個防止SQL注入式攻擊的Function》相關(guān)的同類信息!
  • 本頁收集關(guān)于ASP下的兩個防止SQL注入式攻擊的Function的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章