Added community_ips.lst file #107

Added community_ips.lst file for CIDRs added by community
This commit is contained in:
Andrevich 2024-12-08 21:34:04 +02:00 committed by GitHub
commit 95d0576ffb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

1
community_ips.lst Normal file
View File

@ -0,0 +1 @@
23.207.103.177/32

View File

@ -14,9 +14,10 @@ def main():
ips2 = read_ips_from_file("sum/input/ooni_ips.lst")
ips3 = read_ips_from_file("sum/input/ip_community.lst")
ips4 = read_ips_from_file("discord_ips.lst")
ips5 = read_ips_from_file("community_ips.lst")
# Combine all IPs and remove duplicates
unique_ips = set(ips1 + ips2 + ips3 + ips4)
unique_ips = set(ips1 + ips2 + ips3 + ips4 + ips5)
# Write the unique IPs to the output file
output_file = "sum/input/ips_all.lst"