diff --git a/pwndbg/auxv.py b/pwndbg/auxv.py index 17e28b18f..517c77ddd 100644 --- a/pwndbg/auxv.py +++ b/pwndbg/auxv.py @@ -113,7 +113,7 @@ def use_info_auxv(): auxv = AUXV() for line in lines: - match = re.match('([0-9]+) .* (0x[0-9a-f]+|[0-9]+)', line) + match = re.match('([0-9]+) .*? (0x[0-9a-f]+|[0-9]+)', line) if not match: print("Warning: Skipping auxv entry '{}'".format(line)) continue