Readme.txt
上传用户:szhuaji06
上传日期:2020-08-02
资源大小:66k
文件大小:2k
- Introduction:
- ----------------------
- The module is distributed as two files:
- -ida2sql.py (the file run from IDA, it just starts
- the main part of the code in the ZIP file)
- -ida2sql.zip (A zipped module implementing all the
- functionality, it's created by zipping the
- ida_to_sql directory)
-
- Installation:
- -------------
- Drop the ZIP file inside the IDA plugins directory. That's all. Just run the ida2sql.py script from within IDA afterwards.
- Exporting to a SQL dump file:
- -----------------------------
- If the path to the IDB points to a file that does not exist (for instance, the
- IDB was moved) the export is created in IDA's base directory, otherwise it
- will be created in the same location and with the same name as the IDB file,
- but with ".sql" extension
- The configuration file:
- -----------------------
- If a file named "ida2sql.cfg" is placed in the IDA top level folder the
- database information will be loaded from it. Allowing for quickly exporting
- by just calling the "ida2sql.py" from within IDA.
- See the example ida2sql.cfg file included.
- Special features/Notes:
- -----------------
- If a file named "function_set.txt" exists in IDA's root directory (where
- IDA's binaries reside) it will be loaded and only functions listed on it
- will be exported.
- The file should contain the hexadecimal start address of the functions
- that should be exported, one per line.
- Note 1: if there are any imported symbols referred to from those functions,
- those will also be exported.
- Note 2: The exporter will display some errors towards the end of the export.
- It will complain because not all the constraints of the database are fulfilled
- as there might be references to functions that are not exported. Those errors
- can be ignored.