Although LLDB's Python API seems incredibly powerful, it's a bit hard to get started. Specifically, I'm looking for a way to read N bytes from a given memory address. I thought I would be able to do so using lldb.SBValue.CreateValueFromAddress
method, which maps to:
SBValue_CreateValueFromAddress(SBValue self, char const * name, lldb::addr_t address, SBType type) -> SBValue
Unfortunately, I can't figure out from the reference documentation what arguments to pass and what they mean. Another approach was to create an lldb.SBAddress
but again, I get stuck at the same point as the arguments required for __init__
are unclear to me.
Question: How can I read N bytes from a given memory address using LLDB's Python API? Good reading material on the subject is most welcome as well.
Thanks in advance.
You should use
SBProcess.ReadMemory
.ReadMemory
modifieserror_ref
if an error occurs.