标签: binary patch lldb
我知道我可以使用更改lldb中的内存内容
memory write -s 1 0x100000cf7 0x7f
但我希望这能反映在 原始的可执行即我想打补丁 二进制。在gdb上你可以完成这个 命令
set {unsigned char} 0x00000000004006f3 = 0x7f
并使用
gdb --write.
lldb中是否有等效的命令/开关?
答案 0 :(得分:0)
不,lldb中没有这样的功能。