vbs实现myipneighbors 域名查询结果整理

碰到虚拟机的时候,还是能偷点懒的 :-)


代码如下:

On Error Resume Next
Set Arg=Wscript.Arguments
If Arg.count=0 then Wscript.quit
'code by NetPatch
'enjoy it
Set Fso=CreateObject("Scripting.FileSystemObject")
Set Gofile=Fso.OpenTextFile(Arg(0),1,false,-2)
Do while Gofile.Atendofline <> True
Data=gofile.readline
With fso.opentextfile(Arg(0)&".htm",8,true)
Data=replace(Data,"(view site)","")
Data=trim(replace(Data,mid(Data,1,InStr(Data,")")),""))
.Write "<table>"
.Write "<tr>"
.Write "<tr><td><a href='http://www.google.be/search?hl=zh-CN&q=site:"&Data&"&btnG=Google+' tArget='_blank'>Google_Site查询</a></td></tr>"
.Write "<td><a href='http://www."&Data&"' tArget='_blank'>www."&Data&"</a></td></tr>"
.Write "<tr><td><a href='http://www.google.be/search?hl=zh-CN&q=site:"&Data&"+inurl:asp|aspx|cfm&btnG=Google+' tArget='_blank'>查扩展映射(asp|aspx|cfm)</a></td></tr>"
.Write "<tr><td><a href='http://www.google.be/search?hl=zh-CN&q=site:"&Data&"+inurl:cgi|jsp|pl|py|php|php3&btnG=Google+' tArget='_blank'>查扩展映射(cgi|jsp|pl|py|php|php3)</a></td></tr>"
.Write "</table>"
.Writeline "<br><br>"
.close
End With
Loop
File.Close
Set Fso=Nothing
Wscript.Echo "ok"

(0)

相关推荐

  • vbs实现myipneighbors 域名查询结果整理

    碰到虚拟机的时候,还是能偷点懒的 :-) 复制代码 代码如下: On Error Resume Next Set Arg=Wscript.Arguments If Arg.count=0 then Wscript.quit 'code by NetPatch 'enjoy it Set Fso=CreateObject("Scripting.FileSystemObject") Set Gofile=Fso.OpenTextFile(Arg(0),1,false,-2) Do whil

  • 无数据库的详细域名查询程序PHP版(2)

    文件二:error.tml <b>你查询的域名 [>DOMAIN<].[>EXT<] 产生了如下的错误:</b><br> <B>[>ERROR_MSG<]</B><br clear=all> <br clear=all> <b>查询规则:</b> <UL> <LI><b>首先你要输入查询的域名名称及域名后缀.</b>

  • 无数据库的详细域名查询程序PHP版(1)

    文件一:index.php <?php echo "<!-- Powered by MWhois written by Matt Wilson <matt@mattsscripts.co.uk> -->\\n\"; /*     #########################################################################################     #                    

  • 使用xmlhttp为网站增加域名查询功能

    当我们准备建立一个Web站点时,就必须向域名登记机构申请一个Internet域名,因此,我们通常希望了解自己准备使用的域名是否已经被注册,这时,可以访问NIC站点http://www.nic.net,点击"whois"链接后输入需查询的域名,就可以得到我们需要的结果. WHOIS服务器为 .com..net 和 .org 的国际顶级域名的查询返回全部的 whois 数据,包括网站域名注册人.管理合约.联系方式(电话.电子邮件.地址).帐单联络.技术支持和域名服务器信息,对于用户了解一个

  • 一个域名查询的程序

    (主要用了两个字符串函数implode()和explode) 我制作的域名查询的源代码,主要用了两个字符串函数implode()和explode,利用这两个函数的切割字符串的强大功能,可以查询.com,.net.,org.,cc.,tv下的域名whois. <?php echo '<center><form>'; echo '<input type="text" name="string">'; echo '<inpu

  • 无数据库的详细域名查询程序PHP版(4)

    文件十一:searchform.tml <FORM METHOD="POST" ACTION="[>SCRIPT_NAME<]"> <INPUT NAME="domain" SIZE=25 MAXLENGTH=57></td><td valign=top> [>EXT_HTML_LIST<] </td></tr><tr><td val

  • PHP--用万网的接口实现域名查询功能

    今天给别人做网站时有个需求是要有域名查询功能,查了点资料写了个简单的查询功能 前台页面用的是checkbox,代码如下: 复制代码 代码如下: <form name="form1" method="post" action="chaxun.php"> <tbody><tr> <td align="right" valign="middle" width="

  • 域名查询代码公布

    域名查询代码公布      <?php  // 网络技术主管座右铭:三人行,其必有我师焉.http://www.ctohome.com  // 这个代码可以是说是非常的SMART,我改动了小小部分使它更容易用. $moreinfolist = array( // 储存WHOIS查询主机的连接方法  'at' => 'www.ripe.net/cgi-bin/whois?query=',  'au' => 'www.aunic.net/cgi-bin/whois.aunic?',  'bm

  • 无数据库的详细域名查询程序PHP版(3)

    文件七:globres.tml <FONT FACE="Verdana,Arial,Geneva" SIZE="2">下面结果来自本站提供的域名查询系统, 你可以订购没有注册的域名或者查询已注册域名的详细信息.<A HREF="[>SCRIPT_NAME<]?do_global=1">单击这里</A> 返回域名查询首页<P> <center> <table border

  • 一个从别的网站抓取信息的例子(域名查询)

    <?   if (isset($xx)) { $dodo=@file("http://www.e9china.com/cgi-bin/comdns.pl?raw=1&lookup=OK&fqdn=".$fqdn."&domain=".$domain."&root=".$root."&cdomain=2.7");    $i=0; while($dodo[$i]) {    echo

随机推荐