linting
This commit is contained in:
parent
9737bfd50d
commit
efec1c5cd9
|
@ -1,11 +1,13 @@
|
||||||
#!/usr/bin/python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
import socket
|
import socket
|
||||||
host = "1.1.1.1"
|
|
||||||
portList = [21,22,53,80,443,3306,8443,8080]
|
HOST = "1.1.1.1"
|
||||||
for port in portList:
|
port_list = [21, 22, 53, 80, 443, 3306, 8443, 8080]
|
||||||
|
for port in port_list:
|
||||||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||||
try:
|
try:
|
||||||
s.connect((host,port))
|
s.connect((HOST, port))
|
||||||
print("Port ", port, " is open")
|
print("Port ", port, " is open")
|
||||||
except:
|
except Exception:
|
||||||
print("Port ", port, " is closed")
|
print("Port ", port, " is closed")
|
||||||
|
|
Loading…
Reference in New Issue