1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Mark a done task (#30)

This commit is contained in:
dmiller
2016-02-11 05:52:36 +00:00
parent 27c2a64a17
commit bfabd9816d
2 changed files with 8 additions and 8 deletions

View File

@@ -1,5 +1,13 @@
DONE:
o Change Ncat so that it does SSL certificate trust checking by
default (even without --ssl-verify) and provides a warning and the key
fingerprint if there is no valid trusted chain or the cert is
expired, etc. The warning should happen (to STDERR) even if -v is
not specified. We should add a new option to force Ncat to quit if
cert not valid, and --ssl-verify should become an undocumented alias
for that. [GH#30]
o Augment the configure script to list unmet dependencies. Currently, configure
works just fine without a C++ compiler installed, but make generates an
error. The configure script should be able to detect this. Also, a list of

View File

@@ -4,14 +4,6 @@ o Deal with our out-of-date CA root certificate bundle by either using
OS-specific mechanisms and/or updating the latest from Mozilla or
another source. See http://seclists.org/nmap-dev/2014/q4/200
o Change Ncat so that it does SSL certificate trust checking by
default (even without --ssl-verify) and provides a warning and the key
fingerprint if there is no valid trusted chain or the cert is
expired, etc. The warning should happen (to STDERR) even if -v is
not specified. We should add a new option to force Ncat to quit if
cert not valid, and --ssl-verify should become an undocumented alias
for that.
o Figure out what nmap-update is doing for SSL certificate
verification (it uses libsvn to our SSL svn server).