From a9c5d3391c417401577a2e603d70960f06ca9d98 Mon Sep 17 00:00:00 2001 From: jah Date: Sun, 11 Apr 2010 23:38:06 +0000 Subject: [PATCH] Changed erroneous RFC1918 Private Address assignment from 172.15/12 to 172.15/12. My bad. --- nselib/ipOps.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/ipOps.lua b/nselib/ipOps.lua index 2068eb4ad..b463eaef3 100644 --- a/nselib/ipOps.lua +++ b/nselib/ipOps.lua @@ -37,7 +37,7 @@ isPrivate = function( ip ) ip, err = expand_ip( ip ) if err then return nil, err end - local ipv4_private = { "10/8", "127/8", "169.254/16", "172.15/12", "192.168/16" } + local ipv4_private = { "10/8", "127/8", "169.254/16", "172.16/12", "192.168/16" } local ipv6_private = { "::/127", "FC00::/7", "FE80::/10" } local t, is_private = {} if ip:match( ":" ) then