Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zyantific/retypedef
Name substitution plugin for IDA Pro
https://github.com/zyantific/retypedef
Last synced: 3 months ago
JSON representation
Name substitution plugin for IDA Pro
- Host: GitHub
- URL: https://github.com/zyantific/retypedef
- Owner: zyantific
- License: mit
- Archived: true
- Created: 2014-11-18T16:28:52.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-06-29T23:31:27.000Z (over 7 years ago)
- Last Synced: 2024-02-11T16:04:10.153Z (9 months ago)
- Language: C++
- Homepage:
- Size: 45.9 KB
- Stars: 143
- Watchers: 17
- Forks: 44
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
REtypedef
=========## What is this?
REtypedef is an IDA PRO plugin that allows defining custom substitutions for function names. It comes with a default ruleset providing substitutions for many common STL types.## Example output
### Without REtypedef
```asm
.text:0040142E ; =============== S U B R O U T I N E =======================================
.text:0040142E
.text:0040142E ; Attributes: thunk
.text:0040142E
.text:0040142E public: void __thiscall std::basic_string, class std::allocator>::swap(class std::basic_string, class std::allocator> &) proc near
.text:0040142E
.text:0040142E _Right = dword ptr 4
.text:0040142E
.text:0040142E jmp std::basic_string,std::allocator>::swap(std::basic_string,std::allocator> &)
.text:0040142E public: void __thiscall std::basic_string, class std::allocator>::swap(class std::basic_string, class std::allocator> &) endp
.text:0040142E
.text:00401433
.text:00401433 ; =============== S U B R O U T I N E =======================================
.text:00401433
.text:00401433 ; Attributes: thunk
.text:00401433
.text:00401433 public: class std::basic_string, class std::allocator> & __thiscall std::basic_string, class std::allocator>::insert(unsigned int, class std::basic_string, class std::allocator> const &) proc near
.text:00401433
.text:00401433 _Off = dword ptr 4
.text:00401433 _Right = dword ptr 8
.text:00401433
.text:00401433 jmp std::basic_string,std::allocator>::insert(uint,std::basic_string,std::allocator> const &)
.text:00401433 public: class std::basic_string, class std::allocator> & __thiscall std::basic_string, class std::allocator>::insert(unsigned int, class std::basic_string, class std::allocator> const &) endp
```### With REtypedef
```asm
.text:0040142E ; =============== S U B R O U T I N E =======================================
.text:0040142E
.text:0040142E ; Attributes: thunk
.text:0040142E
.text:0040142E public: void __thiscall std::string::swap(class std::string &) proc near
.text:0040142E
.text:0040142E _Right = dword ptr 4
.text:0040142E
.text:0040142E jmp std::string::swap(std::string &)
.text:0040142E public: void __thiscall std::string::swap(class std::string &) endp
.text:0040142E
.text:00401433
.text:00401433 ; =============== S U B R O U T I N E =======================================
.text:00401433
.text:00401433 ; Attributes: thunk
.text:00401433
.text:00401433 public: class std::string & __thiscall std::string::insert(unsigned int, class std::string const &) proc near
.text:00401433
.text:00401433 _Off = dword ptr 4
.text:00401433 _Right = dword ptr 8
.text:00401433
.text:00401433 jmp std::string::insert(uint,std::string const &)
.text:00401433 public: class std::string & __thiscall std::string::insert(unsigned int, class std::string const &) endp
```## Binary distribution
[Download latest binary version from github.](https://github.com/athre0z/REtypedef/releases/latest) Currently only the Windows version of IDA is supported.## Installation
Place `REtypedef.plX` into the `plugins` directory of your IDA installation.