天天看點

mac Xcode,lldb調試,讀取記憶體資料并儲存

指令:

#儲存記憶體中原始資料到檔案

(lldb) memory read --force   --binary  --outfile /Users/test/Desktop/3.log    0x100001478 0x100001478+2000

--force: 突破1024位元組限制;

0x100001478: 首位址;

0x100001478+2000: 結束位址;

繼續閱讀