virustotal-api

1.1.7 • Public • Published

virustotal-api

https://nodei.co/npm/virustotal-api.png?downloads=true&downloadRank=true&stars=true

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.

Dependents (0)

Package Sidebar

Install

npm i virustotal-api

Weekly Downloads

146

Version

1.1.7

License

MIT

Unpacked Size

21.7 kB

Total Files

5

Last publish

Collaborators

  • remisa