Question: #!/usr/bin/python import socket #grab the banner def grab_banner(host,port): try: s=socket.socket() s.connect((host,port)) banner = s.recv(1024) print host + ':' + banner except: return def main(): portList
#!/usr/bin/python import socket
#grab the banner def grab_banner(host,port): try: s=socket.socket() s.connect((host,port)) banner = s.recv(1024) print host + ':' + banner except: return
def main(): portList = [21,22,25,110] for x in range(0,255): for port in portList: host = '172.16.194.' + str(x) grab_banner(host,port) if __name__ == '__main__': main()
I'm in need of changing this to work with 3.9 Python My vmware IP is 192.168.59.129
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
