All Projects → Genbox → Virustotalnet

Genbox / Virustotalnet

Licence: mit
A full implementation of the VirusTotal 2.0 API

Projects that are alternatives of or similar to Virustotalnet

Malsub
A Python RESTful API framework for online malware analysis and threat intelligence services.
Stars: ✭ 308 (+116.9%)
Mutual labels:  api-client, virustotal
Virustotal Api
Virus Total Public/Private/Intel API
Stars: ✭ 189 (+33.1%)
Mutual labels:  api-client, virustotal
Sdk Js
Directus JS SDK — JavaScript Software Development Kit for Node and Browser
Stars: ✭ 117 (-17.61%)
Mutual labels:  api-client
Laravel Api Explorer
API explorer for laravel applications
Stars: ✭ 138 (-2.82%)
Mutual labels:  api-client
Bigcommerce Api Php
Connect PHP applications with the Bigcommerce Platform
Stars: ✭ 128 (-9.86%)
Mutual labels:  api-client
Tik4net
Manage mikrotik routers with .NET C# code via ADO.NET like API or enjoy O/R mapper like highlevel api.
Stars: ✭ 118 (-16.9%)
Mutual labels:  api-client
Vsphere Automation Sdk Java
Java samples, language bindings, and API reference documentation for vSphere, VMC, and NSX-T using the VMware REST API
Stars: ✭ 132 (-7.04%)
Mutual labels:  api-client
Pixiv Api Client
Promise based Pixiv API client for node.js and react native
Stars: ✭ 114 (-19.72%)
Mutual labels:  api-client
Virustotal
💊 VirusTotal Public API 2.0 client for Python 2.x
Stars: ✭ 141 (-0.7%)
Mutual labels:  virustotal
Cloudflare Rs
Rust library for the Cloudflare v4 API
Stars: ✭ 126 (-11.27%)
Mutual labels:  api-client
Netsuite Php
NetSuite PHP API Client with namespaces and autoloading
Stars: ✭ 136 (-4.23%)
Mutual labels:  api-client
Anyapi
AnyAPI is a library that helps you to write any API wrappers with ease and in pythonic way.
Stars: ✭ 126 (-11.27%)
Mutual labels:  api-client
Pyetrade
Python E-Trade API Wrapper
Stars: ✭ 120 (-15.49%)
Mutual labels:  api-client
Messaging Apis
Messaging APIs for multi-platform
Stars: ✭ 1,754 (+1135.21%)
Mutual labels:  api-client
Trakt.py
Python interface for the Trakt.tv API
Stars: ✭ 117 (-17.61%)
Mutual labels:  api-client
Mockbin
Mock, Test & Track HTTP Requests and Response for Microservices
Stars: ✭ 1,782 (+1154.93%)
Mutual labels:  api-client
Coinbase Pro Node
Coinbase Pro API written in TypeScript and covered by tests.
Stars: ✭ 116 (-18.31%)
Mutual labels:  api-client
Pykrakenapi
A python implementation of the Kraken API.
Stars: ✭ 124 (-12.68%)
Mutual labels:  api-client
Redmine Net Api
.Net API for Redmine bug/task management systems.
Stars: ✭ 131 (-7.75%)
Mutual labels:  api-client
Dropbox api
Ruby client library for Dropbox API v2
Stars: ✭ 142 (+0%)
Mutual labels:  api-client

VirusTotal.NET - A full implementation of the VirusTotal 2.0 API

NuGet

Features

  • Fully asynchronous API
  • Scan, rescan and get reports of scanned files
  • Scan URLs
  • Get reports for IP addresses, URLs, and domains
  • Support for HTTP and HTTPS
  • Batch support for APIs that support it
  • Size and resource limits built in for better performance
  • Configurable limits to accommodate VT private API features
  • See https://developers.virustotal.com/reference for the VT API documentation

Examples

VirusTotal virusTotal = new VirusTotal("YOUR API KEY HERE");

//Use HTTPS instead of HTTP
virusTotal.UseTLS = true;

//Create the EICAR test virus. See http://www.eicar.org/86-0-Intended-use.html
byte[] eicar = Encoding.ASCII.GetBytes(@"X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*");

//Check if the file has been scanned before.
FileReport report = await virusTotal.GetFileReportAsync(eicar);

Console.WriteLine("Seen before: " + (report.ResponseCode == FileReportResponseCode.Present ? "Yes" : "No"));

Output:

Seen before: True

For more examples, take a look at the VirusTotal.Examples included in the project.

Contributors

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].