chg: [module extrator] add debug

This commit is contained in:
Terrtia 2023-08-08 10:40:44 +02:00
parent bd7aa979bd
commit 529a24c191
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -107,8 +107,8 @@ def convert_byte_offset_to_string(b_content, offset):
try: try:
string_chunk = byte_chunk.decode() string_chunk = byte_chunk.decode()
except UnicodeDecodeError as e: except UnicodeDecodeError as e:
logger.error(f'Yara offset coverter error, {e.reason}\n{b_content}\n{offset}') logger.error(f'Yara offset converter error, {e.reason}\n{byte_chunk}\n{offset}')
string_chunk = b_content string_chunk = byte_chunk
offset = len(string_chunk) - 1 offset = len(string_chunk) - 1
return offset return offset