狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

解決ASP圖像上傳漏洞

admin
2010年7月3日 13:26 本文熱度 6632

常聽說的asp上傳漏洞,即是將一些木馬文件修改后綴名(修改為圖像文件后綴),進行上傳。

針對此情況使用下列函數進行辨別:

'******************************************************************

'checkfiletype 函數用來檢查文件是否為圖片文件

'參數filename是本地文件的路徑

'如果是文件jpeg,gif,bmp,png圖片中的一種,函數返回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

那么在應用的時候

checkfiletype(server.mappath("cnbruce.jpg"))

或者

checkfiletype("f:/web/164/images/cnbruce.jpg"))

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


所以這個情況應用在圖像上傳中,目前的辦法是先允許該“偽圖像”文件的上傳,接著使用以上的自定義函數判斷該文件是否符合圖像的規范,若是木馬偽裝的圖像文件則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

則是先將文件上傳,接著立馬使用自定義函數判斷文件圖像類型的吻合性,fso做出刪除該文件的操作。


asp上傳漏洞還利用"\0"對filepath進行手腳操作

針對這樣的情況可使用如下函數:

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)


該文章在 2024/10/30 9:04:13 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved