respodns/respodns/ips.py

106 lines
2.1 KiB
Python
Raw Normal View History

2020-08-29 01:16:06 -07:00
# known IPs of any DNS located in China:
china = {
"1.1.8.8",
"1.1.8.9",
"1.2.4.8",
"1.8.1.8",
"1.8.8.8",
"114.254.201.131",
"218.107.55.108",
"222.216.2.236",
}
# known IPs (not servers) that are used to deny access to websites:
blocks = {
"1.2.3.4", # timeout
2020-08-31 06:06:41 -07:00
"5.129.186.222",
"31.204.161.41",
"34.218.72.125",
"36.86.63.185",
"49.128.177.13",
"52.15.96.207",
"54.242.237.204",
2020-08-31 06:06:41 -07:00
"62.77.154.37",
"62.85.160.222",
"62.113.48.25",
"85.214.151.164",
"91.195.127.75",
"93.158.134.250",
2020-08-31 06:06:41 -07:00
"95.77.94.80",
"114.6.128.8",
"118.97.116.27",
"119.235.29.59",
"124.40.255.99",
2020-08-31 06:06:41 -07:00
"146.112.61.104",
"146.112.61.105",
"146.112.61.106",
2020-08-31 06:06:41 -07:00
"146.112.61.107",
"146.112.61.108",
"146.112.61.109",
"146.112.61.110",
"146.112.61.111",
"146.112.61.112",
"146.112.61.113",
"163.28.10.160",
2020-08-31 06:06:41 -07:00
"165.21.74.4",
"175.139.142.25",
2020-08-31 06:06:41 -07:00
"176.103.130.130",
"176.103.130.131",
"176.103.130.132",
"176.103.130.133",
"176.103.130.134",
"176.103.130.135",
"182.93.64.126",
2020-08-31 06:06:41 -07:00
"188.186.157.49",
"192.99.140.48",
2020-08-31 06:06:41 -07:00
"193.58.251.1",
"195.46.39.1",
"195.175.254.2",
2020-08-31 06:06:41 -07:00
"195.186.208.169",
"195.208.152.206",
"195.234.22.137",
"202.40.187.91",
"202.162.209.133",
"202.165.36.253",
2020-08-31 06:06:41 -07:00
"202.169.44.80",
"203.119.13.75",
"203.119.13.76",
2020-08-31 06:06:41 -07:00
"203.119.13.77",
"203.119.13.78",
"203.190.55.217",
2020-08-31 06:06:41 -07:00
"203.195.99.1",
"213.177.28.90",
"213.224.83.39",
"217.175.53.72",
2020-08-29 01:16:06 -07:00
}
2020-08-31 06:06:41 -07:00
for i in range(1, 255):
blocks.add(f"156.154.112.{i}")
blocks.add(f"156.154.113.{i}")
blocks.add(f"156.154.175.{i}")
blocks.add(f"156.154.176.{i}")
2020-08-29 01:16:06 -07:00
bogon_checks = [
"0.",
"10.",
"127.",
"169.254.",
"192.0.0.",
"192.0.2.",
"192.168.",
"198.18.",
"198.19.",
"198.51.100.",
"203.0.113.",
] + [
"100.{}.".format(i) for i in range(64, 128)
] + [
"172.{}.".format(i) for i in range(16, 32)
] + [
"{}.".format(i) for i in range(224, 256)
]
2020-08-29 06:34:46 -07:00
2020-08-29 01:16:06 -07:00
def is_bogon(ip):
return any(ip.startswith(check) for check in bogon_checks)