https://github.com/themains/virustotal
R client for the Virustotal Public API. Virustotal is a Google service that analyzes files and URLs for viruses etc.
https://github.com/themains/virustotal
cran cybersecurity r scan-files trojans virustotal
Last synced: 4 months ago
JSON representation
R client for the Virustotal Public API. Virustotal is a Google service that analyzes files and URLs for viruses etc.
- Host: GitHub
- URL: https://github.com/themains/virustotal
- Owner: themains
- License: other
- Created: 2016-05-11T23:04:48.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-12-15T22:13:51.000Z (6 months ago)
- Last Synced: 2025-12-17T17:27:39.860Z (6 months ago)
- Topics: cran, cybersecurity, r, scan-files, trojans, virustotal
- Language: R
- Homepage: http://themains.github.io/virustotal/
- Size: 611 KB
- Stars: 12
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
- Citation: Citation.cff
Awesome Lists containing this project
README
## virustotal: R Client for the VirusTotal Public API v3.0
[](https://github.com/themains/virustotal/actions/workflows/R-CMD-check.yml)
[](https://github.com/themains/virustotal/actions/workflows/pkgdown.yml)
[](https://cran.r-project.org/package=virustotal)

Use [VirusTotal](https://www.virustotal.com), a Google service that analyzes files and URLs for viruses, worms, trojans etc., provides category of the content hosted by a domain from a variety of prominent services, provides passive DNS information, among other things.
This package provides comprehensive support for the VirusTotal API v3.0, which offers richer data including IoC relationships, sandbox dynamic analysis, static file information, YARA rules, and comprehensive threat intelligence.
**API Rate Limits:**
- **Public API**: 500 requests/day, 4 requests/minute
- **Premium API**: No daily or rate limitations
**Supported Operations:**
- **Files**: Upload, scan, get reports, download, comments, votes, relationships
- **URLs**: Submit for analysis, get reports, comments, votes, relationships
- **Domains**: Get reports, comments, votes, relationships, WHOIS data
- **IP Addresses**: Get reports, comments, votes, relationships, passive DNS
See [https://www.virustotal.com](https://www.virustotal.com) for more information.
### Installation
To get the current released version from CRAN:
```r
install.packages("virustotal")
```
To get the current development version from GitHub:
```r
install.packages("devtools")
devtools::install_github("themains/virustotal", build_vignettes = TRUE)
```
### Usage
To learn about how to use the package, read the [vignette](vignettes/using_virustotal.Rmd). Or launch the vignette within R:
```r
# Using virustotal
vignette("using_virustotal", package = "virustotal")
```
### License
Scripts are released under the [MIT License](https://opensource.org/licenses/MIT).