Skip to content

Commit

Permalink
pe_size增加16进制输出
Browse files Browse the repository at this point in the history
  • Loading branch information
qux-bbb committed Aug 11, 2022
1 parent 8297992 commit dc447f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xanalyzer/file_process/pe.py
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ def pe_size_scan(self):
"""
pe_size = self.get_pe_size()
if self.file_analyzer.file_size != pe_size:
log.warning(f'pe weird size: file_size {self.file_analyzer.file_size}, pe_size {pe_size}')
log.warning(f'pe weird size: file_size {self.file_analyzer.file_size}({hex(self.file_analyzer.file_size)}), pe_size {pe_size}({hex(pe_size)})')

def compile_time_scan(self):
"""
Expand Down

0 comments on commit dc447f0

Please sign in to comment.