1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-31 03:49:01 +00:00

update ip_is_reserved(): 14/8 and 223/8 allocated

This commit is contained in:
kris
2010-04-10 04:11:39 +00:00
parent d7092b8a9d
commit 3f4153c956
2 changed files with 3 additions and 2 deletions

View File

@@ -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

View File

@@ -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;