mirror of https://github.com/MISP/misp-modules
Use SpooledTemp, not NamedTemp file
parent
c567d1e6f2
commit
0dfea44001
|
@ -2,8 +2,6 @@ import json
|
||||||
import re
|
import re
|
||||||
import base64
|
import base64
|
||||||
import hashlib
|
import hashlib
|
||||||
import tempfile
|
|
||||||
import os
|
|
||||||
|
|
||||||
from pymisp.tools import stix
|
from pymisp.tools import stix
|
||||||
|
|
||||||
|
@ -36,16 +34,11 @@ def handler(q=False):
|
||||||
if not package:
|
if not package:
|
||||||
return json.dumps({"success": 0})
|
return json.dumps({"success": 0})
|
||||||
|
|
||||||
tfile = tempfile.NamedTemporaryFile(mode="w", prefix="STIX", delete=False)
|
pkg = stix.load_stix(package)
|
||||||
tfile.write(package)
|
|
||||||
tfile.close()
|
|
||||||
|
|
||||||
pkg = stix.load_stix(tfile.name)
|
|
||||||
|
|
||||||
for attrib in pkg.attributes:
|
for attrib in pkg.attributes:
|
||||||
r["results"].append({ "values" : [attrib.value] , "types": [attrib.type], "categories": [attrib.category]})
|
r["results"].append({ "values" : [attrib.value] , "types": [attrib.type], "categories": [attrib.category]})
|
||||||
|
|
||||||
os.unlink(tfile.name)
|
|
||||||
return r
|
return r
|
||||||
|
|
||||||
def introspection():
|
def introspection():
|
||||||
|
|
Loading…
Reference in New Issue