https://github.com/tandasat/dumpvtable
Generates a Python script to give public interface names in an ActiveX file to an IDB file.
https://github.com/tandasat/dumpvtable
Last synced: 7 months ago
JSON representation
Generates a Python script to give public interface names in an ActiveX file to an IDB file.
- Host: GitHub
- URL: https://github.com/tandasat/dumpvtable
- Owner: tandasat
- License: mit
- Created: 2013-11-12T09:31:22.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2021-07-16T14:18:11.000Z (almost 4 years ago)
- Last Synced: 2023-08-04T17:08:09.130Z (almost 2 years ago)
- Language: C++
- Homepage:
- Size: 299 KB
- Stars: 44
- Watchers: 6
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
DumpVTable
==========This program generates a Python script to give public interface names in an ActiveX file to the IDA Pro database file (IDB).
Usage
-----------------
>DumpVTable.exe
usage:
>this.exe target_file out_file [-r] [-y]target_file: A path of a target COM file.
out_file: A file name of an output Python script.
-r: Register a target file as COM during analysis.
It may require Administrators privilege.
-y: Do not show a warning message.As an example, assuming that you are going to analyze Flash10zr.ocx with IDA Pro.
First, you can use this tool to create a Python script (out.py).
>DumpVTable.exe C:\Windows\SysWOW64\Macromed\Flash\Flash10zr.ocx out.py
Next, you can open the target file with IDA Pro.

Then, you apply the script to the IDB from [File] > [Script file] menu on IDA Pro.

That's it. Have fun!
Note
-----------------
- When you see the error message 'ERROR: CoCreateInstance returned 80040154', you will need to register the target file with a command line option '-r'.
- When you see the error message 'ERROR: File mismatch []', you will need to specify as a target file.Supported Platforms
-----------------
- Windows 10 x64
- IDA Pro 7.3 and later
- x86/x64 bit both supportedLicense
-----------------
This software is released under the MIT License, see LICENSE.