Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Ok, so I did the following, figuring it would raise an exception if it could not connect:

>>> s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
>>> s.settimeout(0.2)
>>> s.connect(("thisdomaiyndontexistduhh.com", 80))

But no exception was raised. How do I test if there is a server open on a port with Python's socket module? Thanks!

share|improve this question
Of course you will see an exception....either an error for a failed DNS lookup or e.g. a timeout error if you can't connect. – esaelPsnoroMoN Jan 1 at 13:25
I get socket.gaierror: [Errno -5] No address associated with hostname. – Thomas Jan 1 at 13:25
That's very strange.... – Tom Maran Jan 1 at 13:27
What else do you get? – esaelPsnoroMoN Jan 1 at 13:28
Maybe I should check my code. I guess it's possible I imported something that overrode sys.stderr... – Tom Maran Jan 1 at 13:28
show 5 more comments

1 Answer

up vote 3 down vote accepted

Here's why the code above never fails.

My ISP (Frontier) configures DNS such that for any domain that does not exist, it will return "198.105.251.114". As such, they actually have a web server listening on port 80 at that address to display some garbage/spam search results. Change your host to use 8.8.8.8 (Google server) for DNS and your code above will likely work.

Given that these sorts of "captive networks" are common, the first thing your code should do is determine if it is on such a network. Hence, the right thing to do is call socket.gethostbyname("thisdomaiyndontexistduhh.com"). If it actually returns a value, then you know you are behind such a DNS server. As such, then do a gethostbyname call on the server you want to probe. If it returns the same DNS address, you know the server doesn't exist. Otherwise, proceed with the connect call to finish the test.

Update: I've been learning Python over the holidays, so I used this problem as excuse to practice. Here's my code:

import socket

def DoesServiceExist(host, port):
    captive_dns_addr = ""
    host_addr = ""

    try:
        captive_dns_addr = socket.gethostbyname("BlahThisDomaynDontExist22.com")
    except:
        pass

    try:
        host_addr = socket.gethostbyname(host)

        if (captive_dns_addr == host_addr):
            return False

        s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        s.settimeout(1)
        s.connect((host, port))
        s.close()
    except:
        return False

    return True
share|improve this answer
Works like a charm! Thanks! – Tom Maran Jan 2 at 19:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.