A Cookiecutter template for creating an IDA plugin. This template helps you quickly scaffold an IDA Python plugin
- Python 3.10+
- pipx
-
Generate a new plugin from this template:
pipx run cookiecutter gh:HexRaysSA/ida-plugin-template
If you want to create the folder directly inside the .plugins dir of IDA
On linux & mac
pipx run cookiecutter gh:HexRaysSA/ida-plugin-template -o $HOME/.idapro/pluginsOn windows
pipx run cookiecutter gh:HexRaysSA/ida-plugin-template -o "%APPDATA%\Hex-Rays\IDA Pro\plugins" -
Fill in the prompted information:
- Plugin name (e.g., "IDA Test Plugin")
- Author name and email
- Description
- Version
-
Navigate to your new extension:
cd your-generated-project-name
MIT