diff --git a/CHANGELOG b/CHANGELOG index ce7a45ba2..08806a2b6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ # Nmap Changelog ($Id$); -*-text-*- +4.22SOC2 + +o NSE compilation fixes by Stoiko and Kris + 4.22SOC1 o The UMIT graphical Nmap frontend is now included (as an ALPHA TEST @@ -11,17 +15,6 @@ o The UMIT graphical Nmap frontend is now included (as an ALPHA TEST executable is named umit) and let us know the results! We hope to include UMIT in the Windows Nmap distributions soon. -o The port selection mechanism was overhauled. Nmap now knows - (roughly) how common various services are, so you can specify - options such as --top-ports 50 to scan the 50 most popular ports. - You can also use the new --port-ratio option to scan ports above a - given popularity level. You can also now give the -p option service - names (such as 'http') and wildcards (such as http* to include - services such as https and http-mgmt). There is also a bracket ([]) - operator for scanning all known ports within a given range. All - these changes, by Doug Hoyte, are described at - http://seclists.org/nmap-dev/2007/q2/0224.html . - o Added more Nmap Scripting Engine scripts, bringing the total to 31. The new ones are bruteTelnet (Eddie Bell), SMTPcommands (Jason DePriest), iax2Detect (Jason), nbstat (Brandon Enright), diff --git a/docs/refguide.xml b/docs/refguide.xml index 3e8ca97c6..dc98ed60c 100644 --- a/docs/refguide.xml +++ b/docs/refguide.xml @@ -1456,27 +1456,6 @@ way. instead. - - - - - - - --port-ratio - Scans all ports in nmap-services file with a ratio greater than the number specified as the argument. (new format nmap-services only.) - - - - - - - - - --top-ports - Scans the N highest-ratio ports found in nmap-services file. (new format nmap-services only.) - - - diff --git a/nmap.h b/nmap.h index 96b50505b..7146e00e0 100644 --- a/nmap.h +++ b/nmap.h @@ -253,8 +253,8 @@ void *realloc(); #ifndef NMAP_VERSION /* Edit this definition only within the quotes, because it is read from this file by the makefiles. */ -#define NMAP_VERSION "4.22SOC1" -#define NMAP_NUM_VERSION "4.22.0.1" +#define NMAP_VERSION "4.22SOC2" +#define NMAP_NUM_VERSION "4.22.0.2" #endif /* User configurable #defines: */