Skip to content

Releases: InQuest/sandboxapi

sandboxapi v1.7.1

06 Jan 23:19
Compare
Choose a tag to compare

Changelog

Features

  • Added GitHub workflow for improved test automation
  • Created a full testing suite for most of the sandboxes

Bug Fixes

  • Enhanced FireEye connectivity loop to allow for a passing test and accurate status code response
  • Minor Joe Sandbox refactor to now accept versions 2 and 3 of jbxapi

Full changelog: #18

New build info and documentation can be found here: https://pypi.org/project/sandboxapi/1.7.1/

sandboxapi v1.4.3

10 Dec 18:01
Compare
Choose a tag to compare
  • Update documentation. No functional changes.

sandboxapi v1.4.2

10 Dec 18:02
Compare
Choose a tag to compare
  • Improve FireEye error handling.

sandboxapi v1.4.1

24 Sep 20:26
Compare
Choose a tag to compare
  • Fix FireEye re-authentication on session timeout.
  • Fix a bug where some error responses weren't handled optimally.

sandboxapi v1.4.0

19 Sep 19:35
Compare
Choose a tag to compare
  • Add support for new FireEye AX series v8.x appliances.
  • Add a legacy_api flag to the FireEyeAPI class for those who wish to use older FireEye appliances.

Important note: The new FireEye API support is now the default! Be sure to check which FireEye version you are using when upgrading this library.

sandboxapi v1.3.2

02 Aug 19:19
Compare
Choose a tag to compare
  • Handle errors coming back from the VMRay API on file submission.

sandboxapi v1.3.1

01 Aug 04:32
Compare
Choose a tag to compare
  • Fix an exception when passing in a url of None to CuckooAPI.

sandboxapi v1.3.0

28 Jun 21:37
Compare
Choose a tag to compare
  • Deprecate Cuckoo host/post/api_path in favor of url.
  • Add proxy support for all sandboxes.
  • Add verify_ssl flag to FireEye class (PR #1 from @nbareil).
  • Update docstrings, publish new documentation at https://sandboxapi.readthedocs.io/.

Note: Support for Cuckoo host/port/api_path will be removed in a future version. If you are currently using this style to initialize CuckooAPI objects, please update your code as soon as possible.

Example old code:

# Don't do this!
CuckooAPI('192.168.0.0')             # Deprecated!
CuckooAPI('192.168.0.0', 8090, '/')  # Deprecated!

Example new code:

# Do this instead!
CuckooAPI('http://192.168.0.0:8090/')

sandboxapi v1.2.0

12 Apr 19:26
Compare
Choose a tag to compare
  • Update Falcon lib to support Falcon API v2.0 (removes support for API v1.x)
  • Fix Cuckoo score function to correctly extract score from Cuckoo 2.0.x
  • Add verify_ssl optional argument to VMRay class, default True

sandboxapi v1.1.0

30 Jan 19:03
Compare
Choose a tag to compare
  • Add score to all sandbox libraries
  • Fix a number of Python 3 compatibility issues
  • Clean up various code issues
  • Fix PyPi package