├── .dockerignore ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── cloudbuild.yaml ├── deploy.sh ├── docker-build.cloud.sh ├── docker-build.local.sh ├── docker-compose.yml ├── pwnomcp.service ├── pwnomcp ├── __init__.py ├── __main__.py ├── cli.py ├── gdb │ ├── __init__.py │ └── controller.py ├── logger.py ├── pwnpipe.py ├── retdec │ ├── __init__.py │ └── retdec.py ├── router │ ├── __init__.py │ ├── attach.py │ ├── health.py │ └── mcp.py ├── server.py ├── state │ ├── __init__.py │ └── session.py ├── tools │ ├── __init__.py │ ├── git.py │ ├── pwndbg.py │ ├── python.py │ └── subproc.py └── utils │ ├── auth │ └── handler.py │ └── color.py ├── pyproject.toml └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/README.md -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/deploy.sh -------------------------------------------------------------------------------- /docker-build.cloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/docker-build.cloud.sh -------------------------------------------------------------------------------- /docker-build.local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/docker-build.local.sh -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /pwnomcp.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp.service -------------------------------------------------------------------------------- /pwnomcp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/__init__.py -------------------------------------------------------------------------------- /pwnomcp/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/__main__.py -------------------------------------------------------------------------------- /pwnomcp/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/cli.py -------------------------------------------------------------------------------- /pwnomcp/gdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/gdb/__init__.py -------------------------------------------------------------------------------- /pwnomcp/gdb/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/gdb/controller.py -------------------------------------------------------------------------------- /pwnomcp/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/logger.py -------------------------------------------------------------------------------- /pwnomcp/pwnpipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/pwnpipe.py -------------------------------------------------------------------------------- /pwnomcp/retdec/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pwnomcp/retdec/retdec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/retdec/retdec.py -------------------------------------------------------------------------------- /pwnomcp/router/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | Routers package for Pwno MCP. 3 | """ 4 | 5 | -------------------------------------------------------------------------------- /pwnomcp/router/attach.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/router/attach.py -------------------------------------------------------------------------------- /pwnomcp/router/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/router/health.py -------------------------------------------------------------------------------- /pwnomcp/router/mcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/router/mcp.py -------------------------------------------------------------------------------- /pwnomcp/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/server.py -------------------------------------------------------------------------------- /pwnomcp/state/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/state/__init__.py -------------------------------------------------------------------------------- /pwnomcp/state/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/state/session.py -------------------------------------------------------------------------------- /pwnomcp/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/tools/__init__.py -------------------------------------------------------------------------------- /pwnomcp/tools/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/tools/git.py -------------------------------------------------------------------------------- /pwnomcp/tools/pwndbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/tools/pwndbg.py -------------------------------------------------------------------------------- /pwnomcp/tools/python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/tools/python.py -------------------------------------------------------------------------------- /pwnomcp/tools/subproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/tools/subproc.py -------------------------------------------------------------------------------- /pwnomcp/utils/auth/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/utils/auth/handler.py -------------------------------------------------------------------------------- /pwnomcp/utils/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pwnomcp/utils/color.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pwno-io/pwno-mcp/HEAD/uv.lock --------------------------------------------------------------------------------