add a ton more known blocking IPs
This commit is contained in:
parent
8dd0dbd382
commit
f3255fb1ba
1 changed files with 46 additions and 5 deletions
|
@ -13,32 +13,73 @@ china = {
|
|||
# known IPs (not servers) that are used to deny access to websites:
|
||||
blocks = {
|
||||
"1.2.3.4", # timeout
|
||||
"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",
|
||||
"62.77.154.37",
|
||||
"62.85.160.222",
|
||||
"62.113.48.25",
|
||||
"85.214.151.164",
|
||||
"91.195.127.75",
|
||||
"93.158.134.250",
|
||||
"95.77.94.80",
|
||||
"114.6.128.8",
|
||||
"118.97.116.27",
|
||||
"119.235.29.59",
|
||||
"124.40.255.99",
|
||||
"146.112.61.104",
|
||||
"146.112.61.105",
|
||||
"146.112.61.106",
|
||||
"156.154.113.17",
|
||||
"156.154.175.30",
|
||||
"156.154.175.215",
|
||||
"156.154.175.216",
|
||||
"156.154.175.221",
|
||||
"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",
|
||||
"165.21.74.4",
|
||||
"175.139.142.25",
|
||||
"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",
|
||||
"188.186.157.49",
|
||||
"192.99.140.48",
|
||||
"193.58.251.1",
|
||||
"195.46.39.1",
|
||||
"195.175.254.2",
|
||||
"195.186.208.169",
|
||||
"195.208.152.206",
|
||||
"195.234.22.137",
|
||||
"202.40.187.91",
|
||||
"202.162.209.133",
|
||||
"202.165.36.253",
|
||||
"202.169.44.80",
|
||||
"203.119.13.75",
|
||||
"203.119.13.76",
|
||||
"203.119.13.77",
|
||||
"203.119.13.78",
|
||||
"203.190.55.217",
|
||||
"203.195.99.1",
|
||||
"213.177.28.90",
|
||||
"213.224.83.39",
|
||||
"217.175.53.72",
|
||||
}
|
||||
|
||||
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}")
|
||||
|
||||
bogon_checks = [
|
||||
"0.",
|
||||
"10.",
|
||||
|
|
Loading…
Reference in a new issue