Scaneando portas com Python3 “Kali Linux”

0
29767

Boas Users!

hoje vou mostrar como fazer um script com Python para scanear portas.

 

código:

  1. import nmap
  2. = nmap.PortScanner()
  3. alvo = input(“Alvo: “)
  4. porta = input(“Porta: “)
  5. N.scan(alvo, porta)
  6. for host in N.all_hosts():
  7.     print(“########################”)
  8.     print(‘[+]Host : %s (%s)’ % (host, N[host].hostname()))
  9.     print(‘[+]State : %s’ % N[host].state())
  10.     for proto in N[host].all_protocols():
  11.         print(‘########################’)
  12.         print(‘[+]Protocolo : %s’ % proto)
  13.         lport = N[host][proto].keys()
  14.         lport = list(lport)
  15.         lport.sort()
  16.         for port in lport:
  17.             print (‘[+]porta : %s\testado : %s’ % (port, N[host][proto][port][‘state’]))

 

[ x ]
 

By user777!

LEAVE A REPLY