port = [21, 22, 23, 24, 25, 80]
s.connect((host, port))
The error I get is that an integer is required, how can i get the script to connect to the given ports?
port = [21, 22, 23, 24, 25, 80]
s.connect((host, port))
The error I get is that an integer is required, how can i get the script to connect to the given ports?