Retrieves comprehensive analysis report for a given domain, including WHOIS information, DNS resolutions, detected URLs, and threat intelligence data.

domain_report(domain = NULL, ...)

Arguments

domain

domain name. String. Required.

...

Additional arguments passed to virustotal_GET.

Value

list containing domain analysis results including WHOIS data, DNS resolutions, detected URLs, categories, and threat intelligence

See also

set_key for setting the API key

Examples

if (FALSE) { # \dontrun{

# Before calling the function, set the API key using set_key('api_key_here')
   
domain_report("google.com")
domain_report("example.com")
} # }