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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!