Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions volatility/dwarf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ class DWARFParser(object):
'unsigned int': 'unsigned int',
'sizetype' : 'unsigned long',
'ssizetype' : 'long',
'__int128 unsigned': 'unsigned long long',
}


Expand Down
4 changes: 2 additions & 2 deletions volatility/plugins/overlays/linux/linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def parse_system_map(data, module):
except ValueError:
continue

if symbol == "arm_syscall":
if symbol == "arm_syscall" or symbol == "compat_arm_syscall":
arch = "ARM"

if not symbol in sys_map[module]:
Expand Down Expand Up @@ -192,7 +192,7 @@ def LinuxProfileFactory(profpkg):
sysmapdata = profpkg.read(f.filename)
arch, memmodel, sysmap = parse_system_map(profpkg.read(f.filename), "kernel")

if memmodel == "64bit":
if memmodel == "64bit" and arch == "x86":
arch = "x64"

if not sysmapdata or not dwarfdata:
Expand Down