HORKimhab
Results
2
issues of
HORKimhab
I would like to need more feature mac address. Could anyone please guide me how to customize it? Thank you for your repository.
To refactor `3.217.79.163/32` to `3.217.*` Python code: import requests import ipaddress """ Convert ip "3.217.79.163/32", "3.217.93.44/32", -> "3.127.*" """ url = "https://raw.githubusercontent.com/lord-alfred/ipranges/main/github/ipv4.txt" response = requests.get(url) ip_ranges = response.text.strip().split("\n") def convert_to_wildcard(ip_ranges):...