mirror of https://github.com/MISP/misp-modules
Corrected VMray rest API import
When loading misp-modules, the VMray module ```modules/expansion/vmray_submit.py ``` incorrectly imports the library. VMray's documentation and examples here: https://pypi.org/project/vmray-rest-api/#history also reflect this change as the correct import.pull/466/head
parent
7104a35cca
commit
774b2f37a6
|
@ -19,7 +19,7 @@ from distutils.util import strtobool
|
|||
import io
|
||||
import zipfile
|
||||
|
||||
from _vmray.vmray_rest_api import VMRayRESTAPI
|
||||
from _vmray.rest_api import VMRayRESTAPI
|
||||
|
||||
misperrors = {'error': 'Error'}
|
||||
mispattributes = {'input': ['attachment', 'malware-sample'], 'output': ['text', 'sha1', 'sha256', 'md5', 'link']}
|
||||
|
|
Loading…
Reference in New Issue