asp隐藏下载地址
如果我們知道一個靜態文件的實際路徑如:http://www.xx.com/download/51windows.pdf,如果服務器沒有作特別的限制設置,我們就可以毫不費力的把它下載下來!當網站提供51windows.pdf下載時,怎么樣才能讓下載者無法得到他的實際路徑呢!本文就來介紹如何使用Asp來隱藏文件的實際下載路徑。
我們在管理網站文件時,可以把擴展名一樣的文件放在同一個目錄下,起一個比較特別名字,例如放pdf文件目錄為the_pdf_file_s,把下面代碼另存為down.asp,他的網上路徑為http://www.xx.com/down.asp,我們就可以用http://www.xx.com/down.asp?FileName=51windows.pdf來下載這個文件了,而且下載者無法看到這個文件實際下載路徑的!在down.asp中我們還可以設置下載文件是否需要登陸,判斷下載的來源頁是否為外部網站,從而可以做到防止文件被盜鏈。
示例代碼:
<%
From_url = Cstr(Request.ServerVariables("HTTP_REFERER"))
Serv_url = Cstr(Request.ServerVariables("SERVER_NAME"))
if mid(From_url,8,len(Serv_url)) <> Serv_url then
response.write "非法鏈接!" '防止盜鏈
response.end
end if
if Request.Cookies("Logined")="" then
response.redirect "/login.asp" '需要登陸!
end if
Function GetFilelongname(longname)'/folder1/folder2/file.asp=>file.asp
while instr(longname,"/")
longname = right(longname,len(longname)-1)
wend
GetFileName = longname
End Function
Dim Stream
Dim Contents
Dim FileName
Dim TrueFileName
Dim FileExt
Const adTypeBinary = 1
FileName = Request.QueryString("FileName")
if FileName = "" Then
??? Response.Write "無效文件名!"
??? Response.End
End if
FileExt = Mid(FileName, InStrRev(FileName, ".") + 1)
Select Case UCase(FileExt)
??? Case "ASP", "ASA", "ASPX", "ASAX", "MDB"
??????? Response.Write "非法操作!"
??????? Response.End
End Select
Response.Clear
if lcase(right(FileName,3))="gif" or lcase(right(FileName,3))="jpg" or lcase(right(FileName,3))="png" then
Response.ContentType = "image/*" '對圖像文件不出現下載對話框
else
Response.ContentType = "application/ms-download"
end if
Response.AddHeader "content-disposition", "attachment; filename=" & GetFilelongname(Request.QueryString("FileName"))
Set Stream = server.CreateObject("ADODB.Stream")
Stream.Type = adTypeBinary
Stream.Open
if lcase(right(FileName,3))="pdf" then '設置pdf類型文件目錄
TrueFileName = "/the_pdf_file_s/"&FileName
end if
if lcase(right(FileName,3))="doc" then '設置DOC類型文件目錄
TrueFileName = "/my_D_O_C_file/"&FileName
end if
if lcase(right(FileName,3))="gif" or lcase(right(FileName,3))="jpg" or lcase(right(FileName,3))="png" then
TrueFileName = "/all_images_/"&FileName '設置圖像文件目錄
end if
Stream.LoadFromFile Server.MapPath(TrueFileName)
While Not Stream.EOS
??? Response.BinaryWrite Stream.Read(1024 * 64)
Wend
Stream.Close
Set Stream = Nothing
Response.Flush
Response.End
%>
-----------------------------------------
但是這個好象不支持外地連接的.
?
?
?
?
?
?
隱藏腳本地址的ASP代碼
要實現隱藏腳本地址的ASP代碼的寫法很多,首先你要有個ASP空間,然后……就不廢話了,直接看代碼吧
<%
From_url?=?Cstr(Request.ServerVariables("HTTP_REFERER"))'獲取鏈接腳本的頁面地址
if?From_url?<>?"①你要設定的地址"?then
Response.Write?"<meta?http-equiv=refresh?content=0;url=轉向地址>"
Response.End
'當鏈接腳本的地址不等于你設定的地址時自動轉向到一個地址
else
Response.Write?"②"
Response.End
end?if
%>
①處的地址,如果是用于QQ空間的簡單防盜,當然是輸入你空間的頁面地址。值得注意的是這個頁面地址并不是http://xxx.qzone.qq.com;而是加載完你的空間后出現的類似http://u13.q-zone.qq.com/cgi-bin/cgi_client_entry.cgi?uin=407765896這樣的地址
上面②處,里面可以直接寫入JS代碼,這樣就不存在什么腳本了,這個ASP本身就是腳本。
也可以寫入:var?s=document.createElement('script');s.src='腳本地址';document.body.appendChild(s);但有方法可以讓②的內容按代碼方式顯露出來(算是破解吧,暫且不說),一旦顯露出來,這個腳本地址就被暴露于外了。還有個方法可以讓即使被破解,但破解者也只能獲取到腳本文件,仍然不能獲取到正確的腳本地址。
將上面的
??Response.Write?"②"
??Response.End
換成:(以下代碼要求ASP空間支持下載性質的代碼,一般免費空間都不支持下面的代碼)
??Function?GetFileName(longname)
??while?instr(longname,"/")
??longname?=?right(longname,len(longname)-1)
??wend
??GetFileName?=?longname
??End?Function
??Dim?Stream
??Dim?Contents
??Dim?id'可以通過ASP地址直接賦值,比如xxx.asp?id=yyy
??Dim?TrueFileName
??Dim?FileExt
??Const?adTypeBinary?=?1
??id?=?Request.QueryString("id")
??'③
??FileExt?=?Mid(id,?InStrRev(id,?".")?+?1)
??Select?Case?UCase(FileExt)
??Case?"ASP",?"ASA",?"ASPX",?"ASAX",?"MDB"
??Response.Write?"<meta?http-equiv=refresh?content=0;url=轉向地址>"
??Response.End
??End?Select
??Response.Clear
??Response.AddHeader?"content-disposition",?"attachment;?filename="?&?GetFileName(Request.QueryString("id"))
??Set?Stream?=?server.CreateObject("ADODB.Stream")
??Stream.Type?=?adTypeBinary
??Stream.Open
??TrueFileName?=?"④這里就是實際腳本的地址了"
??Stream.LoadFromFile?Server.MapPath(TrueFileName)
??While?Not?Stream.EOS
??Response.BinaryWrite?Stream.Read(1024?*?64)
??Wend
??Stream.Close
??Set?Stream?=?Nothing
??Response.Flush
??Response.End
上面③處還可以加入一個判斷,比如if?id?<>?'XXX'?then?加入一行轉向什么的
上面④處的腳本地址路徑為相對路徑(不是絕對路徑),設的越復雜越好,比如
??TrueFileName?=?"../my_location/new_qzone_js/asderc9834.js"
這樣別人想用猜的來猜出腳本地址就絕對不可能了,千萬別像本空間這樣,阿K就懶得設得太復雜,相信有不少人都已經猜出阿K新方案的腳本文件名就是style04.js了
④處也可以引入id變量,比如
??TrueFileName?=?"../my_location/new_qzone_js/"?&?id?&?'.js"
這樣你在調用地址xxx.asp?id=yyy的時候,打開的就是../my_location/new_qzone_js/yyy.js
④處也可以對id值進行判斷來對文件進行分類,比如
??if?right(id,3)?=?"gif"?then
??TrueFileName?=?"images/gif/"?&?id
??else?if?right(id,2)?=?"js"?then
??TrueFileName?=?"javascript/"?&?id
??end?if
這樣,在打開xxx.asp?id=yyy.gif的時候,就會去打開images/gif/yyy.gif;打開xxx.asp?id=zzz.js的時候,就會去打開javascript/zzz.js。就算你不是用這段ASP來做隱藏腳本地址,利用這個方法來對文件進行分類管理也是非常好的。
其它的諸如使用Randomize,調用隨機函數加載不同的腳本等效果就不細說了?
總結
- 上一篇: eWebEditor 错误 (不支持 i
- 下一篇: JavaScript函数小集锦