防止別人盜鏈的好方法推薦
更新時(shí)間:2007年01月02日 00:00:00 作者:
在瀏覽器的地址欄里直接輸入一個(gè)doc或xls或jpg的文件的url路徑,那么該文件會(huì)直接顯示在瀏覽器里。而在很多時(shí)候我們希望能直接彈出下載提示框讓用戶下載,我們該怎么辦呢?這里有兩種方法:
1、設(shè)置你的服務(wù)器的iis,給doc等后綴名做映射
2、在向客戶端發(fā)送時(shí)設(shè)置其contenttype
下面詳細(xì)說明方法2
<%
Response.Buffer = true
Response.Clear
dim url
Dim fso,fl,flsize
dim Dname
Dim objStream,ContentType,flName,isre,url1
'*********************************************調(diào)用時(shí)傳入的下載文件名
Dname=trim(request("n"))
'******************************************************************
If Dname<>"" Then
'******************************下載文件存放的服務(wù)端目錄
url=server.MapPath("/")&"\"&Dname
'***************************************************
End If
Set fso=Server.CreateObject("Scripting.FileSystemObject")
Set fl=fso.getfile(url)
flsize=fl.size
flName=fl.name
Set fl=Nothing
Set fso=Nothing
%>
<%
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile url
Select Case lcase(Right(flName, 4))
Case ".asf"
ContentType = "video/x-ms-asf"
Case ".avi"
ContentType = "video/avi"
Case ".doc"
ContentType = "application/msword"
Case ".zip"
ContentType = "application/zip"
Case ".xls"
ContentType = "application/vnd.ms-excel"
Case ".gif"
ContentType = "image/gif"
Case ".jpg", "jpeg"
ContentType = "image/jpeg"
Case ".wav"
ContentType = "audio/wav"
Case ".mp3"
ContentType = "audio/mpeg3"
Case ".mpg", "mpeg"
ContentType = "video/mpeg"
Case ".rtf"
ContentType = "application/rtf"
Case ".htm", "html"
ContentType = "text/html"
Case ".txt"
ContentType = "text/plain"
Case Else
ContentType = "application/octet-stream"
End Select
Response.AddHeader "Content-Disposition", "attachment; filename=" & flName
Response.AddHeader "Content-Length", flsize
Response.Charset = "UTF-8"
Response.ContentType = ContentType
Response.BinaryWrite objStream.Read
Response.Flush
response.Clear()
objStream.Close
Set objStream = Nothing
%>
將下面的東西存成download.asp然后你就可以用<a herf="http://xxx.xxx.com/download.asp?n=fi ... t;download!</a>來下載同一目錄下的file.doc了!
但是這里有個(gè)問題就是直接將file.doc路徑寫在url里是不安全的,所以解決方案應(yīng)該是將file.doc的路徑存到數(shù)據(jù)庫里,同過查找數(shù)據(jù)庫后得到路徑
在這個(gè)程序的最前面如果加上一個(gè)判斷:
if instr(Request.ServerVariables("HTTP_REFERER"),"http://你的域名")=0 then
Response.End
end if
就能夠很好的防止別人的盜鏈了
1、設(shè)置你的服務(wù)器的iis,給doc等后綴名做映射
2、在向客戶端發(fā)送時(shí)設(shè)置其contenttype
下面詳細(xì)說明方法2
<%
Response.Buffer = true
Response.Clear
dim url
Dim fso,fl,flsize
dim Dname
Dim objStream,ContentType,flName,isre,url1
'*********************************************調(diào)用時(shí)傳入的下載文件名
Dname=trim(request("n"))
'******************************************************************
If Dname<>"" Then
'******************************下載文件存放的服務(wù)端目錄
url=server.MapPath("/")&"\"&Dname
'***************************************************
End If
Set fso=Server.CreateObject("Scripting.FileSystemObject")
Set fl=fso.getfile(url)
flsize=fl.size
flName=fl.name
Set fl=Nothing
Set fso=Nothing
%>
<%
Set objStream = Server.CreateObject("ADODB.Stream")
objStream.Open
objStream.Type = 1
objStream.LoadFromFile url
Select Case lcase(Right(flName, 4))
Case ".asf"
ContentType = "video/x-ms-asf"
Case ".avi"
ContentType = "video/avi"
Case ".doc"
ContentType = "application/msword"
Case ".zip"
ContentType = "application/zip"
Case ".xls"
ContentType = "application/vnd.ms-excel"
Case ".gif"
ContentType = "image/gif"
Case ".jpg", "jpeg"
ContentType = "image/jpeg"
Case ".wav"
ContentType = "audio/wav"
Case ".mp3"
ContentType = "audio/mpeg3"
Case ".mpg", "mpeg"
ContentType = "video/mpeg"
Case ".rtf"
ContentType = "application/rtf"
Case ".htm", "html"
ContentType = "text/html"
Case ".txt"
ContentType = "text/plain"
Case Else
ContentType = "application/octet-stream"
End Select
Response.AddHeader "Content-Disposition", "attachment; filename=" & flName
Response.AddHeader "Content-Length", flsize
Response.Charset = "UTF-8"
Response.ContentType = ContentType
Response.BinaryWrite objStream.Read
Response.Flush
response.Clear()
objStream.Close
Set objStream = Nothing
%>
將下面的東西存成download.asp然后你就可以用<a herf="http://xxx.xxx.com/download.asp?n=fi ... t;download!</a>來下載同一目錄下的file.doc了!
但是這里有個(gè)問題就是直接將file.doc路徑寫在url里是不安全的,所以解決方案應(yīng)該是將file.doc的路徑存到數(shù)據(jù)庫里,同過查找數(shù)據(jù)庫后得到路徑
在這個(gè)程序的最前面如果加上一個(gè)判斷:
if instr(Request.ServerVariables("HTTP_REFERER"),"http://你的域名")=0 then
Response.End
end if
就能夠很好的防止別人的盜鏈了
相關(guān)文章
ASP 相關(guān)文章或者相關(guān)產(chǎn)品
以下僅提供相關(guān)思路和關(guān)鍵代碼,并且只提供一種最簡單的算法實(shí)現(xiàn),稍復(fù)雜的本文不做介紹。2009-05-05ASP 獲取文件擴(kuò)展名函數(shù)getFileExt()
利用了asp的instrrev獲取最后.的位置,然后進(jìn)行截取,大家可以自己測試,其實(shí)編程過程也是大量的測試,慢慢就會(huì)發(fā)現(xiàn)更多的好東西。2009-08-08一想千開PJblog審核功能補(bǔ)丁 v2.0版 發(fā)布
終于完成這個(gè) PJblog審核功能補(bǔ)丁 了,在此要向一直期待的bloger們說身抱歉了~因?yàn)闀r(shí)間關(guān)系,前幾天才動(dòng)手……有好多朋友都問了我?guī)讉€(gè)月了~實(shí)在實(shí)在不好意思。2008-03-03關(guān)于網(wǎng)站文件自動(dòng)備份程序的一點(diǎn)思考
關(guān)于網(wǎng)站文件自動(dòng)備份程序的一點(diǎn)思考...2006-12-12asp水印組件之AspJpeg的結(jié)合代碼實(shí)例
AspJpeg的應(yīng)用 最近在進(jìn)行新的主頁系統(tǒng)的制作,當(dāng)中用到了ASPJPEG操作,從網(wǎng)上早了些資料2008-01-01