When running cuckoo2mist.py i get for every thread Exception in thread Thread-74:
Traceback (most recent call last):
File "/Users/ptrac3/anaconda/lib/python2.7/threading.py", line 810, in __bootstrap_inner
self.run()
File "/Users/ptrac3/cuckoo2mist-code/trunk/thread_mist.py", line 55, in run
if mist.parse() and mist.convert():
File "/Users/ptrac3/cuckoo2mist-code/trunk/class_mist.py", line 223, in convert
self.convert_thread(p_id, t_id, processes[p_id]["threads"][t_id])
File "/Users/ptrac3/cuckoo2mist-code/trunk/class_mist.py", line 161, in convert_thread
self.mist.write( '# process ' + pid + ' thread ' + tid + ' #\n' )
TypeError: cannot concatenate 'str' and 'int' objects
I'm using Python2.7 and i've edited cuckoo2mist.py f_input adding the directory with JSON reports..Thanks for any help
FIXED:
Line 161 of class_mist.py is now:
self.mist.write( '# process ' + str(pid) + ' thread ' + str(tid) + ' #\n' )