- 
                Notifications
    
You must be signed in to change notification settings  - Fork 185
 
Open
Description
Outbound DNS is blocked in my environment. I can make the following changes locally, but a), I'm wondering what the original design objective was and b) how to make this change so that I'm not having to merge my local version with the latest git version every time I update.
misp-warninglists/tools/generator.py
Line 180 in e868e50
| resolver.nameservers = ["193.17.47.1", "185.43.135.1"] # CZ.NIC nameservers | 
def create_resolver() -> dns.resolver.Resolver:
    resolver = dns.resolver.Resolver() #(configure=False)
    resolver.timeout = 30
    resolver.lifetime = 30
    resolver.cache = dns.resolver.LRUCache()
    # resolver.nameservers = ["193.17.47.1", "185.43.135.1"]  # CZ.NIC nameservers
    return resolver