InsightScan icon indicating copy to clipboard operation
InsightScan copied to clipboard

bug report and fix

Open bluescity opened this issue 9 years ago • 1 comments

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

bluescity avatar Mar 30 '16 16:03 bluescity

another problem. ping Thread is not closed ,so all thread numb wil be doubled

bluescity avatar Mar 30 '16 16:03 bluescity