Skip to contents

Request a new analysis of a domain already present in VirusTotal's database. Returns an analysis ID that can be used to retrieve the report using domain_report.

Usage

rescan_domain(domain = NULL, ...)

Arguments

domain

Domain name to rescan. String. Required.

...

Additional arguments passed to virustotal_POST.

Value

list containing analysis details and ID

See also

set_key for setting the API key, domain_report for getting reports

Examples

if (FALSE) { # \dontrun{

# Before calling the function, set the API key using set_key('api_key_here')

# Request rescan of a domain
rescan_domain("google.com")
} # }