Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/inforion/idapython-cheatsheet
Scripts and cheatsheets for IDAPython
https://github.com/inforion/idapython-cheatsheet
Last synced: 27 days ago
JSON representation
Scripts and cheatsheets for IDAPython
- Host: GitHub
- URL: https://github.com/inforion/idapython-cheatsheet
- Owner: inforion
- Created: 2019-04-24T20:49:08.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-11-02T08:55:37.000Z (about 1 year ago)
- Last Synced: 2024-08-03T06:01:55.621Z (4 months ago)
- Language: Python
- Size: 1010 KB
- Stars: 650
- Watchers: 24
- Forks: 85
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-reverse-engineering - **258**星
- awesome-security-collection - **258**星
- awesome-hacking-lists - inforion/idapython-cheatsheet - Scripts and cheatsheets for IDAPython (Python)
README
# idapython-cheatsheet
![cheatsheet.png](cheatsheet_logo.png)Cheatsheets and example scripts for IDAPython (7.x and 6.x).
It looks like this:
![IDAPython-7.x](IDAPython-7x_cheatsheet_web_en.png)
## Printable versions
- [English (IDA 6.x and 7.x)](https://github.com/inforion/idapython-cheatsheet/releases/download/pdf/IDAPython_cheat_sheet_.6x_7x._ENG.pdf)
- [Russian (IDA 6.x and 7.x)](https://github.com/inforion/idapython-cheatsheet/releases/download/pdf/IDAPython_cheat_sheet_.6x_7x._RUS.pdf)### IDAPython 7.x (PNG)
- [IDAPython 7.x cheatsheet (English)](https://github.com/inforion/idapython-cheatsheet/releases/download/7.x/IDAPython-7.x_cheatsheet_print_en.png)
- [IDAPython 7.x cheatsheet (Russian)](https://github.com/inforion/idapython-cheatsheet/releases/download/7.x/IDAPython-7.x_cheatsheet_print_ru.png)### IDAPython 6.x (PNG)
- [IDAPython 6.x cheatsheet (English)](https://github.com/inforion/idapython-cheatsheet/releases/download/v1.0/IDAPython_cheatsheet_print_en.png)
- [IDAPython 6.x cheatsheet (Russian)](https://github.com/inforion/idapython-cheatsheet/releases/download/v1.0/IDAPython_cheatsheet_print_ru.png)## Tips & triks & examples
### Debugger Hooks
- Work with breakpoints [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/debugger_hooks/breakpoints.py)### Listing
- Simple transformations in disassembler view [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/listing/disasm_transform.py)
- Make comment to function, using it's argument [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/listing/function_arguments.py)### Types
- Apply types to functions and data [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/types/apply_types.py)
- Work with enums [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/types/enums.py)### Xrefs
- Add simple code and data cross-references [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/xrefs/simple_xrefs.py)### Miscellaneous
- Parsing Global Descriptor Table (GDT, x86) [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/misc/parse_gdt.py)
- Parsing Interrupt Descriptor Table (IDT, x86) [source code](https://github.com/inforion/idapython-cheatsheet/blob/master/misc/parse_idt.py)## Links
- ["The Beginner's Guide to IDAPython" by Alexander Hanel](https://leanpub.com/IDAPython-Book)
- ["Introduction to IDAPython" by Ero Carrera](https://github.com/cyphunk/sectk/blob/master/docs/Software_RE/Ero-Introduction%20to%20IDAPython.pdf)
- [IDAPyHelper - script that helps writing IDAPython scripts and plugins](https://github.com/patois/IDAPyHelper)