mirror of
https://github.com/nmap/nmap.git
synced 2025-12-07 05:01:29 +00:00
sync CHANGELOG and bump version for 7.10SVN
This commit is contained in:
177
CHANGELOG
177
CHANGELOG
@@ -1,19 +1,110 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# Nmap Changelog ($Id$); -*-text-*-
|
||||||
|
|
||||||
o [NSE][GH#333] Added shodan-api for querying the Shodan API
|
Nmap 7.10 [2016-03-17]
|
||||||
(https://www.shodan.io) and retrieving open port and service info from their
|
|
||||||
Internet-wide scan data. [Glenn Wilkinson]
|
o [NSE] Added 12 NSE scripts from 7 authors, bringing the total up to 527!
|
||||||
|
They are all listed at https://nmap.org/nsedoc/, and the summaries are below
|
||||||
|
(authors are listed in brackets):
|
||||||
|
|
||||||
|
+ [GH#322] http-apache-server-status parses the server status page of
|
||||||
|
Apache's mod_status. [Eric Gershman]
|
||||||
|
|
||||||
|
+ http-vuln-cve2013-6786 detects a XSS and URL redirection vulnerability in
|
||||||
|
Allegro RomPager web server. Also added a fingerprint for detecting
|
||||||
|
CVE-2014-4019 to http-fingerprints.lua. [Vlatko Kosturjak]
|
||||||
|
|
||||||
|
+ [GH#226] http-vuln-cve2014-3704 detects and exploits the "Drupalgeddon"
|
||||||
|
pre-auth SQL Injection vulnerability in Drupal. [Mariusz Ziulek]
|
||||||
|
|
||||||
|
+ imap-ntlm-info extracts hostname and sometimes OS version from
|
||||||
|
NTLM-auth-enabled IMAP services. [Justin Cacak]
|
||||||
|
|
||||||
|
+ ipv6-multicast-mld-list discovers IPv6 multicast listeners with MLD probes.
|
||||||
|
The discovery is the same as targets-ipv6-multicast-mld, but the subscribed
|
||||||
|
addresses are decoded and listed. [Alexandru Geana, Daniel Miller]
|
||||||
|
|
||||||
|
+ ms-sql-ntlm-info extracts OS version and sometimes hostname from MS SQL
|
||||||
|
Server instances via the NTLM challenge message. [Justin Cacak]
|
||||||
|
|
||||||
|
+ nntp-ntlm-info extracts hostname and sometimes OS version from
|
||||||
|
NTLM-auth-enabled NNTP services. [Justin Cacak]
|
||||||
|
|
||||||
|
+ pop3-ntlm-info extracts hostname and sometimes OS version from
|
||||||
|
NTLM-auth-enabled POP3 services. [Justin Cacak]
|
||||||
|
|
||||||
|
+ rusers retrieves information about logged-on users from the rusersd RPC
|
||||||
|
service. [Daniel Miller]
|
||||||
|
|
||||||
|
+ [GH#333] shodan-api queries the Shodan API (https://www.shodan.io) and
|
||||||
|
retrieves open port and service info from their Internet-wide scan data.
|
||||||
|
[Glenn Wilkinson]
|
||||||
|
|
||||||
|
+ smtp-ntlm-info extracts hostname and sometimes OS version from
|
||||||
|
NTLM-auth-enabled SMTP and submission services. [Justin Cacak]
|
||||||
|
|
||||||
|
+ telnet-ntlm-info extracts hostname and sometimes OS version from
|
||||||
|
NTLM-auth-enabled Telnet services. [Justin Cacak]
|
||||||
|
|
||||||
|
o Integrated all of your IPv4 OS fingerprint submissions from October to
|
||||||
|
January (536 of them). Added 104 fingerprints, bringing the new total to
|
||||||
|
5089. Additions include Linux 4.2, more Windows 10, IBM i 7, and more.
|
||||||
|
Highlights: http://seclists.org/nmap-dev/2016/q1/270 [Daniel Miller]
|
||||||
|
|
||||||
|
o Integrated all of your service/version detection fingerprints submitted from
|
||||||
|
October to January (508 of them). The signature count went up 2.2% to 10532.
|
||||||
|
We now detect 1108 protocols, from icy, finger, and rtsp to ipfs,
|
||||||
|
basestation, and minecraft-pe. Highlights:
|
||||||
|
http://seclists.org/nmap-dev/2016/q1/271 [Daniel Miller]
|
||||||
|
|
||||||
|
o Integrated all 12 of your IPv6 OS fingerprint submissions from October to
|
||||||
|
January. The classifier added 3 new groups, including new and expanded groups
|
||||||
|
for OS X, bringing the new total to 96. Highlights:
|
||||||
|
http://seclists.org/nmap-dev/2016/q1/273 [Daniel Miller]
|
||||||
|
|
||||||
|
o [NSE] Upgrade to http-form-brute allowing correct handling of token-based
|
||||||
|
CSRF protections and cookies. Also, a simple database of common login forms
|
||||||
|
supports Django, Wordpress, MediaWiki, Joomla, and others. [Daniel Miller]
|
||||||
|
|
||||||
|
o [Zenmap] [GH#247] Remember window geometry (position and size) from the
|
||||||
|
previous time Zenmap was run. [isjing]
|
||||||
|
|
||||||
|
o New service probe for CORBA GIOP (General Inter-ORB Protocol) detection
|
||||||
|
should elicit a not-found exception from GIOP services that do not respond to
|
||||||
|
non-GIOP probes. [Quentin Hardy]
|
||||||
|
|
||||||
|
o [GH#284] Fix retrieval of route netmasks on FreeBSD. IPv6 routes were given
|
||||||
|
/32 netmasks regardless of actual netmask configured, resulting in failed
|
||||||
|
routing. Reported by Martin Gysi. [Daniel Miller]
|
||||||
|
|
||||||
|
o [GH#272][GH#269] Give option parsing errors after the usage statement, or
|
||||||
|
avoid printing the usage statement in some cases. The options summary has
|
||||||
|
grown quite large, requiring users to scroll to the top to see the error
|
||||||
|
message. [Abhishek Singh]
|
||||||
|
|
||||||
|
o [GH#249][Nsock] Avoid a crash on Windows reported by users using Zenmap's
|
||||||
|
Slow Comprehensive Scan profile. In the case of unknown OpenSSL errors,
|
||||||
|
ERR_reason_error_string would return NULL, which could not be printed with
|
||||||
|
the "%s" format string. Reported by Dan Baxter. [Gisle Vanem, Daniel Miller]
|
||||||
|
|
||||||
|
o [GH#293][Zenmap] Fix a regression in our build that caused copy-and-paste to
|
||||||
|
not work in Zenmap on Windows.
|
||||||
|
|
||||||
|
o Changed Nmap's idea of reserved and private IP addresses to include
|
||||||
|
169.254/16 (RFC3927) and remove 6/8, 7/8, and 55/8 networks. This list, in
|
||||||
|
libnetutil's isipprivate function, is used to filter -iR randomly generated
|
||||||
|
targets. The newly-valid address ranges belong to the U.S. Department of
|
||||||
|
Defense, so users wanting to avoid those ranges should use their own
|
||||||
|
exclusion lists with --exclude or --exclude-file. [Bill Parker, Daniel
|
||||||
|
Miller]
|
||||||
|
|
||||||
o Allow the -4 option for Nmap to indicate IPv4 address family. This is the
|
o Allow the -4 option for Nmap to indicate IPv4 address family. This is the
|
||||||
default, and using the option doesn't change anything, but does make it more
|
default, and using the option doesn't change anything, but does make it more
|
||||||
explicit which address family you want to scan. Using -4 with -6 is an error.
|
explicit which address family you want to scan. Using -4 with -6 is an error.
|
||||||
[Daniel Miller]
|
[Daniel Miller]
|
||||||
|
|
||||||
o [NSE] Added rusers script to get logged-on users info from the rusersd RPC
|
o [GH#265] When provided a verbosity of 0 (-v0), Nmap will not output any text to the
|
||||||
service. [Daniel Miller]
|
screen. This happens at the time of argument parsing, so the usual meaning of
|
||||||
|
"verbosity 0" is preserved. [isjing]
|
||||||
o [NSE][GH#322] Added http-apache-server-status for parsing the server status
|
|
||||||
page of Apache's mod_status. [Eric Gershman]
|
|
||||||
|
|
||||||
o [NSE][GH#314] Fix naming of SSL2_RC2_128_CBC_WITH_MD5 and
|
o [NSE][GH#314] Fix naming of SSL2_RC2_128_CBC_WITH_MD5 and
|
||||||
SSL2_RC2_128_CBC_EXPORT40_WITH_MD5 ciphers in sslv2 in order to match the
|
SSL2_RC2_128_CBC_EXPORT40_WITH_MD5 ciphers in sslv2 in order to match the
|
||||||
@@ -35,12 +126,6 @@ o [NSE] Added support for DHCP options "TFTP server name" and "Bootfile name"
|
|||||||
to dhcp.lua and enabled checking for options with a code above 61 by default.
|
to dhcp.lua and enabled checking for options with a code above 61 by default.
|
||||||
[Mike Rykowski]
|
[Mike Rykowski]
|
||||||
|
|
||||||
o Removed 6/8, 7/8, and 55/8 networks from the list of "reserved" IP addresses
|
|
||||||
that Nmap uses to filter -iR randomly generated targets. These address ranges
|
|
||||||
belong to the U.S. Department of Defense, so users wanting to avoid those
|
|
||||||
ranges should use their own exclusion lists with --exclude or --exclude-file.
|
|
||||||
[Daniel Miller]
|
|
||||||
|
|
||||||
o [NSE] whois-ip: Don't request a remote IANA assignments data file when the
|
o [NSE] whois-ip: Don't request a remote IANA assignments data file when the
|
||||||
local filesystem will not permit the file to cached in a local file. [jah]
|
local filesystem will not permit the file to cached in a local file. [jah]
|
||||||
|
|
||||||
@@ -48,15 +133,6 @@ o [NSE] Updated http-php-version hash database to cover all versions from PHP
|
|||||||
4.1.0 to PHP 5.4.45. Based on scans of a few thousand PHP web servers pulled
|
4.1.0 to PHP 5.4.45. Based on scans of a few thousand PHP web servers pulled
|
||||||
from Shodan API (https://www.shodan.io/) [Daniel Miller]
|
from Shodan API (https://www.shodan.io/) [Daniel Miller]
|
||||||
|
|
||||||
o [GH#272][GH#269] Give option parsing errors after the usage statement, or
|
|
||||||
avoid printing the usage statement in some cases. The options summary has
|
|
||||||
grown quite large, requiring users to scroll to the top to see the error
|
|
||||||
message. [Abhishek Singh]
|
|
||||||
|
|
||||||
o [GH#284] Fix retrieval of route netmasks on FreeBSD. IPv6 routes were given
|
|
||||||
/32 netmasks regardless of actual netmask configured, resulting in failed
|
|
||||||
routing. Reported by Martin Gysi. [Daniel Miller]
|
|
||||||
|
|
||||||
o Use the same ScanProgressMeter for FTP bounce scan (-b) as for the other scan
|
o Use the same ScanProgressMeter for FTP bounce scan (-b) as for the other scan
|
||||||
types, allowing periodic status updates with --stats-every or keypress
|
types, allowing periodic status updates with --stats-every or keypress
|
||||||
events. [Daniel Miller]
|
events. [Daniel Miller]
|
||||||
@@ -65,70 +141,15 @@ o [GH#274] Use a shorter pcap_select timeout on OpenBSD, just as we do for OS
|
|||||||
X, old FreeBSD, and Solaris, which use BPF for packet capture and do not have
|
X, old FreeBSD, and Solaris, which use BPF for packet capture and do not have
|
||||||
properly select-able fds. Fix by OpenBSD port maintainer [David Carlier]
|
properly select-able fds. Fix by OpenBSD port maintainer [David Carlier]
|
||||||
|
|
||||||
o [NSE] Added ms-sql-ntlm-info for extracting OS version and sometimes hostname
|
|
||||||
from MS SQL Server instances via the NTLM challenge message. [Justin Cacak]
|
|
||||||
|
|
||||||
o [NSE] Added nntp-ntlm-info for extracting hostname and sometimes OS version
|
|
||||||
from NTLM-auth-enabled NNTP services. [Justin Cacak]
|
|
||||||
|
|
||||||
o [NSE] Added pop3-ntlm-info for extracting hostname and sometimes OS version
|
|
||||||
from NTLM-auth-enabled POP3 services. [Justin Cacak]
|
|
||||||
|
|
||||||
o [NSE] Added telnet-ntlm-info for extracting hostname and sometimes OS version
|
|
||||||
from NTLM-auth-enabled Telnet services. [Justin Cacak]
|
|
||||||
|
|
||||||
o [NSE] Added smtp-ntlm-info for extracting hostname and sometimes OS version
|
|
||||||
from NTLM-auth-enabled SMTP and submission services. [Justin Cacak]
|
|
||||||
|
|
||||||
o [NSE] Added imap-ntlm-info for extracting hostname and sometimes OS version
|
|
||||||
from NTLM-auth-enabled IMAP services. [Justin Cacak]
|
|
||||||
|
|
||||||
o [NSE] Added http-vuln-cve2013-6786 for detecting a XSS and URL redirection
|
|
||||||
vulnerability in Allegro RomPager web server. Also added a fingerprint for
|
|
||||||
detecting CVE-2014-4019 to http-fingerprints.lua. [Vlatko Kosturjak]
|
|
||||||
|
|
||||||
o [GH#265] When provided a verbosity of 0 (-v0), Nmap will not output any text to the
|
|
||||||
screen. This happens at the time of argument parsing, so the usual meaning of
|
|
||||||
"verbosity 0" is preserved. [isjing]
|
|
||||||
|
|
||||||
o [Nsock] Avoid a crash on Windows and other systems which use nbase's
|
|
||||||
vasprintf implementation. In the case of unknown OpenSSL errors,
|
|
||||||
ERR_reason_error_string would return NULL, which could not be printed with
|
|
||||||
the "%s" format string. Fixed by using ERR_error_string instead, which will
|
|
||||||
not return NULL, and by causing NULL pointers to be printed as "(null)", as
|
|
||||||
glibc and MSVC both do. Reported by Dan Baxter. [Gisle Vanem, Daniel Miller]
|
|
||||||
|
|
||||||
o [NSE] Upgrade to http-form-brute allowing correct handling of token-based
|
|
||||||
CSRF protections and cookies. Also, a simple database of common login forms
|
|
||||||
supports Django, Wordpress, MediaWiki, Joomla, and others. [Daniel Miller]
|
|
||||||
|
|
||||||
o Print service info in grepable output for ports which are not listed in
|
o Print service info in grepable output for ports which are not listed in
|
||||||
nmap-services when a service tunnel (SSL) is detected. Previously, the
|
nmap-services when a service tunnel (SSL) is detected. Previously, the
|
||||||
service info ("ssl|unknown") was not printed unless the service inside the
|
service info ("ssl|unknown") was not printed unless the service inside the
|
||||||
tunnel was positively identified. http://seclists.org/nmap-dev/2015/q4/260
|
tunnel was positively identified. http://seclists.org/nmap-dev/2015/q4/260
|
||||||
[Daniel Miller]
|
[Daniel Miller]
|
||||||
|
|
||||||
o Extend libnetutil's isipprivate function to check for 169.254/16 RFC3927
|
|
||||||
addresses. [Bill Parker]
|
|
||||||
|
|
||||||
o New service probe for CORBA GIOP (General Inter-ORB Protocol) detection
|
|
||||||
should elicit a not-found exception from GIOP services that do not respond to
|
|
||||||
non-GIOP probes. [Quentin Hardy]
|
|
||||||
|
|
||||||
o [NSE] Added ipv6-multicast-mld-list for discovering IPv6 multicast listeners
|
|
||||||
with MLD probes. The discovery is the same as targets-ipv6-multicast-mld, but
|
|
||||||
the subscribed addresses are decoded and listed.
|
|
||||||
[Alexandru Geana, Daniel Miller]
|
|
||||||
|
|
||||||
o [NSE] [GH#226] Added http-vuln-cve2014-3704 for detecting and exploiting the
|
|
||||||
"Drupalgeddon" pre-auth SQL Injection vulnerability in Drupal. [Mariusz Ziulek]
|
|
||||||
|
|
||||||
o [NSE] [GH#242] Fix multiple false-positive sources in http-backup-agent.
|
o [NSE] [GH#242] Fix multiple false-positive sources in http-backup-agent.
|
||||||
[Tom Sellers]
|
[Tom Sellers]
|
||||||
|
|
||||||
o [Zenmap] [GH#247] Remember window geometry (position and size) from the
|
|
||||||
previous time Zenmap was run. [isjing]
|
|
||||||
|
|
||||||
Nmap 7.01 [2015-12-09]
|
Nmap 7.01 [2015-12-09]
|
||||||
|
|
||||||
o Switch to using gtk-mac-bundler and jhbuild for building the OS X installer.
|
o Switch to using gtk-mac-bundler and jhbuild for building the OS X installer.
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: nmap
|
.\" Title: nmap
|
||||||
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 07/28/2013
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: [FIXME: manual]
|
.\" Manual: [FIXME: manual]
|
||||||
.\" Source: [FIXME: source]
|
.\" Source: [FIXME: source]
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NMAP" "1" "07/28/2013" "[FIXME: source]" "[FIXME: manual]"
|
.TH "NMAP" "1" "03/17/2016" "[FIXME: source]" "[FIXME: manual]"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
@@ -627,7 +627,7 @@ Fija los bits de FIN, PSH, y URG flags, iluminando el paquete como si fuera un
|
|||||||
.sp
|
.sp
|
||||||
Estos tres tipos de sondeos son exactamente los mismos en comportamiento salvo por las banderas TCP que se fijen en los paquetes sonda\&. Si se recibe un paquete RST entonces se considera que el puerto está
|
Estos tres tipos de sondeos son exactamente los mismos en comportamiento salvo por las banderas TCP que se fijen en los paquetes sonda\&. Si se recibe un paquete RST entonces se considera que el puerto está
|
||||||
cerrado\&. Si no se recibe ninguna respuesta el puerto se marca como
|
cerrado\&. Si no se recibe ninguna respuesta el puerto se marca como
|
||||||
cerrado|filtrado\&. El puerto se marca
|
abierto|filtrado\&. El puerto se marca
|
||||||
filtrado
|
filtrado
|
||||||
si se recibe un error ICMP no alcanzable (tipo 3, código 1, 2, 3, 9, 10, o 13)\&.
|
si se recibe un error ICMP no alcanzable (tipo 3, código 1, 2, 3, 9, 10, o 13)\&.
|
||||||
.sp
|
.sp
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: nmap-update
|
.\" Title: nmap-update
|
||||||
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
.\" Author: [FIXME: author] [see http://docbook.sf.net/el/author]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 12/10/2015
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: nmap-update Reference Guide
|
.\" Manual: nmap-update Reference Guide
|
||||||
.\" Source: nmap-update
|
.\" Source: nmap-update
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NMAP\-UPDATE" "1" "12/10/2015" "nmap\-update" "nmap\-update Reference Guide"
|
.TH "NMAP\-UPDATE" "1" "03/17/2016" "nmap\-update" "nmap\-update Reference Guide"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: nmap
|
.\" Title: nmap
|
||||||
.\" Author: [see the "Author" section]
|
.\" Author: [see the "Author" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 12/10/2015
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: Nmap Reference Guide
|
.\" Manual: Nmap Reference Guide
|
||||||
.\" Source: Nmap
|
.\" Source: Nmap
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NMAP" "1" "12/10/2015" "Nmap" "Nmap Reference Guide"
|
.TH "NMAP" "1" "03/17/2016" "Nmap" "Nmap Reference Guide"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
@@ -123,7 +123,7 @@ This options summary is printed when Nmap is run with no arguments, and the late
|
|||||||
.RS 4
|
.RS 4
|
||||||
.\}
|
.\}
|
||||||
.nf
|
.nf
|
||||||
Nmap 7\&.01SVN ( https://nmap\&.org )
|
Nmap 7\&.10SVN ( https://nmap\&.org )
|
||||||
Usage: nmap [Scan Type(s)] [Options] {target specification}
|
Usage: nmap [Scan Type(s)] [Options] {target specification}
|
||||||
TARGET SPECIFICATION:
|
TARGET SPECIFICATION:
|
||||||
Can pass hostnames, IP addresses, networks, etc\&.
|
Can pass hostnames, IP addresses, networks, etc\&.
|
||||||
@@ -281,7 +281,7 @@ in the first octet so the target specification doesn\*(Aqt look like a command\-
|
|||||||
will perform an Internet\-wide scan for all IP addresses ending in 13\&.37\&. This sort of broad sampling can be useful for Internet surveys and research\&.
|
will perform an Internet\-wide scan for all IP addresses ending in 13\&.37\&. This sort of broad sampling can be useful for Internet surveys and research\&.
|
||||||
.\" IPv6
|
.\" IPv6
|
||||||
.PP
|
.PP
|
||||||
IPv6 addresses can only be specified by their fully qualified IPv6 address or hostname\&. CIDR and octet ranges aren\*(Aqt yet supported for IPv6\&.
|
IPv6 addresses can be specified by their fully qualified IPv6 address or hostname or with CIDR notation for subnets\&. Octet ranges aren\*(Aqt yet supported for IPv6\&.
|
||||||
.\" link-local IPv6 address
|
.\" link-local IPv6 address
|
||||||
.\" IPv6 address: link-local
|
.\" IPv6 address: link-local
|
||||||
.\" zone ID (IPv6 address)
|
.\" zone ID (IPv6 address)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Nmap 7.01SVN ( https://nmap.org )
|
Nmap 7.10SVN ( https://nmap.org )
|
||||||
Usage: nmap [Scan Type(s)] [Options] {target specification}
|
Usage: nmap [Scan Type(s)] [Options] {target specification}
|
||||||
TARGET SPECIFICATION:
|
TARGET SPECIFICATION:
|
||||||
Can pass hostnames, IP addresses, networks, etc.
|
Can pass hostnames, IP addresses, networks, etc.
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: zenmap
|
.\" Title: zenmap
|
||||||
.\" Author: [see the "Authors" section]
|
.\" Author: [see the "Authors" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 12/10/2015
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: Zenmap Reference Guide
|
.\" Manual: Zenmap Reference Guide
|
||||||
.\" Source: Zenmap
|
.\" Source: Zenmap
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "ZENMAP" "1" "12/10/2015" "Zenmap" "Zenmap Reference Guide"
|
.TH "ZENMAP" "1" "03/17/2016" "Zenmap" "Zenmap Reference Guide"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 7,0,1,1
|
FILEVERSION 7,0,10,1
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x21L
|
FILEFLAGS 0x21L
|
||||||
@@ -30,7 +30,7 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "Insecure.Org\0"
|
VALUE "CompanyName", "Insecure.Org\0"
|
||||||
VALUE "FileDescription", "Nmap\0"
|
VALUE "FileDescription", "Nmap\0"
|
||||||
VALUE "FileVersion", "7.01SVN\0"
|
VALUE "FileVersion", "7.10SVN\0"
|
||||||
VALUE "InternalName", "Nmap\0"
|
VALUE "InternalName", "Nmap\0"
|
||||||
VALUE "LegalCopyright", "Copyright (c) Insecure.Com LLC (fyodor@insecure.org)\0"
|
VALUE "LegalCopyright", "Copyright (c) Insecure.Com LLC (fyodor@insecure.org)\0"
|
||||||
VALUE "LegalTrademarks", "NMAP\0"
|
VALUE "LegalTrademarks", "NMAP\0"
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: Ncat
|
.\" Title: Ncat
|
||||||
.\" Author: [see the "Authors" section]
|
.\" Author: [see the "Authors" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 12/10/2015
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: Ncat Reference Guide
|
.\" Manual: Ncat Reference Guide
|
||||||
.\" Source: Ncat
|
.\" Source: Ncat
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NCAT" "1" "12/10/2015" "Ncat" "Ncat Reference Guide"
|
.TH "NCAT" "1" "03/17/2016" "Ncat" "Ncat Reference Guide"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
@@ -43,7 +43,7 @@ Among Ncat\*(Aqs vast number of features there is the ability to chain Ncats tog
|
|||||||
.RS 4
|
.RS 4
|
||||||
.\}
|
.\}
|
||||||
.nf
|
.nf
|
||||||
Ncat 7\&.01SVN ( https://nmap\&.org/ncat )
|
Ncat 7\&.10SVN ( https://nmap\&.org/ncat )
|
||||||
Usage: ncat [options] [hostname] [port]
|
Usage: ncat [options] [hostname] [port]
|
||||||
|
|
||||||
Options taking a time assume seconds\&. Append \*(Aqms\*(Aq for milliseconds,
|
Options taking a time assume seconds\&. Append \*(Aqms\*(Aq for milliseconds,
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
Ncat 7.01SVN ( https://nmap.org/ncat )
|
Ncat 7.10SVN ( https://nmap.org/ncat )
|
||||||
Usage: ncat [options] [hostname] [port]
|
Usage: ncat [options] [hostname] [port]
|
||||||
|
|
||||||
Options taking a time assume seconds. Append 'ms' for milliseconds,
|
Options taking a time assume seconds. Append 'ms' for milliseconds,
|
||||||
|
|||||||
@@ -145,7 +145,7 @@
|
|||||||
/* Ncat information for output, etc. */
|
/* Ncat information for output, etc. */
|
||||||
#define NCAT_NAME "Ncat"
|
#define NCAT_NAME "Ncat"
|
||||||
#define NCAT_URL "https://nmap.org/ncat"
|
#define NCAT_URL "https://nmap.org/ncat"
|
||||||
#define NCAT_VERSION "7.01SVN"
|
#define NCAT_VERSION "7.10SVN"
|
||||||
|
|
||||||
#ifndef __GNUC__
|
#ifndef __GNUC__
|
||||||
#ifndef __attribute__
|
#ifndef __attribute__
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: ndiff
|
.\" Title: ndiff
|
||||||
.\" Author: [see the "Authors" section]
|
.\" Author: [see the "Authors" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 12/10/2015
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: User Commands
|
.\" Manual: User Commands
|
||||||
.\" Source: Ndiff
|
.\" Source: Ndiff
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NDIFF" "1" "12/10/2015" "Ndiff" "User Commands"
|
.TH "NDIFF" "1" "03/17/2016" "Ndiff" "User Commands"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|||||||
4
nmap.h
4
nmap.h
@@ -193,8 +193,8 @@
|
|||||||
#ifndef NMAP_VERSION
|
#ifndef NMAP_VERSION
|
||||||
/* Edit this definition only within the quotes, because it is read from this
|
/* Edit this definition only within the quotes, because it is read from this
|
||||||
file by the makefiles. */
|
file by the makefiles. */
|
||||||
#define NMAP_VERSION "7.01SVN"
|
#define NMAP_VERSION "7.10SVN"
|
||||||
#define NMAP_NUM_VERSION "7.0.1.1"
|
#define NMAP_NUM_VERSION "7.0.10.1"
|
||||||
#endif
|
#endif
|
||||||
/* The version number of updates retrieved by the nmap-update
|
/* The version number of updates retrieved by the nmap-update
|
||||||
program. It can be different (but should always be the same or
|
program. It can be different (but should always be the same or
|
||||||
|
|||||||
@@ -2,12 +2,12 @@
|
|||||||
.\" Title: nping
|
.\" Title: nping
|
||||||
.\" Author: [see the "Authors" section]
|
.\" Author: [see the "Authors" section]
|
||||||
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
.\" Generator: DocBook XSL Stylesheets v1.78.1 <http://docbook.sf.net/>
|
||||||
.\" Date: 12/10/2015
|
.\" Date: 03/17/2016
|
||||||
.\" Manual: Nping Reference Guide
|
.\" Manual: Nping Reference Guide
|
||||||
.\" Source: Nping
|
.\" Source: Nping
|
||||||
.\" Language: English
|
.\" Language: English
|
||||||
.\"
|
.\"
|
||||||
.TH "NPING" "1" "12/10/2015" "Nping" "Nping Reference Guide"
|
.TH "NPING" "1" "03/17/2016" "Nping" "Nping Reference Guide"
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
.\" * Define some portability stuff
|
.\" * Define some portability stuff
|
||||||
.\" -----------------------------------------------------------------
|
.\" -----------------------------------------------------------------
|
||||||
|
|||||||
@@ -339,7 +339,7 @@
|
|||||||
/* General tunable defines **************************************************/
|
/* General tunable defines **************************************************/
|
||||||
#define NPING_NAME "Nping"
|
#define NPING_NAME "Nping"
|
||||||
#define NPING_URL "https://nmap.org/nping"
|
#define NPING_URL "https://nmap.org/nping"
|
||||||
#define NPING_VERSION "0.7.01SVN"
|
#define NPING_VERSION "0.7.10SVN"
|
||||||
|
|
||||||
|
|
||||||
#define DEFAULT_VERBOSITY VB_0
|
#define DEFAULT_VERBOSITY VB_0
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
7.01SVN
|
7.10SVN
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
VERSION = "7.01SVN"
|
VERSION = "7.10SVN"
|
||||||
|
|||||||
Reference in New Issue
Block a user