Compare commits
1 Commits
e184e2a749
...
36d68944c2
Author | SHA1 | Date |
---|---|---|
|
36d68944c2 |
10
README.md
10
README.md
|
@ -72,17 +72,13 @@ addresses, so you must check both sets before determining something is in
|
|||
fact a Google service and not a Google customer.
|
||||
|
||||
# To run on a single process on Linux
|
||||
|
||||
Or, to track a single process, fe `firefox`, start it and run:
|
||||
|
||||
```shell
|
||||
sudo bpftrace netsendmsg.bt |
|
||||
grep --line-buffered ^$(pgrep firefox) | ./teller
|
||||
```
|
||||
|
||||
Or try:
|
||||
|
||||
```shell
|
||||
sudo bpftrace netsendmsg.bt | grep --line-buffered -i chrome | ./teller
|
||||
grep --line-buffered ^$(pgrep firefox) |
|
||||
stdbuf -oL cut -f2 | ./cidr.py | ./teller
|
||||
```
|
||||
|
||||
And cry.
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
#!/usr/bin/env -S python3 -u
|
||||
import sys
|
||||
from ipaddress import ip_network, ip_address
|
||||
|
||||
nets = []
|
||||
with open("goog-prefixes.txt") as f:
|
||||
nets = [line.strip() for line in f.readlines()]
|
||||
|
||||
for line in iter(sys.stdin.readline, ''):
|
||||
line = line.strip()
|
||||
for net in nets:
|
||||
try:
|
||||
if ip_address(line) in ip_network(net):
|
||||
print(line)
|
||||
|
||||
continue
|
||||
except:
|
||||
continue
|
460
cloud.json
460
cloud.json
|
@ -1,23 +1,7 @@
|
|||
{
|
||||
"syncToken": "1714053903689",
|
||||
"creationTime": "2024-04-25T07:05:03.68994",
|
||||
"syncToken": "1661187707374",
|
||||
"creationTime": "2022-08-22T10:01:47.374464",
|
||||
"prefixes": [{
|
||||
"ipv4Prefix": "34.35.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "africa-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.86.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "africa-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.177.50.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "africa-south1"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1900:8000::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "africa-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.80.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-east1"
|
||||
|
@ -297,26 +281,6 @@
|
|||
"ipv6Prefix": "2600:1900:41d0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.96.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.22.64.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.22.96.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.47.64.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.50.0.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.64.32.0/19",
|
||||
"service": "Google Cloud",
|
||||
|
@ -373,14 +337,6 @@
|
|||
"ipv6Prefix": "2600:1901:8180::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-northeast3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.227.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.47.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.93.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -397,10 +353,6 @@
|
|||
"ipv4Prefix": "34.124.44.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.64.0/22",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.87.0/24",
|
||||
"service": "Google Cloud",
|
||||
|
@ -409,10 +361,6 @@
|
|||
"ipv4Prefix": "34.157.215.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.177.32.0/22",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "35.200.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -445,10 +393,6 @@
|
|||
"ipv6Prefix": "2600:1900:40a0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.0.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.120.0/23",
|
||||
"service": "Google Cloud",
|
||||
|
@ -465,26 +409,10 @@
|
|||
"ipv4Prefix": "34.131.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.153.32.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.153.224.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south2"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1900:41b0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-south2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.1.128.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.21.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.87.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -517,14 +445,6 @@
|
|||
"ipv4Prefix": "34.126.128.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.44.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.60.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.142.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -593,14 +513,6 @@
|
|||
"ipv6Prefix": "2600:1900:4080::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.34.216.0/21",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.50.64.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.101.18.0/24",
|
||||
"service": "Google Cloud",
|
||||
|
@ -629,14 +541,6 @@
|
|||
"ipv4Prefix": "34.128.64.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.68.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.254.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "35.219.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -645,10 +549,6 @@
|
|||
"ipv6Prefix": "2600:1901:8170::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "asia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.40.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.87.192.0/18",
|
||||
"service": "Google Cloud",
|
||||
|
@ -665,14 +565,6 @@
|
|||
"ipv4Prefix": "34.124.40.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.36.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.48.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.151.64.0/18",
|
||||
"service": "Google Cloud",
|
||||
|
@ -717,10 +609,6 @@
|
|||
"ipv6Prefix": "2600:1900:40b0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.16.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.122.0/23",
|
||||
"service": "Google Cloud",
|
||||
|
@ -741,10 +629,6 @@
|
|||
"ipv6Prefix": "2600:1900:41c0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "australia-southeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.240.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.116.0/22",
|
||||
"service": "Google Cloud",
|
||||
|
@ -801,10 +685,6 @@
|
|||
"ipv6Prefix": "2600:1900:4150::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-north1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.192.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-southwest1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.44.0/23",
|
||||
"service": "Google Cloud",
|
||||
|
@ -841,22 +721,6 @@
|
|||
"ipv4Prefix": "23.251.128.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.22.112.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.22.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.34.128.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.38.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.76.0.0/14",
|
||||
"service": "Google Cloud",
|
||||
|
@ -989,42 +853,6 @@
|
|||
"ipv6Prefix": "2600:1900:4010::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.32.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west10"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.80.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west10"
|
||||
}, {
|
||||
"ipv4Prefix": "34.177.36.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west10"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1901:81f0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west10"
|
||||
}, {
|
||||
"ipv4Prefix": "34.17.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west12"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.124.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west12"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.250.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west12"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1901:81b0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west12"
|
||||
}, {
|
||||
"ipv4Prefix": "34.39.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.89.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1037,10 +865,6 @@
|
|||
"ipv4Prefix": "34.127.186.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.52.0/22",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.142.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1117,18 +941,6 @@
|
|||
"ipv6Prefix": "2600:1900:40c0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.224.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.226.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.40.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.89.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1209,14 +1021,6 @@
|
|||
"ipv6Prefix": "2600:1900:40d0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.32.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.34.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.90.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1309,18 +1113,6 @@
|
|||
"ipv6Prefix": "2600:1900:4160::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west6"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.160.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.153.38.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.153.230.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.154.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1329,18 +1121,10 @@
|
|||
"ipv4Prefix": "34.157.8.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.121.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.136.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.249.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "35.219.224.0/19",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1349,10 +1133,6 @@
|
|||
"ipv6Prefix": "2600:1901:8110::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.1.0.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west9"
|
||||
}, {
|
||||
"ipv4Prefix": "34.155.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1373,14 +1153,6 @@
|
|||
"ipv6Prefix": "2600:1901:8120::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "europe-west9"
|
||||
}, {
|
||||
"ipv4Prefix": "34.36.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.49.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.95.64.0/18",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1498,77 +1270,21 @@
|
|||
"service": "Google Cloud",
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.1.32.0/20",
|
||||
"ipv6Prefix": "2600:1901:1:1000::/52",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central1"
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.18.0.0/16",
|
||||
"ipv6Prefix": "2600:1901:1:2000::/51",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central1"
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.126.0/23",
|
||||
"ipv6Prefix": "2600:1901:1:4000::/50",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central1"
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.252.0/23",
|
||||
"ipv6Prefix": "2600:1901:1:8000::/49",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central1"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1901:81c0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.1.48.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.84.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.166.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.177.48.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central2"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1900:5400::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.64.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.90.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.216.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.165.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-west1"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1901:8160::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "me-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.19.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.20.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.47.0.0/18",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
"scope": "global"
|
||||
}, {
|
||||
"ipv4Prefix": "34.95.0.0/18",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1585,22 +1301,6 @@
|
|||
"ipv4Prefix": "34.124.12.0/22",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.37.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.42.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.49.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.58.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.0.0/18",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1629,10 +1329,6 @@
|
|||
"ipv6Prefix": "2600:1900:40e0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.32.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.114.0/23",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1649,22 +1345,10 @@
|
|||
"ipv4Prefix": "34.130.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.69.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.255.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast2"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1900:41e0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "northamerica-northeast2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.39.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "southamerica-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.95.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1717,10 +1401,6 @@
|
|||
"ipv6Prefix": "2600:1900:40f0::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "southamerica-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.48.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "southamerica-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.50.0/23",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1729,14 +1409,6 @@
|
|||
"ipv4Prefix": "34.127.178.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "southamerica-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.153.33.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "southamerica-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.153.225.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "southamerica-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.176.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1769,42 +1441,10 @@
|
|||
"ipv4Prefix": "23.251.144.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.225.0/24",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.16.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.27.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.28.0.0/14",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.33.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.41.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.42.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.44.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.46.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.66.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1829,10 +1469,6 @@
|
|||
"ipv4Prefix": "34.122.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.32.0/22",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.132.0.0/14",
|
||||
"service": "Google Cloud",
|
||||
|
@ -1865,10 +1501,6 @@
|
|||
"ipv4Prefix": "34.172.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.177.52.0/22",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "35.184.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2053,10 +1685,6 @@
|
|||
"ipv6Prefix": "2600:1900:4000::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.22.0.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "35.186.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2093,18 +1721,6 @@
|
|||
"ipv6Prefix": "2600:1900:4070::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-central2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.23.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.24.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.26.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.73.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2129,14 +1745,6 @@
|
|||
"ipv4Prefix": "34.148.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.152.72.0/21",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.177.40.0/21",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "35.185.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2229,14 +1837,6 @@
|
|||
"ipv6Prefix": "2600:1900:4020::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.21.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.48.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.85.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2345,10 +1945,6 @@
|
|||
"ipv6Prefix": "2600:1900:4090::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.1.16.0/20",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east5"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.32.0/22",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2385,10 +1981,6 @@
|
|||
"ipv6Prefix": "2600:1901:8150::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-east7"
|
||||
}, {
|
||||
"ipv4Prefix": "34.0.128.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.157.46.0/23",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2405,10 +1997,6 @@
|
|||
"ipv6Prefix": "2600:1901:8140::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-south1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.19.0.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.82.0.0/15",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2513,10 +2101,6 @@
|
|||
"ipv6Prefix": "2600:1900:4040::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west1"
|
||||
}, {
|
||||
"ipv4Prefix": "34.20.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.94.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2569,10 +2153,6 @@
|
|||
"ipv6Prefix": "2600:1900:4120::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west2"
|
||||
}, {
|
||||
"ipv4Prefix": "34.22.32.0/19",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.52.0/24",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2601,10 +2181,6 @@
|
|||
"ipv6Prefix": "2600:1900:4170::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west3"
|
||||
}, {
|
||||
"ipv4Prefix": "34.16.128.0/17",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.104.72.0/22",
|
||||
"service": "Google Cloud",
|
||||
|
@ -2629,21 +2205,5 @@
|
|||
"ipv6Prefix": "2600:1900:4180::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west4"
|
||||
}, {
|
||||
"ipv4Prefix": "34.37.0.0/16",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.46.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west8"
|
||||
}, {
|
||||
"ipv4Prefix": "34.128.62.0/23",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west8"
|
||||
}, {
|
||||
"ipv6Prefix": "2600:1900:4280::/44",
|
||||
"service": "Google Cloud",
|
||||
"scope": "us-west8"
|
||||
}]
|
||||
}
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
34.35.0.0/16
|
||||
34.152.86.0/23
|
||||
34.177.50.0/23
|
||||
34.80.0.0/15
|
||||
34.137.0.0/16
|
||||
35.185.128.0/19
|
||||
|
@ -67,11 +64,6 @@
|
|||
35.220.45.0/24
|
||||
35.242.45.0/24
|
||||
35.243.56.0/21
|
||||
34.0.96.0/19
|
||||
34.22.64.0/19
|
||||
34.22.96.0/20
|
||||
34.47.64.0/18
|
||||
34.50.0.0/18
|
||||
34.64.32.0/19
|
||||
34.64.64.0/22
|
||||
34.64.68.0/22
|
||||
|
@ -85,16 +77,12 @@
|
|||
34.64.160.0/19
|
||||
34.64.192.0/18
|
||||
35.216.0.0/17
|
||||
34.0.227.0/24
|
||||
34.47.128.0/17
|
||||
34.93.0.0/16
|
||||
34.100.128.0/17
|
||||
34.104.108.0/23
|
||||
34.124.44.0/23
|
||||
34.152.64.0/22
|
||||
34.157.87.0/24
|
||||
34.157.215.0/24
|
||||
34.177.32.0/22
|
||||
35.200.128.0/17
|
||||
35.201.41.0/24
|
||||
35.207.192.0/18
|
||||
|
@ -102,15 +90,10 @@
|
|||
35.234.208.0/20
|
||||
35.242.42.0/24
|
||||
35.244.0.0/18
|
||||
34.0.0.0/20
|
||||
34.104.120.0/23
|
||||
34.124.56.0/23
|
||||
34.126.208.0/20
|
||||
34.131.0.0/16
|
||||
34.153.32.0/24
|
||||
34.153.224.0/24
|
||||
34.1.128.0/20
|
||||
34.21.128.0/17
|
||||
34.87.0.0/17
|
||||
34.87.128.0/18
|
||||
34.104.58.0/23
|
||||
|
@ -119,8 +102,6 @@
|
|||
34.124.128.0/17
|
||||
34.126.64.0/18
|
||||
34.126.128.0/18
|
||||
34.128.44.0/23
|
||||
34.128.60.0/23
|
||||
34.142.128.0/17
|
||||
34.143.128.0/17
|
||||
34.157.82.0/23
|
||||
|
@ -137,8 +118,6 @@
|
|||
35.240.128.0/17
|
||||
35.242.24.0/23
|
||||
35.247.128.0/18
|
||||
34.34.216.0/21
|
||||
34.50.64.0/18
|
||||
34.101.18.0/24
|
||||
34.101.20.0/22
|
||||
34.101.24.0/22
|
||||
|
@ -146,16 +125,11 @@
|
|||
34.101.64.0/18
|
||||
34.101.128.0/17
|
||||
34.128.64.0/18
|
||||
34.152.68.0/24
|
||||
34.157.254.0/24
|
||||
35.219.0.0/17
|
||||
34.40.128.0/17
|
||||
34.87.192.0/18
|
||||
34.104.104.0/23
|
||||
34.116.64.0/18
|
||||
34.124.40.0/23
|
||||
34.128.36.0/24
|
||||
34.128.48.0/24
|
||||
34.151.64.0/18
|
||||
34.151.128.0/18
|
||||
35.189.0.0/18
|
||||
|
@ -166,12 +140,10 @@
|
|||
35.234.224.0/20
|
||||
35.242.41.0/24
|
||||
35.244.64.0/18
|
||||
34.0.16.0/20
|
||||
34.104.122.0/23
|
||||
34.124.58.0/23
|
||||
34.126.192.0/20
|
||||
34.129.0.0/16
|
||||
34.0.240.0/20
|
||||
34.104.116.0/22
|
||||
34.116.128.0/17
|
||||
34.118.0.0/17
|
||||
|
@ -184,7 +156,6 @@
|
|||
35.220.26.0/24
|
||||
35.228.0.0/16
|
||||
35.242.26.0/24
|
||||
34.0.192.0/19
|
||||
34.157.44.0/23
|
||||
34.157.172.0/23
|
||||
34.164.0.0/16
|
||||
|
@ -193,10 +164,6 @@
|
|||
8.34.211.0/24
|
||||
8.34.220.0/22
|
||||
23.251.128.0/20
|
||||
34.22.112.0/20
|
||||
34.22.128.0/17
|
||||
34.34.128.0/18
|
||||
34.38.0.0/16
|
||||
34.76.0.0/14
|
||||
34.118.254.0/23
|
||||
34.140.0.0/16
|
||||
|
@ -229,17 +196,9 @@
|
|||
146.148.16.0/20
|
||||
146.148.112.0/20
|
||||
192.158.28.0/22
|
||||
34.32.0.0/17
|
||||
34.152.80.0/23
|
||||
34.177.36.0/23
|
||||
34.17.0.0/16
|
||||
34.157.124.0/23
|
||||
34.157.250.0/23
|
||||
34.39.0.0/17
|
||||
34.89.0.0/17
|
||||
34.105.128.0/17
|
||||
34.127.186.0/23
|
||||
34.128.52.0/22
|
||||
34.142.0.0/17
|
||||
34.147.128.0/17
|
||||
34.157.36.0/22
|
||||
|
@ -258,9 +217,6 @@
|
|||
35.242.20.0/22
|
||||
35.242.128.0/18
|
||||
35.246.0.0/17
|
||||
34.0.224.0/24
|
||||
34.0.226.0/24
|
||||
34.40.0.0/17
|
||||
34.89.128.0/17
|
||||
34.104.112.0/23
|
||||
34.107.0.0/17
|
||||
|
@ -280,8 +236,6 @@
|
|||
35.242.18.0/23
|
||||
35.242.192.0/18
|
||||
35.246.128.0/17
|
||||
34.32.128.0/17
|
||||
34.34.0.0/17
|
||||
34.90.0.0/15
|
||||
34.104.126.0/23
|
||||
34.124.62.0/23
|
||||
|
@ -303,22 +257,14 @@
|
|||
35.220.44.0/24
|
||||
35.235.216.0/21
|
||||
35.242.44.0/24
|
||||
34.0.160.0/19
|
||||
34.153.38.0/24
|
||||
34.153.230.0/24
|
||||
34.154.0.0/16
|
||||
34.157.8.0/23
|
||||
34.157.121.0/24
|
||||
34.157.136.0/23
|
||||
34.157.249.0/24
|
||||
35.219.224.0/19
|
||||
34.1.0.0/20
|
||||
34.155.0.0/16
|
||||
34.157.12.0/22
|
||||
34.157.140.0/22
|
||||
34.163.0.0/16
|
||||
34.36.0.0/16
|
||||
34.49.0.0/16
|
||||
34.95.64.0/18
|
||||
34.96.64.0/18
|
||||
34.98.64.0/18
|
||||
|
@ -347,43 +293,20 @@
|
|||
130.211.8.0/21
|
||||
130.211.16.0/20
|
||||
130.211.32.0/20
|
||||
34.1.32.0/20
|
||||
34.18.0.0/16
|
||||
34.157.126.0/23
|
||||
34.157.252.0/23
|
||||
34.1.48.0/20
|
||||
34.152.84.0/23
|
||||
34.166.0.0/16
|
||||
34.177.48.0/23
|
||||
34.0.64.0/19
|
||||
34.157.90.0/23
|
||||
34.157.216.0/23
|
||||
34.165.0.0/16
|
||||
34.19.128.0/17
|
||||
34.20.0.0/17
|
||||
34.47.0.0/18
|
||||
34.95.0.0/18
|
||||
34.104.76.0/22
|
||||
34.118.128.0/18
|
||||
34.124.12.0/22
|
||||
34.128.37.0/24
|
||||
34.128.42.0/23
|
||||
34.128.49.0/24
|
||||
34.128.58.0/23
|
||||
34.152.0.0/18
|
||||
35.203.0.0/17
|
||||
35.215.0.0/18
|
||||
35.220.43.0/24
|
||||
35.234.240.0/20
|
||||
35.242.43.0/24
|
||||
34.0.32.0/20
|
||||
34.104.114.0/23
|
||||
34.124.50.0/23
|
||||
34.124.112.0/20
|
||||
34.130.0.0/16
|
||||
34.152.69.0/24
|
||||
34.157.255.0/24
|
||||
34.39.128.0/17
|
||||
34.95.128.0/17
|
||||
34.104.80.0/21
|
||||
34.124.16.0/21
|
||||
|
@ -396,11 +319,8 @@
|
|||
35.235.0.0/20
|
||||
35.242.40.0/24
|
||||
35.247.192.0/18
|
||||
34.0.48.0/20
|
||||
34.104.50.0/23
|
||||
34.127.178.0/23
|
||||
34.153.33.0/24
|
||||
34.153.225.0/24
|
||||
34.176.0.0/16
|
||||
8.34.210.0/24
|
||||
8.34.212.0/22
|
||||
|
@ -408,22 +328,13 @@
|
|||
8.35.192.0/21
|
||||
23.236.48.0/20
|
||||
23.251.144.0/20
|
||||
34.0.225.0/24
|
||||
34.16.0.0/17
|
||||
34.27.0.0/16
|
||||
34.28.0.0/14
|
||||
34.33.0.0/16
|
||||
34.41.0.0/16
|
||||
34.42.0.0/16
|
||||
34.44.0.0/15
|
||||
34.46.0.0/16
|
||||
34.66.0.0/15
|
||||
34.68.0.0/14
|
||||
34.72.0.0/16
|
||||
34.118.200.0/21
|
||||
34.121.0.0/16
|
||||
34.122.0.0/15
|
||||
34.128.32.0/22
|
||||
34.132.0.0/14
|
||||
34.136.0.0/16
|
||||
34.157.84.0/23
|
||||
|
@ -432,7 +343,6 @@
|
|||
34.157.224.0/20
|
||||
34.170.0.0/15
|
||||
34.172.0.0/15
|
||||
34.177.52.0/22
|
||||
35.184.0.0/16
|
||||
35.188.0.0/17
|
||||
35.188.128.0/18
|
||||
|
@ -478,7 +388,6 @@
|
|||
199.192.115.0/24
|
||||
199.223.232.0/22
|
||||
199.223.236.0/24
|
||||
34.22.0.0/19
|
||||
35.186.0.0/17
|
||||
35.186.128.0/20
|
||||
35.206.32.0/19
|
||||
|
@ -487,17 +396,12 @@
|
|||
107.167.160.0/20
|
||||
108.59.88.0/21
|
||||
173.255.120.0/21
|
||||
34.23.0.0/16
|
||||
34.24.0.0/15
|
||||
34.26.0.0/16
|
||||
34.73.0.0/16
|
||||
34.74.0.0/15
|
||||
34.98.128.0/21
|
||||
34.118.250.0/23
|
||||
34.138.0.0/15
|
||||
34.148.0.0/16
|
||||
34.152.72.0/21
|
||||
34.177.40.0/21
|
||||
35.185.0.0/17
|
||||
35.190.128.0/18
|
||||
35.196.0.0/16
|
||||
|
@ -520,8 +424,6 @@
|
|||
104.196.128.0/18
|
||||
104.196.192.0/19
|
||||
162.216.148.0/22
|
||||
34.21.0.0/17
|
||||
34.48.0.0/16
|
||||
34.85.128.0/17
|
||||
34.86.0.0/16
|
||||
34.104.60.0/23
|
||||
|
@ -548,7 +450,6 @@
|
|||
35.242.60.0/22
|
||||
35.243.40.0/21
|
||||
35.245.0.0/16
|
||||
34.1.16.0/20
|
||||
34.157.32.0/22
|
||||
34.157.160.0/22
|
||||
34.162.0.0/16
|
||||
|
@ -556,11 +457,9 @@
|
|||
34.127.184.0/23
|
||||
34.161.0.0/16
|
||||
35.206.10.0/23
|
||||
34.0.128.0/19
|
||||
34.157.46.0/23
|
||||
34.157.174.0/23
|
||||
34.174.0.0/16
|
||||
34.19.0.0/17
|
||||
34.82.0.0/15
|
||||
34.105.0.0/17
|
||||
34.118.192.0/21
|
||||
|
@ -586,7 +485,6 @@
|
|||
104.198.0.0/20
|
||||
104.198.96.0/20
|
||||
104.199.112.0/20
|
||||
34.20.128.0/17
|
||||
34.94.0.0/16
|
||||
34.102.0.0/17
|
||||
34.104.64.0/21
|
||||
|
@ -599,19 +497,14 @@
|
|||
35.236.0.0/17
|
||||
35.242.47.0/24
|
||||
35.243.0.0/21
|
||||
34.22.32.0/19
|
||||
34.104.52.0/24
|
||||
34.106.0.0/16
|
||||
34.127.180.0/24
|
||||
35.217.64.0/18
|
||||
35.220.31.0/24
|
||||
35.242.31.0/24
|
||||
34.16.128.0/17
|
||||
34.104.72.0/22
|
||||
34.118.240.0/22
|
||||
34.124.8.0/22
|
||||
34.125.0.0/16
|
||||
35.219.128.0/18
|
||||
34.37.0.0/16
|
||||
34.128.46.0/23
|
||||
34.128.62.0/23
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
2600:1900:8000::/44
|
||||
2600:1900:4030::/44
|
||||
2600:1900:41a0::/44
|
||||
2600:1900:4050::/44
|
||||
|
@ -14,8 +13,6 @@
|
|||
2600:1900:4150::/44
|
||||
2600:1901:8100::/44
|
||||
2600:1900:4010::/44
|
||||
2600:1901:81f0::/44
|
||||
2600:1901:81b0::/44
|
||||
2600:1900:40c0::/44
|
||||
2600:1900:40d0::/44
|
||||
2600:1900:4060::/44
|
||||
|
@ -23,9 +20,10 @@
|
|||
2600:1901:8110::/44
|
||||
2600:1901:8120::/44
|
||||
2600:1901::/48
|
||||
2600:1901:81c0::/44
|
||||
2600:1900:5400::/44
|
||||
2600:1901:8160::/44
|
||||
2600:1901:1:1000::/52
|
||||
2600:1901:1:2000::/51
|
||||
2600:1901:1:4000::/50
|
||||
2600:1901:1:8000::/49
|
||||
2600:1900:40e0::/44
|
||||
2600:1900:41e0::/44
|
||||
2600:1900:40f0::/44
|
||||
|
@ -41,4 +39,3 @@
|
|||
2600:1900:4120::/44
|
||||
2600:1900:4170::/44
|
||||
2600:1900:4180::/44
|
||||
2600:1900:4280::/44
|
||||
|
|
|
@ -1,73 +1,76 @@
|
|||
8.8.4.0/24
|
||||
8.8.8.0/24
|
||||
8.34.208.0/20
|
||||
8.35.192.0/20
|
||||
23.236.48.0/20
|
||||
23.251.128.0/19
|
||||
34.0.0.0/15
|
||||
34.2.0.0/16
|
||||
34.3.0.0/23
|
||||
34.3.3.0/24
|
||||
34.3.4.0/24
|
||||
34.3.8.0/21
|
||||
34.3.16.0/20
|
||||
34.3.32.0/19
|
||||
34.3.64.0/18
|
||||
34.4.0.0/14
|
||||
34.8.0.0/13
|
||||
34.16.0.0/12
|
||||
34.32.0.0/11
|
||||
34.64.0.0/10
|
||||
34.128.0.0/10
|
||||
35.184.0.0/13
|
||||
35.192.0.0/14
|
||||
35.196.0.0/15
|
||||
35.198.0.0/16
|
||||
35.199.0.0/17
|
||||
35.199.128.0/18
|
||||
35.200.0.0/13
|
||||
35.208.0.0/12
|
||||
35.224.0.0/12
|
||||
35.240.0.0/13
|
||||
64.15.112.0/20
|
||||
64.233.160.0/19
|
||||
66.22.228.0/23
|
||||
66.102.0.0/20
|
||||
66.249.64.0/19
|
||||
70.32.128.0/19
|
||||
72.14.192.0/18
|
||||
74.125.0.0/16
|
||||
104.154.0.0/15
|
||||
104.196.0.0/14
|
||||
104.237.160.0/19
|
||||
107.167.160.0/19
|
||||
107.178.192.0/18
|
||||
108.59.80.0/20
|
||||
108.170.192.0/18
|
||||
108.177.0.0/17
|
||||
130.211.0.0/16
|
||||
142.250.0.0/15
|
||||
146.148.0.0/17
|
||||
162.216.148.0/22
|
||||
162.222.176.0/21
|
||||
172.110.32.0/21
|
||||
172.217.0.0/16
|
||||
172.253.0.0/16
|
||||
173.194.0.0/16
|
||||
173.255.112.0/20
|
||||
192.158.28.0/22
|
||||
192.178.0.0/15
|
||||
193.186.4.0/24
|
||||
199.36.154.0/23
|
||||
199.36.156.0/24
|
||||
199.192.112.0/22
|
||||
199.223.232.0/21
|
||||
207.223.160.0/20
|
||||
208.65.152.0/22
|
||||
208.68.108.0/22
|
||||
208.81.188.0/22
|
||||
208.117.224.0/19
|
||||
209.85.128.0/17
|
||||
216.58.192.0/19
|
||||
216.73.80.0/20
|
||||
216.239.32.0/19
|
||||
8.8.4.0/24
|
||||
8.8.8.0/24
|
||||
8.34.208.0/20
|
||||
8.35.192.0/20
|
||||
23.236.48.0/20
|
||||
23.251.128.0/19
|
||||
34.0.0.0/15
|
||||
34.2.0.0/16
|
||||
34.3.0.0/23
|
||||
34.3.3.0/24
|
||||
34.3.4.0/24
|
||||
34.3.8.0/21
|
||||
34.3.16.0/20
|
||||
34.3.32.0/19
|
||||
34.3.64.0/18
|
||||
34.3.128.0/17
|
||||
34.4.0.0/14
|
||||
34.8.0.0/13
|
||||
34.16.0.0/12
|
||||
34.32.0.0/11
|
||||
34.64.0.0/10
|
||||
34.128.0.0/10
|
||||
35.184.0.0/13
|
||||
35.192.0.0/14
|
||||
35.196.0.0/15
|
||||
35.198.0.0/16
|
||||
35.199.0.0/17
|
||||
35.199.128.0/18
|
||||
35.200.0.0/13
|
||||
35.208.0.0/12
|
||||
35.224.0.0/12
|
||||
35.240.0.0/13
|
||||
64.15.112.0/20
|
||||
64.233.160.0/19
|
||||
66.22.228.0/23
|
||||
66.102.0.0/20
|
||||
66.249.64.0/19
|
||||
70.32.128.0/19
|
||||
72.14.192.0/18
|
||||
74.114.24.0/21
|
||||
74.125.0.0/16
|
||||
104.154.0.0/15
|
||||
104.196.0.0/14
|
||||
104.237.160.0/19
|
||||
107.167.160.0/19
|
||||
107.178.192.0/18
|
||||
108.59.80.0/20
|
||||
108.170.192.0/18
|
||||
108.177.0.0/17
|
||||
130.211.0.0/16
|
||||
136.112.0.0/12
|
||||
142.250.0.0/15
|
||||
146.148.0.0/17
|
||||
162.216.148.0/22
|
||||
162.222.176.0/21
|
||||
172.110.32.0/21
|
||||
172.217.0.0/16
|
||||
172.253.0.0/16
|
||||
173.194.0.0/16
|
||||
173.255.112.0/20
|
||||
192.158.28.0/22
|
||||
192.178.0.0/15
|
||||
193.186.4.0/24
|
||||
199.36.154.0/23
|
||||
199.36.156.0/24
|
||||
199.192.112.0/22
|
||||
199.223.232.0/21
|
||||
207.223.160.0/20
|
||||
208.65.152.0/22
|
||||
208.68.108.0/22
|
||||
208.81.188.0/22
|
||||
208.117.224.0/19
|
||||
209.85.128.0/17
|
||||
216.58.192.0/19
|
||||
216.73.80.0/20
|
||||
216.239.32.0/19
|
||||
|
|
10
goog.json
10
goog.json
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"syncToken": "1714053903689",
|
||||
"creationTime": "2024-04-25T07:05:03.68994",
|
||||
"syncToken": "1661015026669",
|
||||
"creationTime": "2022-08-20T10:03:46.669184",
|
||||
"prefixes": [{
|
||||
"ipv4Prefix": "8.8.4.0/24"
|
||||
}, {
|
||||
|
@ -31,6 +31,8 @@
|
|||
"ipv4Prefix": "34.3.32.0/19"
|
||||
}, {
|
||||
"ipv4Prefix": "34.3.64.0/18"
|
||||
}, {
|
||||
"ipv4Prefix": "34.3.128.0/17"
|
||||
}, {
|
||||
"ipv4Prefix": "34.4.0.0/14"
|
||||
}, {
|
||||
|
@ -77,6 +79,8 @@
|
|||
"ipv4Prefix": "70.32.128.0/19"
|
||||
}, {
|
||||
"ipv4Prefix": "72.14.192.0/18"
|
||||
}, {
|
||||
"ipv4Prefix": "74.114.24.0/21"
|
||||
}, {
|
||||
"ipv4Prefix": "74.125.0.0/16"
|
||||
}, {
|
||||
|
@ -97,6 +101,8 @@
|
|||
"ipv4Prefix": "108.177.0.0/17"
|
||||
}, {
|
||||
"ipv4Prefix": "130.211.0.0/16"
|
||||
}, {
|
||||
"ipv4Prefix": "136.112.0.0/12"
|
||||
}, {
|
||||
"ipv4Prefix": "142.250.0.0/15"
|
||||
}, {
|
||||
|
|
|
@ -6,15 +6,7 @@ kprobe:tcp_sendmsg
|
|||
{
|
||||
$sk = (struct sock *)arg0;
|
||||
|
||||
if($sk->__sk_common.skc_family==2) {
|
||||
$daddr = ntop($sk->__sk_common.skc_daddr);
|
||||
}
|
||||
else if($sk->__sk_common.skc_family==10) {
|
||||
$daddr = ntop($sk->__sk_common.skc_v6_daddr.in6_u.u6_addr8);
|
||||
}
|
||||
$daddr = ntop($sk->__sk_common.skc_daddr);
|
||||
|
||||
/* skc_v6_daddr, skc_family */
|
||||
|
||||
printf("direct\t%s\tpid%d\t%d\t%s\n", $daddr , pid, $sk->__sk_common.skc_family, comm);
|
||||
printf("%-8d\t%s\t(%s)\n", pid, $daddr, comm);
|
||||
}
|
||||
|
||||
|
|
48
teller.cc
48
teller.cc
|
@ -14,7 +14,6 @@ using namespace std;
|
|||
|
||||
struct TrackerConf
|
||||
{
|
||||
string name; // superfluous but makes life easier
|
||||
double freq{400};
|
||||
double balance{0.5}; // 0 is left, 1 is right
|
||||
std::atomic<int64_t> counter{0};
|
||||
|
@ -87,7 +86,6 @@ int main(int argc, char** argv)
|
|||
auto tellerarr = conftbl.as_table();
|
||||
for(const auto& t : *tellerarr) {
|
||||
auto& entry = trackerdb[(string)t.first];
|
||||
entry.name = t.first;
|
||||
entry.balance = conftbl[t.first]["balance"].value_or(0.5);
|
||||
entry.freq = conftbl[t.first]["freq"].value_or(500);
|
||||
cout <<"Want to play sound for tracker "<<t.first<<", balance= "<<entry.balance<<" frequency = "<<entry.freq<<endl;
|
||||
|
@ -115,7 +113,7 @@ int main(int argc, char** argv)
|
|||
});
|
||||
}
|
||||
else {
|
||||
cout<<"Not array, or empty"<<endl;
|
||||
cout<<"Not array?"<<endl;
|
||||
}
|
||||
|
||||
track = trackertbl[t.first]["negative"].as_array();
|
||||
|
@ -128,7 +126,7 @@ int main(int argc, char** argv)
|
|||
});
|
||||
}
|
||||
else {
|
||||
cout<<"Negative "<<t.first<<" not array, or empty"<<endl;
|
||||
cout<<"Negative "<<t.first<<" not array?"<<endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -139,7 +137,7 @@ int main(int argc, char** argv)
|
|||
}
|
||||
string line;
|
||||
while(getline(cin, line)) {
|
||||
string ip;
|
||||
|
||||
/*
|
||||
22:42:25.323984 IP 13.81.0.219.29601 > 10.0.0.3.32902: tcp 1186
|
||||
22:42:25.323997 IP 10.0.0.3.32902 > 13.81.0.219.29601: tcp 0
|
||||
|
@ -152,20 +150,18 @@ int main(int argc, char** argv)
|
|||
auto pos = line.find('>');
|
||||
if(pos == string::npos)
|
||||
continue;
|
||||
auto pos2 = line.find('.', pos); // this misses out on IPv6 ICMP
|
||||
auto pos2 = line.find('.', pos);
|
||||
if(pos2 == string::npos) continue;
|
||||
line.resize(pos2);
|
||||
ip = line.substr(pos+2, pos2 - pos - 2);
|
||||
}
|
||||
else if(line.find("direct") ==0 ) { // ebpfscript output
|
||||
auto pos = line.find('\t');
|
||||
if(pos == string::npos)
|
||||
continue;
|
||||
auto pos2 = line.find('\t', pos+1);
|
||||
if(pos2 == string::npos)
|
||||
continue;
|
||||
line.resize(pos2);
|
||||
ip = line.substr(pos+1);
|
||||
string ip = line.substr(pos+2, pos2 - pos - 2);
|
||||
|
||||
if(tracksneg.lookup(&line.at(pos+2))) {
|
||||
cout<<ip<<" negative match"<<endl;
|
||||
}
|
||||
else if(auto fptr = trackspos.lookup(&line.at(pos+2))) {
|
||||
cout<<ip<<" match!"<<endl;
|
||||
((TrackerConf*)fptr)->counter++;
|
||||
}
|
||||
}
|
||||
else {
|
||||
auto pos = line.find('>');
|
||||
|
@ -182,19 +178,17 @@ int main(int argc, char** argv)
|
|||
if(pos2 == string::npos) continue;
|
||||
|
||||
line.resize(pos2);
|
||||
ip=line.substr(pos+2, pos2 - pos - 2);
|
||||
}
|
||||
if(!ip.empty()) {
|
||||
if(auto fptr = tracksneg.lookup(ip.c_str())) {
|
||||
auto ptr = (TrackerConf*)fptr;
|
||||
cout<<ip<<" negative match ("<<ptr->name<<")"<<endl;
|
||||
string ip=line.substr(pos+2, pos2 - pos - 2);
|
||||
// cout<<&line.at(pos+2)<<endl;
|
||||
if(tracksneg.lookup(&line.at(pos+2))) {
|
||||
cout<<ip<<" negative match"<<endl;
|
||||
}
|
||||
else if(auto fptr = trackspos.lookup(ip.c_str())) {
|
||||
auto ptr = (TrackerConf*)fptr;
|
||||
cout<<ip<<" match ("<<ptr->name<<")"<<endl;
|
||||
ptr->counter++;
|
||||
else if(auto fptr = trackspos.lookup(&line.at(pos+2))) {
|
||||
cout<<ip<<" match!"<<endl;
|
||||
((TrackerConf*)fptr)->counter++;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
sleep(1);
|
||||
}
|
||||
|
|
129
trackers.conf
129
trackers.conf
|
@ -14,6 +14,7 @@
|
|||
"34.3.16.0/20",
|
||||
"34.3.32.0/19",
|
||||
"34.3.64.0/18",
|
||||
"34.3.128.0/17",
|
||||
"34.4.0.0/14",
|
||||
"34.8.0.0/13",
|
||||
"34.16.0.0/12",
|
||||
|
@ -37,6 +38,7 @@
|
|||
"66.249.64.0/19",
|
||||
"70.32.128.0/19",
|
||||
"72.14.192.0/18",
|
||||
"74.114.24.0/21",
|
||||
"74.125.0.0/16",
|
||||
"104.154.0.0/15",
|
||||
"104.196.0.0/14",
|
||||
|
@ -47,6 +49,7 @@
|
|||
"108.170.192.0/18",
|
||||
"108.177.0.0/17",
|
||||
"130.211.0.0/16",
|
||||
"136.112.0.0/12",
|
||||
"142.250.0.0/15",
|
||||
"146.148.0.0/17",
|
||||
"162.216.148.0/22",
|
||||
|
@ -82,13 +85,10 @@
|
|||
"2620:120:e000::/40",
|
||||
"2800:3f0::/32",
|
||||
"2a00:1450::/32",
|
||||
"2c0f:fb50::/32"]
|
||||
"2c0f:fb50::/32"
|
||||
]
|
||||
|
||||
negative=[
|
||||
"34.35.0.0/16",
|
||||
"34.152.86.0/23",
|
||||
"34.177.50.0/23",
|
||||
"34.80.0.0/15",
|
||||
negative=["34.80.0.0/15",
|
||||
"34.137.0.0/16",
|
||||
"35.185.128.0/19",
|
||||
"35.185.160.0/20",
|
||||
|
@ -154,11 +154,6 @@
|
|||
"35.220.45.0/24",
|
||||
"35.242.45.0/24",
|
||||
"35.243.56.0/21",
|
||||
"34.0.96.0/19",
|
||||
"34.22.64.0/19",
|
||||
"34.22.96.0/20",
|
||||
"34.47.64.0/18",
|
||||
"34.50.0.0/18",
|
||||
"34.64.32.0/19",
|
||||
"34.64.64.0/22",
|
||||
"34.64.68.0/22",
|
||||
|
@ -172,16 +167,12 @@
|
|||
"34.64.160.0/19",
|
||||
"34.64.192.0/18",
|
||||
"35.216.0.0/17",
|
||||
"34.0.227.0/24",
|
||||
"34.47.128.0/17",
|
||||
"34.93.0.0/16",
|
||||
"34.100.128.0/17",
|
||||
"34.104.108.0/23",
|
||||
"34.124.44.0/23",
|
||||
"34.152.64.0/22",
|
||||
"34.157.87.0/24",
|
||||
"34.157.215.0/24",
|
||||
"34.177.32.0/22",
|
||||
"35.200.128.0/17",
|
||||
"35.201.41.0/24",
|
||||
"35.207.192.0/18",
|
||||
|
@ -189,15 +180,10 @@
|
|||
"35.234.208.0/20",
|
||||
"35.242.42.0/24",
|
||||
"35.244.0.0/18",
|
||||
"34.0.0.0/20",
|
||||
"34.104.120.0/23",
|
||||
"34.124.56.0/23",
|
||||
"34.126.208.0/20",
|
||||
"34.131.0.0/16",
|
||||
"34.153.32.0/24",
|
||||
"34.153.224.0/24",
|
||||
"34.1.128.0/20",
|
||||
"34.21.128.0/17",
|
||||
"34.87.0.0/17",
|
||||
"34.87.128.0/18",
|
||||
"34.104.58.0/23",
|
||||
|
@ -206,8 +192,6 @@
|
|||
"34.124.128.0/17",
|
||||
"34.126.64.0/18",
|
||||
"34.126.128.0/18",
|
||||
"34.128.44.0/23",
|
||||
"34.128.60.0/23",
|
||||
"34.142.128.0/17",
|
||||
"34.143.128.0/17",
|
||||
"34.157.82.0/23",
|
||||
|
@ -224,8 +208,6 @@
|
|||
"35.240.128.0/17",
|
||||
"35.242.24.0/23",
|
||||
"35.247.128.0/18",
|
||||
"34.34.216.0/21",
|
||||
"34.50.64.0/18",
|
||||
"34.101.18.0/24",
|
||||
"34.101.20.0/22",
|
||||
"34.101.24.0/22",
|
||||
|
@ -233,16 +215,11 @@
|
|||
"34.101.64.0/18",
|
||||
"34.101.128.0/17",
|
||||
"34.128.64.0/18",
|
||||
"34.152.68.0/24",
|
||||
"34.157.254.0/24",
|
||||
"35.219.0.0/17",
|
||||
"34.40.128.0/17",
|
||||
"34.87.192.0/18",
|
||||
"34.104.104.0/23",
|
||||
"34.116.64.0/18",
|
||||
"34.124.40.0/23",
|
||||
"34.128.36.0/24",
|
||||
"34.128.48.0/24",
|
||||
"34.151.64.0/18",
|
||||
"34.151.128.0/18",
|
||||
"35.189.0.0/18",
|
||||
|
@ -253,12 +230,10 @@
|
|||
"35.234.224.0/20",
|
||||
"35.242.41.0/24",
|
||||
"35.244.64.0/18",
|
||||
"34.0.16.0/20",
|
||||
"34.104.122.0/23",
|
||||
"34.124.58.0/23",
|
||||
"34.126.192.0/20",
|
||||
"34.129.0.0/16",
|
||||
"34.0.240.0/20",
|
||||
"34.104.116.0/22",
|
||||
"34.116.128.0/17",
|
||||
"34.118.0.0/17",
|
||||
|
@ -271,7 +246,6 @@
|
|||
"35.220.26.0/24",
|
||||
"35.228.0.0/16",
|
||||
"35.242.26.0/24",
|
||||
"34.0.192.0/19",
|
||||
"34.157.44.0/23",
|
||||
"34.157.172.0/23",
|
||||
"34.164.0.0/16",
|
||||
|
@ -280,10 +254,6 @@
|
|||
"8.34.211.0/24",
|
||||
"8.34.220.0/22",
|
||||
"23.251.128.0/20",
|
||||
"34.22.112.0/20",
|
||||
"34.22.128.0/17",
|
||||
"34.34.128.0/18",
|
||||
"34.38.0.0/16",
|
||||
"34.76.0.0/14",
|
||||
"34.118.254.0/23",
|
||||
"34.140.0.0/16",
|
||||
|
@ -316,17 +286,9 @@
|
|||
"146.148.16.0/20",
|
||||
"146.148.112.0/20",
|
||||
"192.158.28.0/22",
|
||||
"34.32.0.0/17",
|
||||
"34.152.80.0/23",
|
||||
"34.177.36.0/23",
|
||||
"34.17.0.0/16",
|
||||
"34.157.124.0/23",
|
||||
"34.157.250.0/23",
|
||||
"34.39.0.0/17",
|
||||
"34.89.0.0/17",
|
||||
"34.105.128.0/17",
|
||||
"34.127.186.0/23",
|
||||
"34.128.52.0/22",
|
||||
"34.142.0.0/17",
|
||||
"34.147.128.0/17",
|
||||
"34.157.36.0/22",
|
||||
|
@ -345,9 +307,6 @@
|
|||
"35.242.20.0/22",
|
||||
"35.242.128.0/18",
|
||||
"35.246.0.0/17",
|
||||
"34.0.224.0/24",
|
||||
"34.0.226.0/24",
|
||||
"34.40.0.0/17",
|
||||
"34.89.128.0/17",
|
||||
"34.104.112.0/23",
|
||||
"34.107.0.0/17",
|
||||
|
@ -367,8 +326,6 @@
|
|||
"35.242.18.0/23",
|
||||
"35.242.192.0/18",
|
||||
"35.246.128.0/17",
|
||||
"34.32.128.0/17",
|
||||
"34.34.0.0/17",
|
||||
"34.90.0.0/15",
|
||||
"34.104.126.0/23",
|
||||
"34.124.62.0/23",
|
||||
|
@ -390,22 +347,14 @@
|
|||
"35.220.44.0/24",
|
||||
"35.235.216.0/21",
|
||||
"35.242.44.0/24",
|
||||
"34.0.160.0/19",
|
||||
"34.153.38.0/24",
|
||||
"34.153.230.0/24",
|
||||
"34.154.0.0/16",
|
||||
"34.157.8.0/23",
|
||||
"34.157.121.0/24",
|
||||
"34.157.136.0/23",
|
||||
"34.157.249.0/24",
|
||||
"35.219.224.0/19",
|
||||
"34.1.0.0/20",
|
||||
"34.155.0.0/16",
|
||||
"34.157.12.0/22",
|
||||
"34.157.140.0/22",
|
||||
"34.163.0.0/16",
|
||||
"34.36.0.0/16",
|
||||
"34.49.0.0/16",
|
||||
"34.95.64.0/18",
|
||||
"34.96.64.0/18",
|
||||
"34.98.64.0/18",
|
||||
|
@ -434,43 +383,20 @@
|
|||
"130.211.8.0/21",
|
||||
"130.211.16.0/20",
|
||||
"130.211.32.0/20",
|
||||
"34.1.32.0/20",
|
||||
"34.18.0.0/16",
|
||||
"34.157.126.0/23",
|
||||
"34.157.252.0/23",
|
||||
"34.1.48.0/20",
|
||||
"34.152.84.0/23",
|
||||
"34.166.0.0/16",
|
||||
"34.177.48.0/23",
|
||||
"34.0.64.0/19",
|
||||
"34.157.90.0/23",
|
||||
"34.157.216.0/23",
|
||||
"34.165.0.0/16",
|
||||
"34.19.128.0/17",
|
||||
"34.20.0.0/17",
|
||||
"34.47.0.0/18",
|
||||
"34.95.0.0/18",
|
||||
"34.104.76.0/22",
|
||||
"34.118.128.0/18",
|
||||
"34.124.12.0/22",
|
||||
"34.128.37.0/24",
|
||||
"34.128.42.0/23",
|
||||
"34.128.49.0/24",
|
||||
"34.128.58.0/23",
|
||||
"34.152.0.0/18",
|
||||
"35.203.0.0/17",
|
||||
"35.215.0.0/18",
|
||||
"35.220.43.0/24",
|
||||
"35.234.240.0/20",
|
||||
"35.242.43.0/24",
|
||||
"34.0.32.0/20",
|
||||
"34.104.114.0/23",
|
||||
"34.124.50.0/23",
|
||||
"34.124.112.0/20",
|
||||
"34.130.0.0/16",
|
||||
"34.152.69.0/24",
|
||||
"34.157.255.0/24",
|
||||
"34.39.128.0/17",
|
||||
"34.95.128.0/17",
|
||||
"34.104.80.0/21",
|
||||
"34.124.16.0/21",
|
||||
|
@ -483,11 +409,8 @@
|
|||
"35.235.0.0/20",
|
||||
"35.242.40.0/24",
|
||||
"35.247.192.0/18",
|
||||
"34.0.48.0/20",
|
||||
"34.104.50.0/23",
|
||||
"34.127.178.0/23",
|
||||
"34.153.33.0/24",
|
||||
"34.153.225.0/24",
|
||||
"34.176.0.0/16",
|
||||
"8.34.210.0/24",
|
||||
"8.34.212.0/22",
|
||||
|
@ -495,22 +418,13 @@
|
|||
"8.35.192.0/21",
|
||||
"23.236.48.0/20",
|
||||
"23.251.144.0/20",
|
||||
"34.0.225.0/24",
|
||||
"34.16.0.0/17",
|
||||
"34.27.0.0/16",
|
||||
"34.28.0.0/14",
|
||||
"34.33.0.0/16",
|
||||
"34.41.0.0/16",
|
||||
"34.42.0.0/16",
|
||||
"34.44.0.0/15",
|
||||
"34.46.0.0/16",
|
||||
"34.66.0.0/15",
|
||||
"34.68.0.0/14",
|
||||
"34.72.0.0/16",
|
||||
"34.118.200.0/21",
|
||||
"34.121.0.0/16",
|
||||
"34.122.0.0/15",
|
||||
"34.128.32.0/22",
|
||||
"34.132.0.0/14",
|
||||
"34.136.0.0/16",
|
||||
"34.157.84.0/23",
|
||||
|
@ -519,7 +433,6 @@
|
|||
"34.157.224.0/20",
|
||||
"34.170.0.0/15",
|
||||
"34.172.0.0/15",
|
||||
"34.177.52.0/22",
|
||||
"35.184.0.0/16",
|
||||
"35.188.0.0/17",
|
||||
"35.188.128.0/18",
|
||||
|
@ -565,7 +478,6 @@
|
|||
"199.192.115.0/24",
|
||||
"199.223.232.0/22",
|
||||
"199.223.236.0/24",
|
||||
"34.22.0.0/19",
|
||||
"35.186.0.0/17",
|
||||
"35.186.128.0/20",
|
||||
"35.206.32.0/19",
|
||||
|
@ -574,17 +486,12 @@
|
|||
"107.167.160.0/20",
|
||||
"108.59.88.0/21",
|
||||
"173.255.120.0/21",
|
||||
"34.23.0.0/16",
|
||||
"34.24.0.0/15",
|
||||
"34.26.0.0/16",
|
||||
"34.73.0.0/16",
|
||||
"34.74.0.0/15",
|
||||
"34.98.128.0/21",
|
||||
"34.118.250.0/23",
|
||||
"34.138.0.0/15",
|
||||
"34.148.0.0/16",
|
||||
"34.152.72.0/21",
|
||||
"34.177.40.0/21",
|
||||
"35.185.0.0/17",
|
||||
"35.190.128.0/18",
|
||||
"35.196.0.0/16",
|
||||
|
@ -607,8 +514,6 @@
|
|||
"104.196.128.0/18",
|
||||
"104.196.192.0/19",
|
||||
"162.216.148.0/22",
|
||||
"34.21.0.0/17",
|
||||
"34.48.0.0/16",
|
||||
"34.85.128.0/17",
|
||||
"34.86.0.0/16",
|
||||
"34.104.60.0/23",
|
||||
|
@ -635,7 +540,6 @@
|
|||
"35.242.60.0/22",
|
||||
"35.243.40.0/21",
|
||||
"35.245.0.0/16",
|
||||
"34.1.16.0/20",
|
||||
"34.157.32.0/22",
|
||||
"34.157.160.0/22",
|
||||
"34.162.0.0/16",
|
||||
|
@ -643,11 +547,9 @@
|
|||
"34.127.184.0/23",
|
||||
"34.161.0.0/16",
|
||||
"35.206.10.0/23",
|
||||
"34.0.128.0/19",
|
||||
"34.157.46.0/23",
|
||||
"34.157.174.0/23",
|
||||
"34.174.0.0/16",
|
||||
"34.19.0.0/17",
|
||||
"34.82.0.0/15",
|
||||
"34.105.0.0/17",
|
||||
"34.118.192.0/21",
|
||||
|
@ -673,7 +575,6 @@
|
|||
"104.198.0.0/20",
|
||||
"104.198.96.0/20",
|
||||
"104.199.112.0/20",
|
||||
"34.20.128.0/17",
|
||||
"34.94.0.0/16",
|
||||
"34.102.0.0/17",
|
||||
"34.104.64.0/21",
|
||||
|
@ -686,23 +587,17 @@
|
|||
"35.236.0.0/17",
|
||||
"35.242.47.0/24",
|
||||
"35.243.0.0/21",
|
||||
"34.22.32.0/19",
|
||||
"34.104.52.0/24",
|
||||
"34.106.0.0/16",
|
||||
"34.127.180.0/24",
|
||||
"35.217.64.0/18",
|
||||
"35.220.31.0/24",
|
||||
"35.242.31.0/24",
|
||||
"34.16.128.0/17",
|
||||
"34.104.72.0/22",
|
||||
"34.118.240.0/22",
|
||||
"34.124.8.0/22",
|
||||
"34.125.0.0/16",
|
||||
"35.219.128.0/18",
|
||||
"34.37.0.0/16",
|
||||
"34.128.46.0/23",
|
||||
"34.128.62.0/23",
|
||||
"2600:1900:8000::/44",
|
||||
"2600:1900:4030::/44",
|
||||
"2600:1900:41a0::/44",
|
||||
"2600:1900:4050::/44",
|
||||
|
@ -718,8 +613,6 @@
|
|||
"2600:1900:4150::/44",
|
||||
"2600:1901:8100::/44",
|
||||
"2600:1900:4010::/44",
|
||||
"2600:1901:81f0::/44",
|
||||
"2600:1901:81b0::/44",
|
||||
"2600:1900:40c0::/44",
|
||||
"2600:1900:40d0::/44",
|
||||
"2600:1900:4060::/44",
|
||||
|
@ -727,9 +620,10 @@
|
|||
"2600:1901:8110::/44",
|
||||
"2600:1901:8120::/44",
|
||||
"2600:1901::/48",
|
||||
"2600:1901:81c0::/44",
|
||||
"2600:1900:5400::/44",
|
||||
"2600:1901:8160::/44",
|
||||
"2600:1901:1:1000::/52",
|
||||
"2600:1901:1:2000::/51",
|
||||
"2600:1901:1:4000::/50",
|
||||
"2600:1901:1:8000::/49",
|
||||
"2600:1900:40e0::/44",
|
||||
"2600:1900:41e0::/44",
|
||||
"2600:1900:40f0::/44",
|
||||
|
@ -744,8 +638,7 @@
|
|||
"2600:1900:4040::/44",
|
||||
"2600:1900:4120::/44",
|
||||
"2600:1900:4170::/44",
|
||||
"2600:1900:4180::/44",
|
||||
"2600:1900:4280::/44"
|
||||
"2600:1900:4180::/44"
|
||||
]
|
||||
|
||||
[facebook]
|
||||
|
|
Loading…
Reference in New Issue