def port_check(HOST): s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: s.connect((HOST, int(22))) s.shutdown(2) return True except: return False