Virus Total Public API v.20 PHP Wrapper

Virus Total Public API v2.0 PHP Wrapper


Project maintained by jayzeng Hosted on GitHub Pages — Theme by mattgraham

Virus Total Public API v2.0 PHP Wrapper

Total Downloads Latest Stable Version Latest Unstable Version Build Status

Project website: (http://jayzeng.github.io/virustotal_apiwrapper/)

This is a PHP SDK to interact with Virus Total Public API v2.0, please see https://www.virustotal.com/en/documentation/public-api for details

Usage:

Include the following in your composer.json:

{
  "require": {
    "jayzeng/virustotalapi": "dev-master"
  }
}

Quick start:

<?php
require_once 'Vendors/autoload.php';

$apiKey = 'your_api_key';

$file = new VirusTotal\File($apiKey);
$resp = $file->scan('foo.txt');

var_dump($resp);
?>

Sample output

[jayzeng] ~/Projects/virustotal_apiwrapper/Example] (master)>  php file.php |more
array(8) {
  ["scan_id"]=>
  string(75) "1afc739de16163a80380326ce05e1e69edfc99b7a931329ab127b5099377f076-1370244536"
  ["sha1"]=>
  string(40) "da9ed61e1bfa981c545acad4136e8a05f0602e45"
  ["resource"]=>
  string(64) "1afc739de16163a80380326ce05e1e69edfc99b7a931329ab127b5099377f076"
  ["response_code"]=>
  int(1)
  ["sha256"]=>
  string(64) "1afc739de16163a80380326ce05e1e69edfc99b7a931329ab127b5099377f076"
  ["permalink"]=>
  string(117) "https://www.virustotal.com/file/1afc739de16163a80380326ce05e1e69edfc99b7a931329ab127b5099377f076/analysis/1370244536/"
  ["md5"]=>
  string(32) "b2f301b40a5fb752b19ae0e5c7f679b4"
  ["verbose_msg"]=>
  string(64) "Scan request successfully queued, come back later for the report"
}

Example:

Still feeling confusing? See Examples/ (https://github.com/jayzeng/virustotal_apiwrapper/tree/master/Examples)

I also hack up a demo application, source code is available at https://github.com/jayzeng/virustotal_demoapp

How to run tests?

phpunit --configuration Tests/Conf/phpunit.xml Tests

Or

Vendors/bin/phpunit --configuration Tests/Conf/phpunit.xml Tests

Issues & Development

How to release new version?

make release RELEASE_VERSION="0.1" RELEASE_MESSAGE="v0.1 is released"

How to contribute?

Awesome! Please follow these steps:

Author:

Jay Zeng, e-mail: jayzeng@jay-zeng.com