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
Cory Kennedy 2021-01-04 15:27:47 -06:00
parent 7104a35cca
commit 774b2f37a6
1 changed files with 1 additions and 1 deletions

View File

@ -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']}