If I do this code(below) to get a IP address from a URL, how do I get the Nmap scan from that Ip address? import socket
def get_ips_for_host(url):
try:
ips = socket.gethostbyname_ex(url)
except socket.gaierror:
ips = []
return ips
ips = get_ips_for_host('www.facebook.com')
print(repr(ips))