Merge pull request #110 from DrRamm/google_meet_list

Feat: Добавлен список Google Meet
This commit is contained in:
Kirill Sobakin
2026-03-16 18:03:29 +03:00
committed by GitHub
5 changed files with 26 additions and 2 deletions

View File

@@ -34,6 +34,7 @@
- Tik-Tok
- Twitter
- YouTube
- Google Meet
## Страны
### Россия
@@ -232,6 +233,16 @@
</details>
<details>
<summary>Google Meet</summary>
- [Subnets](https://raw.githubusercontent.com/itdoginfo/allow-domains/refs/heads/main/Subnets/IPv4/google_meet.lst)
- [SRS](https://github.com/itdoginfo/allow-domains/releases/latest/download/google_meet.srs)
</details>
# Как найти все-все домены ресурса?
https://itdog.info/analiziruem-trafik-i-opredelyaem-domeny-kotorye-ispolzuyut-sajty-i-prilozheniya/

5
Services/google_meet.lst Normal file
View File

@@ -0,0 +1,5 @@
meetings.clients6.google.com
meetings.googleapis.com
hangouts.googleapis.com
meet.google.com
stream.meet.google.com

View File

@@ -0,0 +1,3 @@
74.125.250.0/24
74.125.247.128/32
142.250.82.0/24

View File

@@ -0,0 +1,3 @@
2001:4860:4864:5::0/64
2001:4860:4864:4:8000::/128
2001:4860:4864:6::/64

View File

@@ -26,7 +26,8 @@ OVHSubnets = 'Subnets/IPv4/ovh.lst'
DigitalOceanSubnets = 'Subnets/IPv4/digitalocean.lst'
CloudfrontSubnets = 'Subnets/IPv4/cloudfront.lst'
RobloxSubnets = 'Subnets/IPv4/roblox.lst'
ExcludeServices = {"telegram.lst", "cloudflare.lst", "google_ai.lst", "google_play.lst", 'hetzner.lst', 'ovh.lst', 'digitalocean.lst', 'cloudfront.lst', 'hodca.lst', 'roblox.lst'}
GoogleMeetSubnets = 'Subnets/IPv4/google_meet.lst'
ExcludeServices = {"telegram.lst", "cloudflare.lst", "google_ai.lst", "google_play.lst", 'hetzner.lst', 'ovh.lst', 'digitalocean.lst', 'cloudfront.lst', 'hodca.lst', 'roblox.lst', 'google_meet.lst'}
def raw(src, out):
domains = set()
@@ -223,7 +224,7 @@ def generate_srs_for_categories(directories, output_json_directory='JSON', compi
os.makedirs(output_json_directory, exist_ok=True)
os.makedirs(compiled_output_directory, exist_ok=True)
exclude = {"meta", "twitter", "discord", "telegram", "hetzner", "ovh", "digitalocean", "cloudfront", "roblox"}
exclude = {"meta", "twitter", "discord", "telegram", "hetzner", "ovh", "digitalocean", "cloudfront", "roblox", "google_meet"}
for directory in directories:
for filename in os.listdir(directory):
@@ -504,6 +505,7 @@ if __name__ == '__main__':
generate_srs_combined(DigitalOceanSubnets, "Services/digitalocean.lst")
generate_srs_combined(CloudfrontSubnets, "Services/cloudfront.lst")
generate_srs_combined(RobloxSubnets, "Services/roblox.lst")
generate_srs_combined(GoogleMeetSubnets, "Services/google_meet.lst")
# Sing-box voice for messengers
generate_srs_combined(TelegramSubnets, "voice_messengers")