Skip to content

Commit

Permalink
Update StevenBlack.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ckrvxr authored Jan 8, 2025
1 parent fc77237 commit cffa950
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/StevenBlack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cffa950

Please sign in to comment.