Skip to contents

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

Usage

rescan_ip(ip = NULL, ...)

Arguments

ip

IP address to rescan (IPv4 or IPv6). String. Required.

...

Additional arguments passed to virustotal_POST.

Value

list containing analysis details and ID

See also

set_key for setting the API key, ip_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 an IPv4 address
rescan_ip("8.8.8.8")

# Request rescan of an IPv6 address
rescan_ip("2001:4860:4860::8888")
} # }