hybridanalysisx
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.