Skip to content

Latest commit

 

History

History
53 lines (28 loc) · 1.84 KB

plugins-readme.md

File metadata and controls

53 lines (28 loc) · 1.84 KB

IDA Plugins

This directory contains scriptable plugins for IDA. Drop them into your IDA\plugins directory to activate.


This plugin allows you to do a very simple operation. Get the offset from the image base of the current cursor. Essentially it's copying to your clipboard the RVA. This is useful when you wish to jump to a in-memory live version of whatever you have dumped that is loaded inside IDA.

Usage Instructions:

Right click anywhere in an IDA View and select Get Offset. Alternatively you can use the shortcut command Ctrl+Shift+C The offset will be copied to your clipboard.

screenshot-getoffset-plugin

This plugin allows you to jump to an address location given an offset.

Usage Instructions:

Press the shortcut command Shift+G to open the input dialog. Input the offset you wish to jump to and press OK.

screenshot-gotooffset-plugin

This plugin allows you to import Function Signatures that have been previously exported using the export plugin. It esentially just does a binary search of each signature present in the .cfs file. If it finds a match it will rename the function at that location.

Usage Instructions:

File->Load file->CFS File.. Select the .cfs file in the explorer window.

screenshot-cfs-importer-plugin

This plugin allows you to export Function Signatures in IDA. Select a function or functions in IDA's functions window. Right click -> Export Signatures and choice a file path and name to export.

screenshot-cfs-exporter-plugin