Skip to content

Commit

Permalink
Update regex.py
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius authored Apr 23, 2024
1 parent eca5c55 commit 7bb3f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sectools/data/regex.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
regex_email = r'''(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9]))\.){3}(?:(2(5[0-5]|[0-4][0-9])|1[0-9][0-9]|[1-9]?[0-9])|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])'''
regex_email_b = bytes(regex_email, "UTF-8")

regex_domain = r'(([a-zA-Z0-9\-]+\.)+([a-zA-Z0-9\-]+\.[a-zA-Z0-9\-]+))'
regex_domain = r'(([a-zA-Z0-9\-_]+\.)+([a-zA-Z0-9\-_]+\.[a-zA-Z0-9\-_]+))'
regex_domain_b = bytes(regex_domain, "UTF-8")

regex_url = r'((http|https|ftp)://[a-zA-Z0-9\-]+\.[a-zA-Z0-9\-]+([:][0-9]+)?(/[a-zA-Z0-9_\-\.]+)+([/])?)'
Expand Down

0 comments on commit 7bb3f5c

Please sign in to comment.