• Map文件从IDA到OD


    什么是map文件

    什么是 MAP 文件?

    简单地讲, MAP 文件是程序的全局符号、源文件和代码行号信息的唯一的文本表示方法,它可以在任何地方、任何时候使用,不需要有额外的程序进行支持。而且,这是唯一能找出程序崩溃的地方的救星。

    在逆向分析的时候IDA可疑获得比较详细的map文件信息,同时结合OD动态调试将IDA中分析出的map文件导入到OD中可以起到事半功倍的效果。

    IDA与OD导出使用map文件

    )

    注意事项

    使用IDA导出map文件时,在不需要Label信息的情况下,不要选中"dummy names"选项,否则在Ollydbg中使用LoadMapEx(by forever)加载时,会将OD的注释替换掉

    对于 dummy names,IDA帮助中的解释是这样:

    Dummy names are automatically generated by IDA. They are used to denote subroutines, program locations and data.

    假名字被艾达自动生成。他们是用来表示子程序、程序的位置和数据。

    Dummy names have various prefixes depending on the item type and value:

    假的名字有不同的前缀根据项目类型和值:

    sub_ instruction, subroutine start
    locret_ 'return' instruction
    loc_ instruction
    off_ data, contains offset value
    seg_ data, contains segment address value
    asc_ data, ascii string
    byte_ data, byte (or array of bytes)
    word_ data, 16-bit (or array of words)
    dword_ data, 32-bit (or array of dwords)
    qword_ data, 64-bit (or array of qwords)
    flt_ floating point data, 32-bit (or array of floats)
    dbl_ floating point data, 64-bit (or array of doubles)
    tbyte_ floating point data, 80-bit (or array of tbytes)
    stru_ structure (or array of structures)
    algn_ alignment directive
    unk_ unexplored byte

    使用OD载入导出的map文件

  • 相关阅读:
    CentOS Python 安装MySQL-python
    Ubuntu64位安装Adobe Reader 9.5.5
    Codeforces Round #316 (Div. 2) (ABC题)
    cocos2dx 3.2+ 项目创建与问题总汇
    Mongodb的索引
    uva 12083 Guardian of Decency (二分图匹配)
    Linux查看内存使用量和交换区使用量
    053第423题
    [Python]xlrd 读取excel 日期类型2种方式
    求解组合问题的一个迭代算法
  • 原文地址:https://www.cnblogs.com/TJTO/p/11374035.html
Copyright © 2020-2023  润新知