portSpider
portSpider copied to clipboard
🕷 A lightning fast multithreaded network scanner framework with modules.
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
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...
```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...