portSpider icon indicating copy to clipboard operation
portSpider copied to clipboard

🕷 A lightning fast multithreaded network scanner framework with modules.

Results 5 portSpider issues
Sort by recently updated
recently updated
newest added

if i use module mysql and ip with subnet 188.94.249.28/31 , scirpt run but script don't stop logs: portSpider $> use mysql portSpider/mysql $> set network 188.94.249.28/31 network ==> '188.94.249.28/31'...

all errors are removed, all files reformatted, improvements done

much better if it can read host ip from file

enhancement

It can get annoying when you need to change just one letter, and have to re-type the whole command or need to backspace all the way back to the incorrect...

enhancement

```def createIPList(network): 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...

enhancement