virustotal_cat {rdomains} | R Documentation |
Get Category from Virustotal
Description
Returns category of content from 6 major services including: BitDefender, Dr. Web, Alexa (DMOZ), Google, Websense, and Trendmicro. Not all services will have categories for all the domains. When the categories are not returned for a particular domain, we return a NA.
Usage
virustotal_cat(domain = NULL, apikey = NULL)
Arguments
domain |
domain name |
apikey |
virustotal API key |
Details
Get the API Access Key from http://www.virustotal.com/. Either pass the API Key to the function
or set the environmental variable: VirustotalToken
. Environment variables persist within
a R session.
Value
data.frame with 7 columns: domain, bitdefender, dr_web, alexa, google, websense, trendmicro
References
https://developers.virustotal.com/v2.0/reference
Examples
## Not run:
virustotal_cat("http://www.google.com")
## End(Not run)
[Package rdomains version 0.2.1 Index]