用正则和xmlHttp实现的asp小偷程序
程序员文章站
2023-12-03 11:21:52
复制代码 代码如下:<% '======================================== class engin...
复制代码 代码如下:
<%
'========================================
class engineersearch
'老龙:laolong9999@sina.com
':模拟xml获取http标记资源(用过之后就知道为什么xml有用:))
'利用引擎搜索(显示引擎信息或其超连接网站上的信息或直接一个指定页面的相关信息,利用正则和xmlhttp,
'程序的使用需要会构造正则)
'---------------------------------------------------------------
private oreg,oxmlhttp'一个正则,一个微软xmlhttp
'---------------------------------------------------------------
public sub class_initialize()'对象建立触发
set oreg=new regexp
oreg.global=true
oreg.ignorecase=true
set oxmlhttp=server.createobject("microsoft.xmlhttp")
end sub
'---------------------------------------------------------------
public sub class_terminate()'对象销毁触发
set oreg=nothing'必须手动释放class内的自建对象,asp只自动释放由class定义的对象
set oxmlhttp=nothing
if typename(tempreg)<>"nothing" then'方法体内的对象释放资源
set tempreg=nothing
end if
end sub
'---------------------------------------------------------------
'引擎级搜索
public function engineer(url,engineerreg)
'功能介绍:获得url的返回信息(通常用于引擎查找),提取其中的engineerreg的特定信息,返回matches集合到
'函数名。获得url查询结果,搜寻出用engineerreg正则定义的结果,生成一个matches集合,
'由于无法建立集合及操作集合个数(vbscript),最好再自己遍历集合,也可以考虑二维数组
dim strconent
strcontent=oxmlhttp.open("get",url,false)
on error resume next
oxmlhttp.send()
if err.number<>0 then
exit function
end if
strcontent=bytes2bstr(oxmlhttp.responsebody)
if isnull(engineerreg) then
engineer=absoluteurl(strcontent,url)
else
oreg.pattern=engineerreg
set engineer=oreg.execute(absoluteurl(strcontent,url))
end if
end function
'---------------------------------------------------------------
'汉字编码,(网人)
public function bytes2bstr(vin)
strreturn = ""
for i = 1 to lenb(vin)
thischarcode = ascb(midb(vin,i,1))
if thischarcode < &h80 then
strreturn = strreturn & chr(thischarcode)
else
nextcharcode = ascb(midb(vin,i+1,1))
strreturn = strreturn & chr (clng(thischarcode) * &h100 + cint(nextcharcode))
i = i + 1
end if
next
bytes2bstr = strreturn
end function
'---------------------------------------------------------------
public function searchreplace(strcontent,replacereg,resultreg)
'替换,将strcontent中的replacereg描述的字符串用resultreg描述的替换,返回到searchreplace去
'将正则的replace封装了。
oreg.pattern=replacereg
searchreplace=oreg.replace(strcontent,resultreg)
end function
'---------------------------------------------------------------
public function absoluteurl(strcontent,byval url)
'将strcontent中的相对url变成oxmlhttp中指定的url的绝对地址(http/https/ftp/mailto:)
'正则可以修改修改。
dim tempreg
set tempreg=new regexp
tempreg.ignorecase=true
tempreg.global=true
tempreg.pattern="(^.*\/).*$"'含文件名的标准路径http://www.wrclub.net/default.aspx
url=tempreg.replace(url,"$1")
tempreg.pattern="((?:src|href).*?=[\'\u0022](?!ftp|http|https|mailto))"
absoluteurl=tempreg.replace(strcontent,"$1"+url)
set tempreg=nothing
end function
'---------------------------------------------------------------
end class
'========================================
%>
<%'例子
response.charset = "gb2312"
dim mysearch
set mysearch=new engineersearch
'url一定是包含文件扩展名的完整地址,结果是集合,集合中的每个项目是数组,应该这样引用子查询:mymatches(0).submatches(0)
set mymatches=mysearch.engineer("http://www.wrclub.net/default.aspx","<img.*?>")
if mymatches.count=0 then
response.write "没有你正则的字符串"
end if
if mymatches.count>0 then
response.write mymatches.count&"<br>"
for each key in mymatches
response.write key.firstindex&":"&cstr(key.value)&"<br>"
next
end if
%>
更诸多的应用,只要你会正则