Initialize the module * detects nmap on the system and nmap version * may raise PortScannerError exception if nmap is not found in the path
(self)
| 899 | """ |
| 900 | |
| 901 | def __init__(self): |
| 902 | """ |
| 903 | Initialize the module |
| 904 | |
| 905 | * detects nmap on the system and nmap version |
| 906 | * may raise PortScannerError exception if nmap is not found in the path |
| 907 | |
| 908 | """ |
| 909 | PortScannerAsync.__init__(self) |
| 910 | return |
| 911 | |
| 912 | def scan( |
| 913 | self, hosts="127.0.0.1", ports=None, arguments="-sV", sudo=False, timeout=0 |