mirror of https://github.com/MISP/misp-modules
Merge pull request #49 from FloatingGhost/master
Removed useless pickle storage of stiximportpull/52/head
commit
fb7411aa32
|
@ -4,7 +4,6 @@ import re
|
|||
import base64
|
||||
import hashlib
|
||||
import tempfile
|
||||
import pickle
|
||||
|
||||
misperrors = {'error': 'Error'}
|
||||
userConfig = {}
|
||||
|
@ -50,9 +49,6 @@ def handler(q=False):
|
|||
# Load up the package into STIX
|
||||
package = loadPackage(package, memsize)
|
||||
|
||||
# Hash it
|
||||
with open("/home/hward/tmp.dat", "wb") as f:
|
||||
pickle.dump( package, f)
|
||||
# Build all the observables
|
||||
if package.observables:
|
||||
for obs in package.observables:
|
||||
|
@ -108,6 +104,7 @@ def buildExploitTarget(et):
|
|||
return r
|
||||
|
||||
|
||||
|
||||
def identifyHash(hsh):
|
||||
"""
|
||||
What's that hash!?
|
||||
|
|
Loading…
Reference in New Issue