├── .gitignore ├── GhidrOllama.py ├── README.md ├── ghidrollama_utils ├── __init__.py ├── ghidrollama_config.json.sample ├── ghidrollama_subscripts │ ├── __init__.py │ ├── leafblower.py │ └── utils.py └── helper.py ├── images ├── logo.png ├── name.png ├── script_manager.png └── toolbar_icon.png └── toolbar.png /.gitignore: -------------------------------------------------------------------------------- 1 | ghidrollama_config.json 2 | *.class 3 | -------------------------------------------------------------------------------- /GhidrOllama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/GhidrOllama.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/README.md -------------------------------------------------------------------------------- /ghidrollama_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ghidrollama_utils/ghidrollama_config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/ghidrollama_utils/ghidrollama_config.json.sample -------------------------------------------------------------------------------- /ghidrollama_utils/ghidrollama_subscripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ghidrollama_utils/ghidrollama_subscripts/leafblower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/ghidrollama_utils/ghidrollama_subscripts/leafblower.py -------------------------------------------------------------------------------- /ghidrollama_utils/ghidrollama_subscripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/ghidrollama_utils/ghidrollama_subscripts/utils.py -------------------------------------------------------------------------------- /ghidrollama_utils/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/ghidrollama_utils/helper.py -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/images/name.png -------------------------------------------------------------------------------- /images/script_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/images/script_manager.png -------------------------------------------------------------------------------- /images/toolbar_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/images/toolbar_icon.png -------------------------------------------------------------------------------- /toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lr-m/GhidrOllama/HEAD/toolbar.png --------------------------------------------------------------------------------