From 00c97409c709705bea222fe4a54908c16e514782 Mon Sep 17 00:00:00 2001 From: Bintang Fikriguska <31087829+fikriguska@users.noreply.github.com> Date: Mon, 8 Mar 2021 06:20:42 +0700 Subject: [PATCH] use_info_auxv() : change regex (#894) --- pwndbg/auxv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/auxv.py b/pwndbg/auxv.py index 517c77ddd..0e380f6cd 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