package cybersecurity // IPAddress represents an IP address of interest in an OSINT investigation. type IPAddress struct { IP string `json:"ip"` ASN string `json:"asn"` Country string `json:"country"` ISP string `json:"isp"` Geolocation string `json:"geolocation"` LastSeen string `json:"last_seen"` }