mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Avoid printing submission fingerprint for IPv6 if all TCP ports are filtered.
This commit is contained in:
parent
8895dfaa20
commit
b24b5717a8
1 changed files with 4 additions and 0 deletions
|
|
@ -252,6 +252,10 @@ const char *FingerPrintResultsIPv6::OmitSubmissionFP() {
|
|||
return reason;
|
||||
}
|
||||
|
||||
if (osscan_opentcpport <= 0 && osscan_closedtcpport <= 0) {
|
||||
return "Missing a closed or open TCP port so results incomplete";
|
||||
}
|
||||
|
||||
if (incomplete) {
|
||||
return "Some probes failed to send so results incomplete";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue