Readme.txt
上传用户:szhuaji06
上传日期:2020-08-02
资源大小:66k
文件大小:2k
源码类别:

破解

开发平台:

Python

  1. Introduction:
  2. ----------------------
  3. The module is distributed as two files:
  4.  -ida2sql.py    (the file run from IDA, it just starts
  5.                 the main part of the code in the ZIP file)
  6.  -ida2sql.zip   (A zipped module implementing all the
  7.                 functionality, it's created by zipping the
  8.                 ida_to_sql directory)
  9.                 
  10. Installation:
  11. -------------
  12. Drop the ZIP file inside the IDA plugins directory. That's all. Just run the ida2sql.py script from within IDA afterwards.
  13. Exporting to a SQL dump file:
  14. -----------------------------
  15. If the path to the IDB points to a file that does not exist (for instance, the
  16. IDB was moved) the export is created in IDA's base directory, otherwise it
  17. will be created in the same location and with the same name as the IDB file,
  18. but with ".sql" extension
  19. The configuration file:
  20. -----------------------
  21. If a file named "ida2sql.cfg" is placed in the IDA top level folder the
  22. database information will be loaded from it. Allowing for quickly exporting
  23. by just calling the "ida2sql.py" from within IDA.
  24. See the example ida2sql.cfg file included.
  25. Special features/Notes:
  26. -----------------
  27. If a file named "function_set.txt" exists in IDA's root directory (where
  28. IDA's binaries reside) it will be loaded and only functions listed on it
  29. will be exported. 
  30. The file should contain the hexadecimal start address of the functions
  31. that should be exported, one per line.
  32. Note 1: if there are any imported symbols referred to from those functions,
  33. those will also be exported.
  34. Note 2: The exporter will display some errors towards the end of the export.
  35. It will complain because not all the constraints of the database are fulfilled
  36. as there might be references to functions that are not exported. Those errors
  37. can be ignored.