about summary refs log tree commit diff stats
path: root/symbolic.py
diff options
context:
space:
mode:
Diffstat (limited to 'symbolic.py')
-rw-r--r--symbolic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/symbolic.py b/symbolic.py
index a8d45d0..53e1bbf 100644
--- a/symbolic.py
+++ b/symbolic.py
@@ -10,7 +10,7 @@ from lldb_target import LLDBConcreteTarget
 
 def symbolize_state(state: angr.SimState,
                     arch: Arch = x86.ArchX86(),
-                    exclude: list[str] = ['PC', 'RBP', 'RSP'],
+                    exclude: list[str] = ['RIP', 'RBP', 'RSP'],
                     stack_name: str = 'stack',
                     stack_size: int = 0x10) \
         -> angr.SimState: