mirror of
https://github.com/byt3bl33d3r/MITMf.git
synced 2025-07-08 05:51:48 -07:00
added names to threads
This commit is contained in:
parent
df9fd2d12a
commit
75173c6b9d
1 changed files with 5 additions and 5 deletions
|
@ -547,7 +547,7 @@ class FilePwn(Plugin):
|
|||
if self.bytes_have_format(data, 'zip'):
|
||||
logging.info("%s Detected supported zip file type!" % client_ip)
|
||||
|
||||
process = multiprocessing.Process(target=self.zip, args=(data,))
|
||||
process = multiprocessing.Process(name='zip', target=self.zip, args=(data,))
|
||||
process.daemon = True
|
||||
process.start()
|
||||
process.join()
|
||||
|
@ -562,7 +562,7 @@ class FilePwn(Plugin):
|
|||
if self.bytes_have_format(data, tartype):
|
||||
logging.info("%s Detected supported tar file type!" % client_ip)
|
||||
|
||||
process = multiprocessing.Process(target=self.tar_files, args=(data,))
|
||||
process = multiprocessing.Process(name='tar_files', target=self.tar_files, args=(data,))
|
||||
process.daemon = True
|
||||
process.start()
|
||||
process.join()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue