Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nlitsme/idascripts
IDApro idc and idapython script collection
https://github.com/nlitsme/idascripts
idapro idapython reverse-engineering
Last synced: 3 months ago
JSON representation
IDApro idc and idapython script collection
- Host: GitHub
- URL: https://github.com/nlitsme/idascripts
- Owner: nlitsme
- License: mit
- Created: 2014-02-06T08:42:52.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2023-08-22T20:06:17.000Z (about 1 year ago)
- Last Synced: 2024-04-06T11:34:34.452Z (7 months ago)
- Topics: idapro, idapython, reverse-engineering
- Language: Python
- Size: 9.77 KB
- Stars: 28
- Watchers: 5
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-security-collection - **22**星
README
idascripts
==========IDApro idc and idapython script collection
enumerators.py
--------------Contains several iterators:
| | |
| ----------- | -------------------------------------------------------- |
| Texts | search text ( or regex ) in the disassembly, like Alt-T |
| NonFuncs | search non function code ( like Alt-U ) |
| Undefs | search unexplored items ( like Ctrl-U ) |
| Binaries | search binary patterns ( like Alt-B ) |
| ArrayItems | return addresses for each item in an array |
| Addrs | all addresses in range |
| BytesThat | bytes matching a filter |
| Heads | all heads in range |
| NotTails | Heads + undefined bytes |
| Funcs | enumerate all function starts |
| FChunks | enumerate all function chunks |The range which is to be searched can be specified in several ways:
| | |
| ----------------------------- | ---------------------------------------------- |
| Texts(start [, "text"] ) | search from start until the end of the file |
| Texts(start, end [, "text"] ) | search between start and end |
| Texts(["text"]) | search the selected area, or |
| | search from the cursor to the end of the file |