Things like version numbers (ie: 5.24.12.1335) are extracted as IP. Suggestion, use an alternative way to validate them: ``` python import socket def valid_ip(address): try: socket.inet_aton(address) return True except: return False ```
Things like version numbers (ie: 5.24.12.1335) are extracted as IP.
Suggestion, use an alternative way to validate them: