diff --git a/CHANGELOG b/CHANGELOG index 71dd8030d..c66826458 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,8 @@ # Nmap Changelog ($Id$); -*-text-*- +o Updated IANA IP address space assignment list for random IP (-iR) + generation. [Kris] + o [NSE] Added UDP header parsing support to packet.lua. [jah] o [NSE] Correct global access errors in afp.lua reported by Patrick Donnelly diff --git a/nmap.cc b/nmap.cc index ab13d3ba3..f8c628549 100644 --- a/nmap.cc +++ b/nmap.cc @@ -352,7 +352,6 @@ static int ip_is_reserved(struct in_addr *ip) case 6: /* USA Army ISC */ case 7: /* used for BGP protocol */ case 10: /* the infamous 10.0.0.0/8 */ - case 14: /* 014/8 is IANA reserved */ case 23: /* 023/8 is IANA reserved */ case 31: /* 031/8 is IANA reserved */ case 36: /* 036/8 is IANA reserved */ @@ -367,7 +366,6 @@ static int ip_is_reserved(struct in_addr *ip) case 179: /* 179/8 is IANA reserved */ case 181: /* 181/8 is IANA reserved */ case 185: /* 185/8 is IANA reserved */ - case 223: /* 223/8 is IANA reserved */ return 1; default: break;