Removed useless pickle storage of stiximport

pull/49/head
Hannah Ward 2016-09-06 14:12:09 +01:00
parent 4e3300d66c
commit 0521833c65
No known key found for this signature in database
GPG Key ID: BA89E572EE1B4C5F
1 changed files with 1 additions and 4 deletions

View File

@ -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!?