virustotal-api
v1.1.7
Published
virustotal api wrapper
Downloads
388
Readme
virustotal-api
Virustotal API v2.0 wrapper class
Install
npm i virustotal-api
Example
const fs = require("fs");
const VirusTotalApi = require("virustotal-api");
const virusTotal = new VirusTotalApi("<YOUR API KEY>");
fs.readFile(__filename, (err, data) => {
if (err) {
console.log(`Cannot read file. ${err}`);
} else {
virusTotal
.fileScan(data, "file.js")
.then(response => {
let resource = response.resource;
// sometimes later try:
virusTotal.fileReport(resource).then(result => {
console.log(result);
});
})
.catch(err => console.log(`Scan failed. ${err}`));
}
});
For more info please refer to documentation
See full change log here.
Version 1.1.7
- Dependency update to fix security vulnerabilities.