ui: show some more important information and checks

This commit is contained in:
Dobin
2024-05-01 22:30:53 +01:00
parent 3e6c1e06cf
commit c372d348ce
6 changed files with 52 additions and 10 deletions
+3 -1
View File
@@ -35,7 +35,9 @@ class ExeHost():
self.superpe = SuperPe(self.filepath)
if not self.superpe.is_64():
raise Exception("Binary is not 64bit: {}".format(self.filepath))
logger.warn("Binary is not 64bit: {}".format(self.filepath))
return
#raise Exception("Binary is not 64bit: {}".format(self.filepath))
# image base
self.image_base = self.superpe.pe.OPTIONAL_HEADER.ImageBase