We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01a1941 commit 5f4c3dcCopy full SHA for 5f4c3dc
qiling/extensions/report/report.py
@@ -12,8 +12,8 @@ class Report:
12
def __init__(self, ql):
13
self.filename = ql.argv
14
self.rootfs = ql.rootfs
15
- self.arch = list(arch_map.keys())[list(arch_map.values()).index(ql.arch.type)]
16
- self.os = list(os_map.keys())[list(os_map.values()).index(ql.os.type)]
+ self.arch = ql.arch.type.name
+ self.os = ql.os.type.name
17
self.env = ql.env
18
self.strings = set()
19
for string in ql.os.stats.strings:
0 commit comments