pingpong24 Posted January 30, 2006 Posted January 30, 2006 HI, i would like to be able to connect to a server directly using the domain name i.e.http://something.google.com:PORTat the moment i am resoloving google.com to ip and then connecting however this method does not work with subdomains, such as http://something.google.com:PORTI would like to be able to connect directly by domain name. NumCR Super Fast EASY NUMBER OCR, easiest and the fastest AUTOIT OCR released on this forum
Helge Posted January 30, 2006 Posted January 30, 2006 This script is typed directly into the browser, but you could test something like this : $sAddr = http://something.google.com:PORT" $aAddr = StringSplit($sAddr, ":") If $aAddr[0] <> 2 Then Exit TCPStartup() TCPConnect(TCPNameToIP($aAddr[1]), $aAddr[2])
flaxcrack Posted January 30, 2006 Posted January 30, 2006 This script is typed directly into the browser, but you could test something like this : $sAddr = http://something.google.com:PORT" $aAddr = StringSplit($sAddr, ":") If $aAddr[0] <> 2 Then Exit TCPStartup() TCPConnect(TCPNameToIP($aAddr[1]), $aAddr[2]) Error in the example there. It should read: $sAddr = "http://something.google.com:PORT" Not $sAddr = http://something.google.com:PORT" [quote] Gilbertson's Law: Nothing is foolproof to a sufficiently talented fool.Sandro Alvares: Flaxcrack is please not noob! i can report you is stop stupid. The Post[/quote]I made this: FWD & MD5PWD()
jaenster Posted January 30, 2006 Posted January 30, 2006 wtf , how you make a tcp connection with autoIT ? -jaenster
MadBoy Posted January 30, 2006 Posted January 30, 2006 wtf , how you make a tcp connection with autoIT ?Use BETA of AutoIt My little company: Evotec (PL version: Evotec)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now