SuspiciousDomainFindingDetail
import type { SuspiciousDomainFindingDetail } from "https://googleapis.deno.dev/v1/threatintelligence:v1beta.ts";A detailed object for a suspicious Domain finding.
interface SuspiciousDomainFindingDetail {
dns?: SuspiciousDomainDnsDetails;
domain?: string;
gtiDetails?: SuspiciousDomainGtiDetails;
matchScore?: number;
severity?:
| "SEVERITY_UNSPECIFIED"
| "LOW"
| "MEDIUM"
| "HIGH"
| "CRITICAL";
whois?: SuspiciousDomainWhoIsDetails;
}§Properties
§
The DNS details of the suspicious domain.
§
gtiDetails?: SuspiciousDomainGtiDetails
[src]The GTI details of the suspicious domain.
§
matchScore?: number
[src]Required. Reference to the match score of the finding. This is a float value between 0 and 1 calculated by the matching engine.
§
severity?: "SEVERITY_UNSPECIFIED" | "LOW" | "MEDIUM" | "HIGH" | "CRITICAL"
[src]Required. The severity of the finding. This indicates the potential impact of the threat.
§
The whois details of the suspicious domain.