Skip to content

Commit 0d90077

Browse files
Added quiality-of-life improvements
Added check for screen clear for non-UNIX systems, exit codes for various errors, and uses UNIX time instead of datetime.
1 parent bcca248 commit 0d90077

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

PORT SCANNER.PY

+9-8
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,11 @@ Open up an text editor, copy & paste the code below. Save the file as:
7171
import socket
7272
import subprocess
7373
import sys
74-
from datetime import datetime
74+
from time import time
75+
import platform
7576

7677
# Clear the screen
77-
subprocess.call('clear', shell=True)
78+
subprocess.call('clear' if platform.platform() in ("Linux", "Darwin") else "cls", shell=True)
7879

7980
# Ask for input
8081
remoteServer = input("Enter a remote host to scan: ")
@@ -86,7 +87,7 @@ print("Please wait, scanning remote host", remoteServerIP)
8687
print("-" * 60)
8788

8889
# Check what time the scan started
89-
t1 = datetime.now()
90+
t1 = time()
9091

9192
# Using the range function to specify ports (here it will scans all ports between 1 and 1024)
9293

@@ -102,21 +103,21 @@ try:
102103

103104
except KeyboardInterrupt:
104105
print("You pressed Ctrl+C")
105-
sys.exit()
106+
sys.exit(2)
106107

107108
except socket.gaierror:
108109
print('Hostname could not be resolved. Exiting')
109-
sys.exit()
110+
sys.exit(1)
110111

111112
except socket.error:
112113
print("Couldn't connect to server")
113-
sys.exit()
114+
sys.exit(3)
114115

115116
# Checking the time again
116-
t2 = datetime.now()
117+
t2 = time()
117118

118119
# Calculates the difference of time, to see how long it took to run the script
119120
total = t2 - t1
120121

121122
# Printing the information to screen
122-
print('Scanning Completed in: ', total)
123+
print('Scanning Completed in about {total} seconds', total)

0 commit comments

Comments
 (0)