21 lines
1.1 KiB
Python
21 lines
1.1 KiB
Python
import re
|
|
import ipaddress
|
|
|
|
def is_valid_ipv6_address(ip_addr):
|
|
try:
|
|
return isinstance(ipaddress.ip_address(ip_addr), ipaddress.IPv6Address)
|
|
except ValueError:
|
|
return False
|
|
|
|
def parse(text):
|
|
ipv6_regex = r'(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))'
|
|
matches = []
|
|
|
|
for match in re.finditer(ipv6_regex, text, re.IGNORECASE):
|
|
ip_addr = match.group()
|
|
if is_valid_ipv6_address(ip_addr):
|
|
start_pos, end_pos = match.span()
|
|
matches.append((ip_addr, start_pos, end_pos))
|
|
|
|
return matches
|