mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
updating ip_is_reserved(): 14/8 is now IANA reserved
This commit is contained in:
parent
1f88fd65de
commit
9be72c95d5
2 changed files with 4 additions and 0 deletions
|
|
@ -31,6 +31,9 @@ o Fixed a man page bug related to our DocBook to Nroff translation
|
|||
o The Zenmap man page is now installed on Unix when "make install" is
|
||||
run. This was supposed to work before, but didn't. [Kris]
|
||||
|
||||
o Updated IANA assignment IP list for random IP (-iR)
|
||||
generation. [Kris]
|
||||
|
||||
4.53
|
||||
|
||||
o Impoved Windows executable installer by making uninstall work better
|
||||
|
|
|
|||
1
nmap.cc
1
nmap.cc
|
|
@ -359,6 +359,7 @@ 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 27: /* 027/8 is IANA reserved */
|
||||
case 31: /* 031/8 is IANA reserved */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue