0.0
No commit activity in last 3 years
No release in over 3 years
Yet another Hybrid Analysis API wrapper for Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 2.1
~> 0.8
~> 13.0
~> 3.9
~> 5.0
~> 3.8
 Project Readme

hybridanalysisx

Gem Version Build Status Coverage Status CodeFactor

Yet another Hybrid Analysis API wrapper for Ruby.

Installation

gem install hybridanalysisx

Usage

require "hybridanalysis"

# when given nothing, it tries to load your API key via ENV["HA_API_KEY"] or ENV["HYBRIDANALYSIS_API_KEY"]
api = HybridAnalysis::API.new
# or you can set it manually
api = HybridAnalysis::API.new(key: "YOUR_API_KEY")

api.feed.latest
api.quick_scan(file: "/tmp/foo.exe", scan_type: "all")
api.submit.file(file: "/tmp/foo.exe", environment_id: "110")

See docs for more.

License

The gem is available as open source under the terms of the MIT License.