This commit is contained in:
byt3bl33d3r 2015-06-03 01:44:12 +02:00
parent b6b40aba2c
commit b0fa2e010d

View file

@ -590,7 +590,7 @@ class FilePwn(Plugin):
if self.bytes_have_format(data, 'zip'): if self.bytes_have_format(data, 'zip'):
mitmf_logger.info("[FilePwn] {} Detected supported zip file type!".format(client_ip)) mitmf_logger.info("[FilePwn] {} Detected supported zip file type!".format(client_ip))
process = multiprocessing.Process(name='zip', target=self.zip, args=(data,)) process = multiprocessing.Process(name='zip', target=self.zip_files, args=(data,))
process.daemon = True process.daemon = True
process.start() process.start()
#process.join() #process.join()