主頁 > 知識庫 > 解決ASP(圖像)上傳漏洞的方法

解決ASP(圖像)上傳漏洞的方法

熱門標(biāo)簽:沈陽電話機器人公司 鄢陵學(xué)校如何做地圖標(biāo)注 長春公司外呼系統(tǒng)中心 虛擬電話外呼系統(tǒng) 成都ai外呼系統(tǒng)線路 云南便宜外呼系統(tǒng)平臺 廣東語音外呼系統(tǒng)公司 鄭州智能外呼電銷機器人廠家 沈陽三五防封電銷卡
經(jīng)常聽說的ASP上傳漏洞,即是將一些木馬文件修改后綴名(修改為圖像文件后綴),進(jìn)行上傳。

針對此情況使用下列函數(shù)進(jìn)行辨別:



%
'******************************************************************
'CheckFileType 函數(shù)用來檢查文件是否為圖片文件
'參數(shù)filename是本地文件的路徑
'如果是文件jpeg,gif,bmp,png圖片中的一種,函數(shù)返回true,否則返回false
'******************************************************************

const adTypeBinary=1

dim jpg(1):jpg(0)=CByte(HFF):jpg(1)=CByte(HD8)
dim bmp(1):bmp(0)=CByte(H42):bmp(1)=CByte(H4D)
dim png(3):png(0)=CByte(H89):png(1)=CByte(H50):png(2)=CByte(H4E):png(3)=CByte(H47)
dim gif(5):gif(0)=CByte(H47):gif(1)=CByte(H49):gif(2)=CByte(H46):gif(3)=CByte(H39):gif(4)=CByte(H38):gif(5)=CByte(H61)

function CheckFileType(filename)
on error resume next
CheckFileType=false
dim fstream,fileExt,stamp,i
fileExt=mid(filename,InStrRev(filename,".")+1)
set fstream=Server.createobject("ADODB.Stream")
fstream.Open
fstream.Type=adTypeBinary
fstream.LoadFromFile filename
fstream.position=0
select case fileExt
case "jpg","jpeg"
stamp=fstream.read(2)
for i=0 to 1
if ascB(MidB(stamp,i+1,1))=jpg(i) then CheckFileType=true else CheckFileType=false
next
case "gif"
stamp=fstream.read(6)
for i=0 to 5
if ascB(MidB(stamp,i+1,1))=gif(i) then CheckFileType=true else CheckFileType=false
next
case "png"
stamp=fstream.read(4)
for i=0 to 3
if ascB(MidB(stamp,i+1,1))=png(i) then CheckFileType=true else CheckFileType=false
next
case "bmp"
stamp=fstream.read(2)
for i=0 to 1
if ascB(MidB(stamp,i+1,1))=bmp(i) then CheckFileType=true else CheckFileType=false
next
end select
fstream.Close
set fseteam=nothing
if err.number>0 then CheckFileType=false
end function
%>



那么在應(yīng)用的時候
CheckFileType(server.mappath("cnbruce.jpg"))
或者
CheckFileType("F:/web/164/images/cnbruce.jpg"))

反正即是檢測驗證本地物理地址的圖像文件類型,返回 true 或 false值

所以這個情況應(yīng)用在圖像上傳中,目前的辦法是先允許該“偽圖像”文件的上傳,接著使用以上的自定義函數(shù)判斷該文件是否符合圖像的規(guī)范,若是木馬偽裝的圖像文件則FSO刪除之,比如:


file.SaveAs Server.mappath(filename) '保存文件
If not CheckFileType(Server.mappath(filename)) then
    response.write "錯誤的圖像格式"
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set ficn = fso.GetFile(Server.mappath(filename))
    ficn.delete
    set ficn=nothing
    set fso=nothing
    response.end
end if


則是先將文件上傳,接著立馬使用自定義函數(shù)判斷文件圖像類型的吻合性,F(xiàn)SO做出刪除該文件的操作。


ASP上傳漏洞還利用"\0"對filepath進(jìn)行手腳操作
http://www.cnbruce.com/blog/showlog.asp?cat_id=32log_id=635

針對這樣的情況可使用如下函數(shù)


function TrueStr(fileTrue)
str_len=len(fileTrue)
pos=Instr(fileTrue,chr(0))
if pos=0 or pos=str_len then
TrueStr=true
else
TrueStr=false
end if
end function


接著就可判斷后再做文件的上傳


if TrueStr(filename)=false then
    response.write "非法文件"
    response.end
end if

file.SaveAs Server.mappath(filename)



所以,在Blog中的一文:(ASP)文件系統(tǒng)之化境無組件(v2.0)上傳

關(guān)于upfile.asp的全新內(nèi)容如下:

[Ctrl+A 全選 注:引入外部Js需再刷新一下頁面才能執(zhí)行]

標(biāo)簽:四平 馬鞍山 遼陽 防城港 孝感 湖北 平頂山 朝陽

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《解決ASP(圖像)上傳漏洞的方法》,本文關(guān)鍵詞  解決,ASP,圖像,上傳,漏洞,;如發(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(圖像)上傳漏洞的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于解決ASP(圖像)上傳漏洞的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章