WMI_Forensics
WMI_Forensics copied to clipboard
Fix TypeError when joining lines
The join function expects getting string but we are reading bytes:
objects_file = open(sys.argv[1], "rb")
So I cast it to be a string:
current_line = str(objects_file.readline())