You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If package nmap-ncat from default repo centos-base is present command nc -w 1 -z will not work due to absence of -z flag in version 6.40 and method is_reachable for port will always return False
Possible solution: check that nc version (nc --version) is not older than 7.25 (when -z option has been added) nmap/nmap#444 https://nmap.org/changelog - mark [Ncat][GH#444]
The text was updated successfully, but these errors were encountered:
Maybe we should drop the -z here ? What version of centos is impacted by this bug ? 6 or 7 or both ?
Maybe we can detect CentOS version and drop the -z only for this specific CentOS version ?
If package
nmap-ncat
from default repocentos-base
is present commandnc -w 1 -z
will not work due to absence of-z
flag in version 6.40 and methodis_reachable
for port will always returnFalse
Possible solution: check that
nc
version (nc --version
) is not older than 7.25 (when -z option has been added)nmap/nmap#444
https://nmap.org/changelog - mark [Ncat][GH#444]
The text was updated successfully, but these errors were encountered: