Skip to content

Instantly share code, notes, and snippets.

View catichenor's full-sized avatar

Christopher Tichenor catichenor

View GitHub Profile
@catichenor
catichenor / is_port_open.py
Last active October 28, 2019 22:48 — forked from betrcode/README.md
Using Python to check if remote port is open and accessible.
import time
import socket
ip = "mylicenseserver.mydomain.com"
port = 27000
responses = []
for i in range(10):
try: