Skip to content

Commit

Permalink
+ add 'Contents' for example scripts
Browse files Browse the repository at this point in the history
* update logo
  • Loading branch information
prusanov committed Aug 5, 2019
1 parent adfbf90 commit 7d3fd4c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,20 @@ It looks like this:
- [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)

## Links
## 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)

- [The Beginner's Guide to IDAPython](https://leanpub.com/IDAPython-Book)
### 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)

Binary file modified cheatsheet_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions debugger_hooks/breakpoints.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
''' Short IDAPython functions to work with breakpoints
'''

def set_python_bpt(ea, cond):
''' Set conditional breakpoint with Python function
Expand Down
3 changes: 1 addition & 2 deletions listing/disasm_transform.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
''' Short and simple transformations in disasmbler view
''' Short and simple transformations in disassembler view
'''

def make_offsets32(start_ea, end_ea):
Expand Down
1 change: 0 additions & 1 deletion listing/function_arguments.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
''' Make comment to function, using it's argument (using x86 mnemonics)
'''

def get_function_arg_value(addr):
Expand Down

0 comments on commit 7d3fd4c

Please sign in to comment.