├── LICENSE ├── Monocle ├── GhidraBridge │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── ghidra_bridge.cpython-312.pyc │ │ └── ghidra_bridge.cpython-39.pyc │ └── ghidra_bridge.py ├── __init__.py └── monocle.py ├── README.md ├── banner.png ├── example.gif ├── requirements.txt └── setup.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/LICENSE -------------------------------------------------------------------------------- /Monocle/GhidraBridge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Monocle/GhidraBridge/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/Monocle/GhidraBridge/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /Monocle/GhidraBridge/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/Monocle/GhidraBridge/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Monocle/GhidraBridge/__pycache__/ghidra_bridge.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/Monocle/GhidraBridge/__pycache__/ghidra_bridge.cpython-312.pyc -------------------------------------------------------------------------------- /Monocle/GhidraBridge/__pycache__/ghidra_bridge.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/Monocle/GhidraBridge/__pycache__/ghidra_bridge.cpython-39.pyc -------------------------------------------------------------------------------- /Monocle/GhidraBridge/ghidra_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/Monocle/GhidraBridge/ghidra_bridge.py -------------------------------------------------------------------------------- /Monocle/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Monocle/monocle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/Monocle/monocle.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/README.md -------------------------------------------------------------------------------- /banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/banner.png -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/example.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arphanetx/Monocle/HEAD/setup.py --------------------------------------------------------------------------------