diff --git a/HTTPy.py b/HTTPy.py index 87fabc9..f8f3f40 100755 --- a/HTTPy.py +++ b/HTTPy.py @@ -107,10 +107,11 @@ def parseWhois(whioisInfo): R = re.compile("^[Rr]") U = re.compile("^[Uu]") S = re.compile("Status") + L = re.compile("^[Ll]") for str in whioisInfo: str = str.strip() - if NS.match(str) or D.match(str) or R.match(str) or U.match(str) or S.match(str): + if NS.match(str) or D.match(str) or R.match(str) or U.match(str) or S.match(str) or L.match(str): if "domain" in str or "Domain" in str and "Name" not in str: if "name" not in str and "ID" not in str: if "ok" in str or "OK" in str: