Android逆向-IDA脚本idc、py LiuJP 2024-03-25 48 阅读1分钟 static main(void) { auto fp, begin, end, dexbyte; fp = fopen("D:\\dump.so", "wb"); begin = 0x786A0000; end = begin + 0x67000 ; for ( dexbyte = begin; dexbyte < end; dexbyte ++ ) fputc(Byte(dexbyte), fp); }