You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 17, 2020. It is now read-only.
net4 = ipaddress.ip_network(network)
ipList = []
for x in net4.hosts():
ipList.append(x)
net4.hosts() excludes IP Addresses which are a part of the subnet. So, a /32 subnet (which is a single IP Address), returns an empty host list since it excludes that host. Because of that, ipList is empty. It should contain a single IP Address. I understand the point is mass-scan with speed, but this would be helpful.
net4.hosts()excludes IP Addresses which are a part of the subnet. So, a /32 subnet (which is a single IP Address), returns an empty host list since it excludes that host. Because of that, ipList is empty. It should contain a single IP Address. I understand the point is mass-scan with speed, but this would be helpful.