msg="请输入你要查询的IP或域名:" 
IP=Inputbox(msg,"IP地理位置查询小偷")

If IP = "" Then IP = "127.0.0.1"
url = "http://www.ip.cn/?q="& IP &""
Body = getHTTPPage(url)

Set Re = New RegExp
Re.Pattern = "(查询结果为:.+)"
Set Matches = Re.Execute(Body)
If Matches.Count>0 Then Body = Matches(0)
'Re.Pattern = "\[[\s\S]*\]"
'Body = Re.Replace(Body, "")

'wscript.echo IP & Body
Set oXMLHttpRequest=Nothing
Set objExplorer = WScript.CreateObject("InternetExplorer.Application")
objExplorer.Navigate "about:blank" 
objExplorer.ToolBar = 0
objExplorer.StatusBar = 0
objExplorer.Visible = 1
objExplorer.height=300
objExplorer.width=400
objExplorer.left=400
objExplorer.resizable=0
objExplorer.Document.Body.InnerHTML =IP & Body

'objExplorer.document.parentwindow.clipboardData.SetData "text", IP & Body

Set objExplorer=nothing


'函数区

Function getHTTPPage(Path)
      t = GetBody(Path)
      getHTTPPage = BytesToBstr(t, "UTF-8")
End Function

Function GetBody(url)
     On Error Resume Next
     Set Retrieval = CreateObject("Microsoft.XMLHTTP")
     With Retrieval
         .Open "Get", url, False, "", ""
         .Send
          GetBody = .ResponseBody
     End With
     Set Retrieval = Nothing
End Function

Function BytesToBstr(Body, Cset)
     Dim objstream
     Set objstream = CreateObject("adodb.stream")
      objstream.Type = 1
      objstream.Mode = 3
      objstream.Open
      objstream.Write Body
      objstream.Position = 0
      objstream.Type = 2
      objstream.Charset = Cset
      BytesToBstr = objstream.ReadText
      objstream.Close
     Set objstream = Nothing
End Function
标签:
vbs,IP,查询小偷

免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
评论“vbs版IP地理位置查询小偷”
暂无“vbs版IP地理位置查询小偷”评论...

RTX 5090要首发 性能要翻倍!三星展示GDDR7显存

三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。

首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。

据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。