diff --git a/.github/workflows/StevenBlack.yml b/.github/workflows/StevenBlack.yml index 3b2ffcb..b93e601 100644 --- a/.github/workflows/StevenBlack.yml +++ b/.github/workflows/StevenBlack.yml @@ -60,7 +60,7 @@ jobs: match = re.match(r'^(\d{1,3}(?:\.\d{1,3}){3}|[a-fA-F0-9:]+)\s+(.+)$', line) if match: ip, domain = match.groups() - if ip not in filter_ips: + if ip not in filter_ips and not (ip == '0.0.0.0' and domain == '0.0.0.0'): rules.append(f" - DOMAIN,{domain}") with open(output_file, 'w') as f: