Advertisement
jacob_segundo

gettolocalhost.vbs

Aug 22nd, 2023
1,096
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VisualBasic 0.19 KB | Source Code | 0 0
  1. dim xHttp: Set xHttp = createobject("MSXML2.ServerXMLHTTP")
  2.  
  3. xHttp.Open "GET", "http://localhost", False
  4.  
  5. xHttp.setOption 2, 13056
  6. xHttp.Send
  7.  
  8. WScript.Echo xHttp.getAllResponseHeaders
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement