We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
if use this cmd scanner 192.168.1.1/32 -t 2 will return error
Traceback (most recent call last): for ip in iplist: TypeError: 'NoneType' object is not iterable
in line 321 if subnet == 32: print bin2ip(baseIP)
en,it's that ? i fix it if subnet == 32: ip = bin2ip(baseIP) cidrlist.append(ip) return cidrlist
The text was updated successfully, but these errors were encountered:
another problem. ping Thread is not closed ,so all thread numb wil be doubled
Sorry, something went wrong.
No branches or pull requests
if use this cmd
scanner 192.168.1.1/32 -t 2
will return error
Traceback (most recent call last):
for ip in iplist:
TypeError: 'NoneType' object is not iterable
in line 321
if subnet == 32:
print bin2ip(baseIP)
en,it's that ?
i fix it
if subnet == 32:
ip = bin2ip(baseIP)
cidrlist.append(ip)
return cidrlist
The text was updated successfully, but these errors were encountered: