-
Notifications
You must be signed in to change notification settings - Fork 1
/
BasicScanner.py
59 lines (50 loc) · 1.48 KB
/
BasicScanner.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import optparse
from socket import *
from threading import *
screenLock = Semaphore(value=1)
def connScan(tgtHost,tgtPort):
try:
connSkt = socket(AF_INET,SOC_STREAM)
connSkt.connect((tgtHost,tgtPort))
connSkt.send("hello\r\n")
results = connSkt.recv(100)
screenLock.acquire()
print "[+] " + str(tgtPort) + "/tcp open"
except:
screenLock.acquire()
print "[+] " + str(tgtPort) + "/tcp closed"
finally:
screenLock.release()
connSkt.close()
def portScan(tgtHost,tgtPorts):
try:
tgtIP = gethostbyname(tgtHost)
except:
print"[+] cannot Resolve" + tgtHost + ": unknown host"
return
try:
tgtName = gethostbyaddr(tgtIP)
print "\n[+] Scan Results for: " + tgtName[0]
except:
print "\n[+] Scan Results for: " + tgtIP
setDefaulttimeout(1)
for tgtPort in tgtPorts:
t = Thread(target=connScan,args=(trgtHost,int(tgtPort)))
t.start()
def Main():
parser = optparse.optionParse('usage %prog -H <target host> ' +\
'-p <target Port>');
parser.add_option('-H',dest='tgtHost',type='string',\
help='specify trg host')
parser.add_option('-P',dest='tgtPort',type='string',\
help='specify target ports seperated by a comma')
(optios,args) = parser.parse_args()
if(options.tgtHost == None) | (options.tgtPort == None):
print parser.usage
exit(0)
else:
tgtHost = options.tgtHost
tgtPorts = str(options.tgtPort).split(',')
portScan(tgtHost,tgtPorts)
if __name__ == '__main__':
Main()