mirror of
https://github.com/mandiant/capa.git
synced 2025-12-21 23:00:29 -08:00
@@ -34,7 +34,6 @@ We like to use capa to help find the most interesting parts of a program, such a
|
|||||||
To install the plugin, you'll need to be running IDA Pro 7.4 or 7.5 with either Python 2 or Python 3.
|
To install the plugin, you'll need to be running IDA Pro 7.4 or 7.5 with either Python 2 or Python 3.
|
||||||
Next make sure pip commands are run using the Python install that is configured for your IDA install:
|
Next make sure pip commands are run using the Python install that is configured for your IDA install:
|
||||||
|
|
||||||
1. Only if running Python 2.7, run command `$ pip install https://github.com/williballenthin/vivisect/zipball/master`
|
1. Run `$ pip install .` from capa root directory
|
||||||
2. Run `$ pip install .` from capa root directory
|
2. Open IDA and navigate to `File > Script file…` or `Alt+F7`
|
||||||
3. Open IDA and navigate to `File > Script file…` or `Alt+F7`
|
3. Navigate to `<capa_install_dir>\capa\ida\` and choose `ida_capa_explorer.py`
|
||||||
4. Navigate to `<capa_install_dir>\capa\ida\` and choose `ida_capa_explorer.py`
|
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -20,7 +20,7 @@ if sys.version_info >= (3, 0):
|
|||||||
else:
|
else:
|
||||||
# py2
|
# py2
|
||||||
requirements.append("enum34==1.1.6") # v1.1.6 is needed by halo 0.0.30 / spinners 0.0.24
|
requirements.append("enum34==1.1.6") # v1.1.6 is needed by halo 0.0.30 / spinners 0.0.24
|
||||||
requirements.append("vivisect @ https://github.com/williballenthin/vivisect/tarball/v0.0.20200804#egg=vivisect")
|
requirements.append("vivisect==0.1.0rc3")
|
||||||
requirements.append("viv-utils")
|
requirements.append("viv-utils")
|
||||||
requirements.append("networkx==2.2") # v2.2 is last version supported by Python 2.7
|
requirements.append("networkx==2.2") # v2.2 is last version supported by Python 2.7
|
||||||
requirements.append("backports.functools-lru-cache")
|
requirements.append("backports.functools-lru-cache")
|
||||||
|
|||||||
Reference in New Issue
Block a user