IDA Pro >> IDC

Dump Memory To File


參考資訊:
1. how-in-ida-can-save-memory-dump-with-command-or-script

main.idc

auto file= fopen("dump.bin", "wb");
savefile(file, 0, 0x80000000, 32*1024*1024);
fclose(file);

P.S. 檔案會位於同一個分析檔案的位置


返回上一頁