url_report {virustotal} | R Documentation |
Get URL Report
Description
Retrieve a scan report for a given URL. If no scan report is available, set scan
to 1
to get a new report.
Usage
url_report(url = NULL, scan_id = NULL, scan = 1, ...)
Arguments
url |
URL. String. |
scan_id |
scan id for a particular url scan. String. |
scan |
String. Optional. Can be 0 or 1. Default is |
... |
Additional arguments passed to |
Value
data.frame with 13 columns:
scan_id, resource, url, response_code, scan_date, permalink, verbose_msg, positives, total, .id, detected, result, detail
References
https://developers.virustotal.com/v2.0/reference
See Also
set_key
for setting the API key
Examples
## Not run:
# Before calling the function, set the API key using set_key('api_key_here')
url_report("http://www.google.com")
url_report(scan_id = "ebdd15c397d2b0c6f50c3f2df531357d1201ff5976802316405e60880d6bf5ec-1478786749")
## End(Not run)
[Package virustotal version 0.2.2 Index]