Skip to content

Commit

Permalink
portlist: filter out all of 127.0.0.0/8, not just 127.0.0.1/32
Browse files Browse the repository at this point in the history
Per user private bug report.

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
  • Loading branch information
bradfitz committed Apr 12, 2021
1 parent f325aa7 commit e619296
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions portlist/netstat.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ func parsePort(s string) int {
}

func isLoopbackAddr(s string) bool {
return strings.HasPrefix(s, "127.0.0.1:") ||
strings.HasPrefix(s, "127.0.0.1.") ||
return strings.HasPrefix(s, "127.") ||
strings.HasPrefix(s, "[::1]:") ||
strings.HasPrefix(s, "::1.")
}
Expand Down
3 changes: 2 additions & 1 deletion portlist/netstat_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ tcp6 0 0 *.24 *.* LISTEN
tcp4 0 0 *.8185 *.* LISTEN
tcp4 0 0 127.0.0.1.8186 *.* LISTEN
tcp6 0 0 ::1.8187 *.* LISTEN
tcp4 0 0 127.1.2.3.8188 *.* LISTEN
udp6 0 0 *.5453 *.*
udp4 0 0 *.5553 *.*
Expand Down Expand Up @@ -78,7 +79,7 @@ func TestParsePortsNetstat(t *testing.T) {
Port{"udp", 5354, "", ""},
Port{"udp", 5453, "", ""},
Port{"udp", 5553, "", ""},
Port{"tcp", 8185, "", ""}, // but not 8186 or 8187 on localhost
Port{"tcp", 8185, "", ""}, // but not 8186, 8187, 8188 on localhost
Port{"udp", 9353, "iTunes", ""},
}

Expand Down

0 comments on commit e619296

Please sign in to comment.