用Asp隐藏文件路径,实现防盗链 的代码

时间:2022-06-01 13:04:53

用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中我们还可以设置下载文件是否需要登陆,判断下载的来源页是否为外部网站,从而可以做到防止文件被盗链。

示例代码:

  1. <%  
  2. From_url = Cstr(Request.ServerVariables("HTTP_REFERER"))  
  3. Serv_url = Cstr(Request.ServerVariables("SERVER_NAME"))  
  4. if mid(From_url,8,len(Serv_url)) <> Serv_url then  
  5. response.write "非法链接!" '防止盗链  
  6. response.end  
  7. end if  
  8.  
  9. if Request.Cookies("Logined")="" then  
  10. response.redirect "/login.asp" '需要登陆!  
  11. end if  
  12. Function GetFileName(longname)'/folder1/folder2/file.asp=>file.asp  
  13. while instr(longname,"/")  
  14. longname = right(longname,len(longname)-1)  
  15. wend  
  16. GetFileName = longname  
  17. End Function  
  18. Dim Stream  
  19. Dim Contents  
  20. Dim FileName  
  21. Dim TrueFileName  
  22. Dim FileExt  
  23. Const adTypeBinary = 1  
  24. FileName = Request.QueryString("FileName")  
  25. if FileName = "" Then  
  26. Response.Write "无效文件名!"  
  27. Response.End  
  28. End if  
  29. FileExt = Mid(FileName, InStrRev(FileName, ".") + 1)  
  30. Select Case UCase(FileExt)  
  31. Case "ASP""ASA""ASPX""ASAX""MDB"  
  32. Response.Write "非法操作!"  
  33. Response.End  
  34. End Select  
  35. Response.Clear  
  36. if lcase(right(FileName,3))="gif" or lcase(right(FileName,3))="jpg" or lcase(right(FileName,3))="png" then  
  37. Response.ContentType = "image/*" '对图像文件不出现下载对话框  
  38. else  
  39. Response.ContentType = "application/ms-download"  
  40. end if  
  41. Response.AddHeader "content-disposition""attachment; filename=" & GetFileName(Request.QueryString("FileName"))  
  42. Set Stream = server.CreateObject("ADODB.Stream")  
  43. Stream.Type = adTypeBinary  
  44. Stream.Open  
  45. if lcase(right(FileName,3))="pdf" then '设置pdf类型文件目录  
  46. TrueFileName = "/the_pdf_file_s/"&FileName  
  47. end if   
  48. if lcase(right(FileName,3))="doc" then '设置DOC类型文件目录  
  49. TrueFileName = "/my_D_O_C_file/"&FileName  
  50. end if  
  51. if lcase(right(FileName,3))="gif" or lcase(right(FileName,3))="jpg" or lcase(right(FileName,3))="png" then  
  52. TrueFileName = "/all_images_/"&FileName '设置图像文件目录  
  53. end if  
  54. Stream.LoadFromFile Server.MapPath(TrueFileName)  
  55. While Not Stream.EOS  
  56. Response.BinaryWrite Stream.Read(1024 * 64)  
  57. Wend  
  58. Stream.Close  
  59. Set Stream = Nothing  
  60. Response.Flush  
  61. Response.End  
  62. %>