From 0a269a90325b9e96d6461a2e5f3fbaa2b85b2cc0 Mon Sep 17 00:00:00 2001 From: marco370 <48531002-marco370@users.noreply.replit.com> Date: Fri, 2 Jan 2026 16:16:15 +0000 Subject: [PATCH] Update list fetching to correctly parse Google IP ranges Add 'google' as an alias for GCPParser in `python_ml/list_fetcher/parsers.py` to resolve issues with parsing Google Cloud and Google global IP lists. Replit-Commit-Author: Agent Replit-Commit-Session-Id: 7a657272-55ba-4a79-9a2e-f1ed9bc7a528 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Event-Id: 771e5bf9-f7cd-42b4-9abb-d79a800368ae Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/449cf7c4-c97a-45ae-8234-e5c5b8d6a84f/7a657272-55ba-4a79-9a2e-f1ed9bc7a528/C6BdLIt --- python_ml/list_fetcher/parsers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python_ml/list_fetcher/parsers.py b/python_ml/list_fetcher/parsers.py index 714c8fb..66a03c3 100644 --- a/python_ml/list_fetcher/parsers.py +++ b/python_ml/list_fetcher/parsers.py @@ -263,6 +263,7 @@ PARSERS: Dict[str, type[ListParser]] = { 'talos': TalosParser, 'aws': AWSParser, 'gcp': GCPParser, + 'google': GCPParser, 'cloudflare': CloudflareParser, 'iana': IANAParser, 'ntp': NTPPoolParser,