├── .devcontainer ├── devcontainer.json └── post-create.sh ├── .ghidra_projects └── .placeholder ├── .github └── workflows │ └── build-and-push-devcontainer.yml ├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── import_bins.py ├── requirements.txt ├── run_headless.py ├── sample.properties ├── sample.py ├── sample_bridge.py └── sample_pyhidra.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/post-create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.devcontainer/post-create.sh -------------------------------------------------------------------------------- /.ghidra_projects/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/build-and-push-devcontainer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.github/workflows/build-and-push-devcontainer.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/README.md -------------------------------------------------------------------------------- /import_bins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/import_bins.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ghidra-stubs -------------------------------------------------------------------------------- /run_headless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/run_headless.py -------------------------------------------------------------------------------- /sample.properties: -------------------------------------------------------------------------------- 1 | program=ls -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/sample.py -------------------------------------------------------------------------------- /sample_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/sample_bridge.py -------------------------------------------------------------------------------- /sample_pyhidra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearbluejar/ghidra-python-vscode-devcontainer-skeleton/HEAD/sample_pyhidra.py --------------------------------------------------------------------------------