Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/er28-0652/vtquery
Unofficial VirusTotal Query Client written by Golang
https://github.com/er28-0652/vtquery
golang virustotal
Last synced: 5 days ago
JSON representation
Unofficial VirusTotal Query Client written by Golang
- Host: GitHub
- URL: https://github.com/er28-0652/vtquery
- Owner: er28-0652
- License: mit
- Created: 2018-01-20T17:25:58.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-03T22:49:38.000Z (over 6 years ago)
- Last Synced: 2024-06-20T14:18:31.279Z (5 months ago)
- Topics: golang, virustotal
- Language: Go
- Size: 99.6 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/er28-0652/vtquery.svg?branch=master)](https://travis-ci.org/er28-0652/vtquery)
vtquery
===
`vtquery` is VirusTotal query library that doesn't use official API.## Usage
Query hash and get result from VirusTotal.
```go
hash := "909349d9beeaf08a155bdfc8aadf73d093e545b7"
vt, err := vtquery.NewDefaultClient()
if err != nil {
log.Fatal(err)
}
result, err := vt.HashQuery(hash)
if err != nil {
log.Fatal(err)
}
result.ShowReport()
```