NmapBrutes icon indicating copy to clipboard operation
NmapBrutes copied to clipboard

解析nmap扫描结果,并调用hydra进行暴力破解

Results 1 NmapBrutes issues
Sort by recently updated
recently updated
newest added

`if service in to_scan or to_scan == 'all':` 这行如何按默认选项, to_scan 的值 为['all'],因为 ![image](https://user-images.githubusercontent.com/19621374/76397291-c8f5be00-63b5-11ea-8617-7c2853ac44d4.png) 建议改为: ` if service in to_scan or to_scan == ['all']:`