Files
gists/domgrep.py
2021-06-17 13:38:00 +02:00

18 lines
398 B
Python
Executable File

#!/usr/bin/env python3
import re
import sys
from urllib.parse import urlparse
pattern=re.compile(r'\d+\.\d+\.\d+\.\d+')
for line in sys.stdin:
line=line.strip()
if not line.lower().startswith('http'):
line="http://"+line
try:
p=urlparse(line)
if not pattern.search(p.netloc):
print(p.netloc)
except Exception as e:
print(e)
pass