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 9e11fed commit f097734Copy full SHA for f097734
hooks/filesystem.py
@@ -456,10 +456,10 @@ def process_checksec_file(self, event):
456
inode = event.inode
457
checksec_file = event.checksec_file
458
self.fs[str(inode.path)].checksec = True
459
- self.fs[str(inode.path)].relro = checksec_file.relro
+ self.fs[str(inode.path)].relro = checksec_file.relro.name
460
self.fs[str(inode.path)].canary = checksec_file.canary
461
self.fs[str(inode.path)].nx = checksec_file.nx
462
- self.fs[str(inode.path)].pie = checksec_file.pie
+ self.fs[str(inode.path)].pie = checksec_file.pie.name
463
self.fs[str(inode.path)].rpath = checksec_file.rpath
464
self.fs[str(inode.path)].runpath = checksec_file.runpath
465
self.fs[str(inode.path)].symbols = checksec_file.symbols
0 commit comments