返回列表 发帖

[技术文章] 破解linkgate防盗链的方法

这些代码可以有效的破解图片防盗链系统.如网易相册.直接把下面的代码保存成pic.asp,然后用pic.asp?url=图片路径的方式调用即可.增加了缓存技术.效果不错.(如果缓存技术比较慢.可以省略).


<%
'盗链判断
dim server_v1,server_v2
server_v1=cstr(request.servervariables("http_referer"))
server_v2=cstr(request.servervariables("server_name"))
if mid(server_v1,8,len(server_v2))<>server_v2 then
response.write "非法的盗链"
response.end
end if

dim url, body, mycache

url = request.querystring("url")

set mycache = new cache
mycache.name = "picindex"&amp;url
if mycache.valid then
body = mycache.value
else
body = getwebdata(url)
mycache.add body,dateadd("d",1,now)
end if

if err.number = 0 then
response.charset = "utf-8"
response.contenttype = "application/octet-stream"
response.binarywrite body
response.flush
else
wscript.echo err.description
end if

'取得数据
public function getwebdata(byval strurl)
dim curlpath
curlpath = mid(strurl,1,instr(8,strurl,"/"))
dim retrieval
set retrieval = server.createobject("microsoft.xmlhttp")
with retrieval
.open "get", strurl, false,"",""
.setrequestheader "referer", curlpath
.send
getwebdata =.responsebody
end with
set retrieval = nothing
end function

'cache类

class cache
private obj 'cache内容
private expiretime '过期时间
private expiretimename '过期时间application名
private cachename 'cache内容application名
private path 'url

private sub class_initialize()
path=request.servervariables("url")
path=left(path,instrrev(path,"/"))
end sub

private sub class_terminate()
end sub

public property get blempty
'是否为空
if isempty(obj) then
blempty=true
else
blempty=false
end if
end property

public property get valid
'是否可用(过期)
if isempty(obj) or not isdate(expiretime) then
valid=false
elseif cdate(expiretime)<now then
valid=false
else
valid=true
end if
end property

public property let name(str)
'设置cache名
cachename=str &amp; path
obj=application(cachename)
expiretimename=str &amp; "expires" &amp; path
expiretime=application(expiretimename)
end property

public property let expires(tm)
'重设置过期时间
expiretime=tm
application.lock
application(expiretimename)=expiretime
application.unlock
end property
public sub add(var,expire)
'赋值
if isempty(var) or not isdate(expire) then
exit sub
end if
obj=var
expiretime=expire
application.lock
application(cachename)=obj
application(expiretimename)=expiretime
application.unlock
end sub

public property get value
'取值
if isempty(obj) or not isdate(expiretime) then
value=null
elseif cdate(expiretime)<now then
value=null
else
value=obj
end if
end property

public sub makeempty()
'释放application
application.lock
application(cachename)=empty
application(expiretimename)=empty
application.unlock
obj=empty
expiretime=empty
end sub

public function equal(var2)
'比较
if typename(obj)<>typename(var2) then
equal=false
elseif typename(obj)="object" then
if obj is var2 then
equal=true
else
equal=false
end if
elseif typename(obj)="variant()" then
if join(obj,"^")=join(var2,"^") then
equal=true
else
equal=false
end if
else
if obj=var2 then
equal=true
else
equal=false
end if
end if
end function
end class
%>
欢迎光临:逐梦论坛

返回列表

Powered by Discuz! 7.2   论坛QQ群:逐梦论坛群

© 2001-2021 Comsenz Inc. 鲁公网安备 37120302000001号