Threat

export interface IThreatData {
  ip: string;
  confidence: number;
  asn: string;
  isp: string;
  country: string;
  threat: number;
  reputation: E_REPUTATION;
}
enum E_REPUTATION {
  EXCELLENT = "excellent",
  GOOD = "good", 
  POOR = "poor", 
  BAD = "bad", 
}

Last updated