aboutsummaryrefslogtreecommitdiffstats
path: root/p2p/discover/udp_test.go
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-11-22 01:11:54 +0800
committerFelix Lange <fjl@twurst.com>2016-11-23 05:21:18 +0800
commita98d1d67d6192df0bd57f608921a82cc508eee18 (patch)
tree49eb8ce8813e8f53cf7d949b2d7dd0ef575713e8 /p2p/discover/udp_test.go
parentba2884f3431312c616e21f57deeb03a7c4374d57 (diff)
downloaddexon-a98d1d67d6192df0bd57f608921a82cc508eee18.tar
dexon-a98d1d67d6192df0bd57f608921a82cc508eee18.tar.gz
dexon-a98d1d67d6192df0bd57f608921a82cc508eee18.tar.bz2
dexon-a98d1d67d6192df0bd57f608921a82cc508eee18.tar.lz
dexon-a98d1d67d6192df0bd57f608921a82cc508eee18.tar.xz
dexon-a98d1d67d6192df0bd57f608921a82cc508eee18.tar.zst
dexon-a98d1d67d6192df0bd57f608921a82cc508eee18.zip
p2p/discover, p2p/discv5: prevent relay of invalid IPs and low ports
The discovery DHT contains a number of hosts with LAN and loopback IPs. These get relayed because some implementations do not perform any checks on the IP. go-ethereum already prevented relay in most cases because it verifies that the host actually exists before adding it to the local table. But this verification causes other issues. We have received several reports where people's VPSs got shut down by hosting providers because sending packets to random LAN hosts is indistinguishable from a slow port scan. The new check prevents sending random packets to LAN by discarding LAN IPs sent by Internet hosts (and loopback IPs from LAN and Internet hosts). The new check also blacklists almost all currently registered special-purpose networks assigned by IANA to avoid inciting random responses from services in the LAN. As another precaution against abuse of the DHT, ports below 1024 are now considered invalid.
Diffstat (limited to 'p2p/discover/udp_test.go')
-rw-r--r--p2p/discover/udp_test.go7
1 files changed, 4 insertions, 3 deletions
diff --git a/p2p/discover/udp_test.go b/p2p/discover/udp_test.go
index 861bf48ca..495d41ef2 100644
--- a/p2p/discover/udp_test.go
+++ b/p2p/discover/udp_test.go
@@ -68,7 +68,7 @@ func newUDPTest(t *testing.T) *udpTest {
pipe: newpipe(),
localkey: newkey(),
remotekey: newkey(),
- remoteaddr: &net.UDPAddr{IP: net.IP{1, 2, 3, 4}, Port: 30303},
+ remoteaddr: &net.UDPAddr{IP: net.IP{10, 0, 1, 99}, Port: 30303},
}
test.table, test.udp, _ = newUDP(test.localkey, test.pipe, nil, "")
return test
@@ -312,8 +312,9 @@ func TestUDP_findnodeMultiReply(t *testing.T) {
// check that the sent neighbors are all returned by findnode
select {
case result := <-resultc:
- if !reflect.DeepEqual(result, list) {
- t.Errorf("neighbors mismatch:\n got: %v\n want: %v", result, list)
+ want := append(list[:2], list[3:]...)
+ if !reflect.DeepEqual(result, want) {
+ t.Errorf("neighbors mismatch:\n got: %v\n want: %v", result, want)
}
case err := <-errc:
t.Errorf("findnode error: %v", err)