Merge pull request #49 from FloatingGhost/master

Removed useless pickle storage of stiximport
pull/52/head
Alexandre Dulaunoy 2016-09-06 15:22:00 +02:00 committed by GitHub
commit fb7411aa32
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!?