diff options
Diffstat (limited to 'domain')
-rwxr-xr-x | domain | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -38,7 +38,7 @@ for tld in args.tlds: res = subprocess.run(["whois", domain], stdout=subprocess.PIPE).stdout.decode( "utf-8" ) - if re.search(regex, res): + if re.search(regex, res, re.IGNORECASE): print("ok:", domain) else: print("no:", domain) |