diff --git a/docs/nmap.1 b/docs/nmap.1 index 28a214070..b097af23e 100644 --- a/docs/nmap.1 +++ b/docs/nmap.1 @@ -2,7 +2,7 @@ .\" It was generated using the DocBook XSL Stylesheets (version 1.69.1). .\" Instead of manually editing it, you probably should edit the DocBook XML .\" source for it and then use the DocBook XSL Stylesheets to regenerate it. -.TH "NMAP" "1" "01/09/2006" "" "Nmap Reference Guide" +.TH "NMAP" "1" "01/12/2006" "" "Nmap Reference Guide" .\" disable hyphenation .nh .\" disable justification (adjust text to left margin only) diff --git a/docs/nmap.usage.txt b/docs/nmap.usage.txt index efd41d676..097d1a455 100644 --- a/docs/nmap.usage.txt +++ b/docs/nmap.usage.txt @@ -1,4 +1,4 @@ -Nmap 3.96BETA3 ( http://www.insecure.org/nmap/ ) +Nmap 3.97Shmoo ( http://www.insecure.org/nmap/ ) Usage: nmap [Scan Type(s)] [Options] {target specification} TARGET SPECIFICATION: Can pass hostnames, IP addresses, networks, etc. @@ -30,8 +30,9 @@ PORT SPECIFICATION AND SCAN ORDER: -r: Scan ports consecutively - don't randomize SERVICE/VERSION DETECTION: -sV: Probe open ports to determine service/version info - --version_light: Limit to most likely probes for faster identification - --version_all: Try every single probe for version detection + --version_intensity : Set from 0 (light) to 9 (try all probes) + --version_light: Limit to most likely probes (intensity 2) + --version_all: Try every single probe (intensity 9) --version_trace: Show detailed version scan activity (for debugging) OS DETECTION: -O: Enable OS detection diff --git a/tty.cc b/tty.cc index 81e01239b..884b32d50 100644 --- a/tty.cc +++ b/tty.cc @@ -96,7 +96,9 @@ * * ***************************************************************************/ +#ifndef WIN32 #include "config.h" +#endif #include #if HAVE_SYS_STAT_H