https://github.com/kkent030315/ida2md
IDA format to the markdown table conversion using python
https://github.com/kkent030315/ida2md
Last synced: 7 months ago
JSON representation
IDA format to the markdown table conversion using python
- Host: GitHub
- URL: https://github.com/kkent030315/ida2md
- Owner: kkent030315
- License: mit
- Created: 2020-11-03T09:19:33.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-03T10:09:09.000Z (almost 5 years ago)
- Last Synced: 2025-02-28T22:18:20.799Z (7 months ago)
- Language: Python
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ida2md
IDA format to the markdown table conversion using python# Example
Input:
```
Address Ordinal-Name Library
0000000180078F18 AccessCheck api-ms-win-security-base-l1-1-0
0000000180078A28 ActivateActCtx api-ms-win-core-sidebyside-l1-1-0
0000000180077750 AddConsoleAliasA api-ms-win-core-console-l3-2-0
...
```Output (Markdown table style):
```
|Address|Ordinal-Name|Library|
|----|----|----|
|180078F18|AccessCheck|api-ms-win-security-base-l1-1-0|
|180078A28|ActivateActCtx|api-ms-win-core-sidebyside-l1-1-0|
|180077750|AddConsoleAliasA|api-ms-win-core-console-l3-2-0|
...
```# Known Issues
- the item in a row must not be contain whitespace.
- it is not possible to detect if the item is word or not automatically it should take action manually