mirror of https://github.com/MISP/PyMISP
chg: Allow to pass a pseudofile to LIEF
parent
8a23e7a35a
commit
52e079fea2
|
@ -49,9 +49,12 @@ def make_macho_objects(lief_parsed, misp_file):
|
||||||
|
|
||||||
def make_binary_objects(filepath=None, pseudofile=None, filename=None):
|
def make_binary_objects(filepath=None, pseudofile=None, filename=None):
|
||||||
misp_file = FileObject(filepath=filepath, pseudofile=pseudofile, filename=filename)
|
misp_file = FileObject(filepath=filepath, pseudofile=pseudofile, filename=filename)
|
||||||
if HAS_LIEF and filepath:
|
if HAS_LIEF and filepath or (pseudofile and filename):
|
||||||
try:
|
try:
|
||||||
lief_parsed = lief.parse(filepath)
|
if filepath:
|
||||||
|
lief_parsed = lief.parse(filepath=filepath)
|
||||||
|
else:
|
||||||
|
lief_parsed = lief.parse(raw=pseudofile.getvalue(), name=filename)
|
||||||
if isinstance(lief_parsed, lief.PE.Binary):
|
if isinstance(lief_parsed, lief.PE.Binary):
|
||||||
return make_pe_objects(lief_parsed, misp_file)
|
return make_pe_objects(lief_parsed, misp_file)
|
||||||
elif isinstance(lief_parsed, lief.ELF.Binary):
|
elif isinstance(lief_parsed, lief.ELF.Binary):
|
||||||
|
|
|
@ -5,6 +5,7 @@ import unittest
|
||||||
import requests_mock
|
import requests_mock
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
from io import BytesIO
|
||||||
|
|
||||||
import pymisp as pm
|
import pymisp as pm
|
||||||
from pymisp import PyMISP
|
from pymisp import PyMISP
|
||||||
|
@ -210,9 +211,12 @@ class TestOffline(unittest.TestCase):
|
||||||
p.add_internal_other(evt, 'foobar')
|
p.add_internal_other(evt, 'foobar')
|
||||||
p.add_attachment(evt, "testFile")
|
p.add_attachment(evt, "testFile")
|
||||||
|
|
||||||
def make_objects(self, path):
|
def make_objects(self, path=None, pseudofile=None, filename=None):
|
||||||
to_return = {'objects': [], 'references': []}
|
to_return = {'objects': [], 'references': []}
|
||||||
fo, peo, seos = make_binary_objects(path)
|
if path:
|
||||||
|
fo, peo, seos = make_binary_objects(path)
|
||||||
|
else:
|
||||||
|
fo, peo, seos = make_binary_objects(pseudofile=pseudofile, filename=filename)
|
||||||
|
|
||||||
if seos:
|
if seos:
|
||||||
for s in seos:
|
for s in seos:
|
||||||
|
@ -229,8 +233,29 @@ class TestOffline(unittest.TestCase):
|
||||||
to_return['objects'].append(fo)
|
to_return['objects'].append(fo)
|
||||||
if fo.ObjectReference:
|
if fo.ObjectReference:
|
||||||
to_return['references'] += fo.ObjectReference
|
to_return['references'] += fo.ObjectReference
|
||||||
|
|
||||||
|
# Remove UUIDs for comparing the objects.
|
||||||
|
for o in to_return['objects']:
|
||||||
|
o.pop('uuid')
|
||||||
|
for o in to_return['references']:
|
||||||
|
o.pop('referenced_uuid')
|
||||||
|
o.pop('object_uuid')
|
||||||
return json.dumps(to_return, cls=MISPEncode)
|
return json.dumps(to_return, cls=MISPEncode)
|
||||||
|
|
||||||
|
def test_objects_pseudofile(self, m):
|
||||||
|
paths = ['cmd.exe', 'tmux', 'MachO-OSX-x64-ls']
|
||||||
|
try:
|
||||||
|
for path in paths:
|
||||||
|
with open(os.path.join('tests', 'viper-test-files', 'test_files', path), 'rb') as f:
|
||||||
|
pseudo = BytesIO(f.read())
|
||||||
|
json_blob = self.make_objects(pseudofile=pseudo, filename=path)
|
||||||
|
# Compare pseudo file / path
|
||||||
|
filepath_blob = self.make_objects(os.path.join('tests', 'viper-test-files', 'test_files', path))
|
||||||
|
self.assertEqual(json_blob, filepath_blob)
|
||||||
|
except IOError: # Can be replaced with FileNotFoundError when support for python 2 is dropped
|
||||||
|
return unittest.SkipTest()
|
||||||
|
print(json_blob)
|
||||||
|
|
||||||
def test_objects(self, m):
|
def test_objects(self, m):
|
||||||
paths = ['cmd.exe', 'tmux', 'MachO-OSX-x64-ls']
|
paths = ['cmd.exe', 'tmux', 'MachO-OSX-x64-ls']
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue