Port scanner - help needed 10-12-2013, 07:50 AM
#1
Ok so ive made my port scanner it seems to be working fine besides im having one annoying little issue, the code is as follows:
Output:
My issue is that when i run it using the command:
python portScanner.py -H <hostname> -p <port[s]> it only works when i only put one port there, if i try to put another port to scan separated by a comma it gives the following error:
if i put a space before the comma after the first port it runs but doesnt scan for the second port:
Any idea why this is happening? Any help would be much appreciated (oh and btw im completely new to python, please if possible reply in detail)
Thankyou
Code:
import optparse
import socket
from socket import *
from threading import *
screenLock = Semaphore(value=1)
def connScan(tgtHost, tgtPort):
try:
connSkt = socket(AF_INET, SOCK_STREAM)
connSkt.connect((tgtHost, tgtPort))
connSkt.send('ViolentPython\r\n')
results = connSkt.recv(100)
screenLock.acquire()
print '[+]%d/tcp open'% tgtPort
print '[+] ' + str(results)
except:
screenLock.acquire()
print '[-]%d/tcp closed'% tgtPort
finally:
screenLock.release()
connSkt.close()
def portScan(tgtHost, tgtPorts):
try:
tgtIP = gethostbyname(tgtHost)
except:
print "[-] Cannot resolve '%s': Unknown host"%tgtHost
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=(tgtHost, int(tgtPort)))
t.start()
def main():
parser = optparse.OptionParser('usage %prog -H'+\
'<target host> -p <target port>')
parser.add_option('-H', dest='tgtHost', type='string', \
help='specify target host')
parser.add_option('-p', dest='tgtPort', type='string', \
help='specify target port[s] seperated by comma')
(options, args) = parser.parse_args()
tgtHost = options.tgtHost
tgtPorts = str(options.tgtPort).split(', ')
if(tgtHost == None) | (tgtPorts[0] == None):
print parser.usage
exit(0)
portScan(tgtHost, tgtPorts)
if __name__ == '__main__':
main()Output:
Code:
[+] Scan Results for: 192.254.234.250
[+]21/tcp open
[+] 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 6 of 50 allowMy issue is that when i run it using the command:
python portScanner.py -H <hostname> -p <port[s]> it only works when i only put one port there, if i try to put another port to scan separated by a comma it gives the following error:
Code:
[+] Scan Results for: 192.254.234.250
Traceback (most recent call last):
File "portScanner.py", line 51, in <module>
main()
File "portScanner.py", line 49, in main
portScan(tgtHost, tgtPorts)
File "portScanner.py", line 34, in portScan
t = Thread(target=connScan, args=(tgtHost, int(tgtPort)))
ValueError: invalid literal for int() with base 10: '21,'if i put a space before the comma after the first port it runs but doesnt scan for the second port:
Code:
root@kali:~/Scripts/portScanner# python portScanner.py -H julzlane.com -p 21 , 1720
[+] Scan Results for: 192.254.234.250
[+]21/tcp open
[+] 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
220-You are user number 7 of 50 allowAny idea why this is happening? Any help would be much appreciated (oh and btw im completely new to python, please if possible reply in detail)
Thankyou
![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)