makeseeds: update user agent regex

This commit is contained in:
Jon Atack 2025-02-27 09:10:26 -05:00
parent 9b0d2e5094
commit 6ae7a3bc4e

View file

@ -43,12 +43,12 @@ PATTERN_AGENT = re.compile(
r"|0.20.(0|1|2|99)"
r"|0.21.(0|1|2|99)"
r"|22.(0|1|99).0"
r"|23.(0|1|99).0"
r"|23.(0|1|2|99).0"
r"|24.(0|1|2|99).(0|1)"
r"|25.(0|1|2|99).0"
r"|26.(0|1|99).0"
r"|27.(0|1|99).0"
r"|28.(0|99).0"
r"|26.(0|1|2|99).0"
r"|27.(0|1|2|99).0"
r"|28.(0|1|99).0"
r")")
def parseline(line: str) -> Union[dict, None]: