plugin-scanner 2.0.111__tar.gz → 2.0.113__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/PKG-INFO +1 -1
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/pyproject.toml +1 -1
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/pyproject.toml.bak +1 -1
- plugin_scanner-2.0.113/src/codex_plugin_scanner/guard/runtime/data_flow.py +408 -0
- plugin_scanner-2.0.113/src/codex_plugin_scanner/guard/runtime/data_flow_rules.py +472 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/detectors.py +20 -2
- plugin_scanner-2.0.113/src/codex_plugin_scanner/guard/runtime/secret_sources.py +99 -0
- plugin_scanner-2.0.113/src/codex_plugin_scanner/guard/runtime/shell_commands.py +202 -0
- plugin_scanner-2.0.113/src/codex_plugin_scanner/guard/runtime/temp_files.py +57 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/version.py +1 -1
- plugin_scanner-2.0.113/tests/test_guard_data_flow.py +331 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_runtime_detectors.py +25 -7
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.clusterfuzzlite/Dockerfile +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.clusterfuzzlite/build.sh +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.clusterfuzzlite/project.yaml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.clusterfuzzlite/requirements-atheris.txt +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.dockerignore +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/CODEOWNERS +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/ISSUE_TEMPLATE/bug-report.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/ISSUE_TEMPLATE/config.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/ISSUE_TEMPLATE/feature-request.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/dependabot.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/ci.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/codeql.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/dependabot-uv-lock.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/fuzz.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/harness-smoke.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/publish.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.github/workflows/scorecard.yml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.gitignore +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/.pre-commit-hooks.yaml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/CONTRIBUTING.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/Dockerfile +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/index.html +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/package.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/pnpm-lock.yaml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/public/apple-touch-icon.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/public/brand/Logo_Icon_Dark.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/public/brand/Logo_Whole.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/public/favicon-16x16.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/public/favicon-32x32.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/public/favicon.ico +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/app.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/approval-center-layout.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/approval-center-primitives.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/approval-center-utils.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/fleet-workspace.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/guard-api.test.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/guard-api.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/guard-demo.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/guard-types.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/main.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/receipts-workspace.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/runtime-overview.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/settings-workspace.tsx +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/styles.css +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/src/vite-env.d.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/tsconfig.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/dashboard/vite.config.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docker-requirements.txt +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/guard/approval-audit.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/guard/architecture.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/guard/get-started.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/guard/harness-support.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/guard/local-vs-cloud.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/guard/testing-matrix.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/trust/mcp-trust-draft.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/trust/plugin-trust-draft.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/docs/trust/skill-trust-local.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/fuzzers/manifest_fuzzer.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/requirements.txt +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/schemas/plugin-quality.v1.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/schemas/scan-result.v1.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/schemas/verify-result.v1.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/action_runner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/argparse_utils.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/best_practices.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/claude.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/code_quality.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/ecosystem_common.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/gemini.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/manifest.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/manifest_support.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/marketplace.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/mcp_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/opencode.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/operational_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/checks/skill_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/cli.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/cli_ui.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/config.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/base.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/claude.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/codex.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/detect.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/gemini.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/opencode.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/registry.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/ecosystems/types.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/github_reporting.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/antigravity.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/base.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/claude_code.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/cloud_identity.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/codex.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/copilot.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/cursor.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/gemini.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/hermes.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/mcp_servers.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/openclaw.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/openclaw_config.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/openclaw_support.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/opencode.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/adapters/opencode_artifacts.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/advisory_model.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/approvals.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/bridge/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/capabilities.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/approval_commands.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/bootstrap.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/commands.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/connect_flow.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/install_commands.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/product.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/prompt.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/render.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/cli/update_commands.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/codex_config.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/config.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/consumer/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/consumer/service.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/client.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/manager.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/server.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/apple-touch-icon.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/assets/guard-dashboard.js +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/assets/index.css +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/brand/Logo_Icon_Dark.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/brand/Logo_Whole.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/favicon-16x16.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/favicon-32x32.png +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/favicon.ico +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/daemon/static/index.html +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/edge_events.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/incident.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/launcher.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/mcp_tool_calls.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/models.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/policy/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/policy/engine.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/protect.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/proxy/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/proxy/remote.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/proxy/runtime_mcp.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/proxy/stdio.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/receipts/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/receipts/manager.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/redaction.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/risk.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/actions.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/decisions.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/runner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/secret_file_requests.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/secret_sensitivity.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/signals.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/runtime/surface_server.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/schemas/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/schemas/consumer_mode.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/schemas/guard_event_v1.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/schemas/surface_server.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/shims.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/store.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/store_approvals.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/store_connect.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/guard/types.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/integrations/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/integrations/cisco_mcp_scanner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/integrations/cisco_skill_scanner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/lint_fixes.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/marketplace_support.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/models.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/path_support.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/policy.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/quality_artifact.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/repo_detect.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/reporting.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/rules/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/rules/registry.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/rules/specs.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/scanner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/submission.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/suppressions.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_domain_scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_helpers.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_mcp_scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_models.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_plugin_scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_skill_scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/trust_specs.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/src/codex_plugin_scanner/verification.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/conftest.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/__init__.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/bad-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/bad-plugin/.mcp.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/bad-plugin/secrets.js +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/claude-plugin-good/.claude-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/claude-plugin-good/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/claude-plugin-good/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/claude-plugin-good/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/claude-plugin-good/hooks/hooks.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/claude-plugin-good/skills/example/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/code-quality-bad/evil.js +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/code-quality-bad/inject.js +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/gemini-extension-good/GEMINI.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/gemini-extension-good/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/gemini-extension-good/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/gemini-extension-good/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/gemini-extension-good/commands/hello.toml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/gemini-extension-good/gemini-extension.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/.codexignore +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/assets/icon.svg +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/assets/logo.svg +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/assets/screenshot.svg +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/good-plugin/skills/example/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/guard-codex-malicious-mcp/.codex/config.toml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/config.yaml +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/mcp_servers.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/skills/security/malicious/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/skills/stealth/sneaky/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/skills/stealth/sneaky/references/api-setup.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/skills/stealth/sneaky/scripts/deploy.sh +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/hermes-plugin-evil/skills/utils/benign/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malformed-json/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malicious-skill-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malicious-skill-plugin/.codexignore +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malicious-skill-plugin/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malicious-skill-plugin/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malicious-skill-plugin/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/malicious-skill-plugin/skills/leaky-skill/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/mcp-canary-server.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/minimal-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/missing-fields/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/mit-license/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-ecosystem-repo/codex-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-ecosystem-repo/codex-plugin/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-ecosystem-repo/codex-plugin/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-ecosystem-repo/codex-plugin/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-ecosystem-repo/gemini-ext/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-ecosystem-repo/gemini-ext/gemini-extension.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/.agents/plugins/marketplace.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/alpha-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/alpha-plugin/.codexignore +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/alpha-plugin/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/alpha-plugin/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/alpha-plugin/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/alpha-plugin/skills/example/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/beta-plugin/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/multi-plugin-repo/plugins/beta-plugin/skills/example/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/no-version/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/opencode-good/.opencode/commands/hello.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/opencode-good/.opencode/plugins/example.ts +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/opencode-good/LICENSE +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/opencode-good/README.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/opencode-good/SECURITY.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/opencode-good/opencode.jsonc +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/skills-missing-dir/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/skills-no-frontmatter/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/skills-no-frontmatter/skills/bad-skill/SKILL.md +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/with-marketplace/.codex-plugin/plugin.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/with-marketplace/marketplace-broken.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/fixtures/with-marketplace/marketplace.json +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test-trust-scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test-trust-specs.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_action_runner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_best_practices.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_cisco_install_surfaces.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_cli.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_code_quality.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_config.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_coverage_remaining.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_ecosystems.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_edge_cases.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_final_coverage.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_access_graph.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_approvals.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_bootstrap.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_capabilities.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_claude_adapter.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_cli.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_codex_e2e.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_codex_install.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_codex_proxy.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_config_paths.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_connect_flow.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_consumer_mode.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_copilot_adapter.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_copilot_proxy.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_daemon_manager.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_event_schema_v1.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_events.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_launch_env.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_opencode_proxy.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_product_flow.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_protect.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_render.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_risk.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_runtime.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_runtime_action_harnesses.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_runtime_actions.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_runtime_decisions.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_runtime_signals.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_store_migrations.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_surface_server.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_guard_verdicts.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_hermes_adapter.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_integration.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_lint_fixes.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_live_cisco_smoke.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_manifest.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_marketplace.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_mcp_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_openclaw_adapter.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_operational_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_policy.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_quality_artifact.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_rule_registry.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_scanner.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_schema_contracts.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_security_ops.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_skill_security.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_submission.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_trust_scoring.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_trust_specs.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_verification.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/tests/test_versioning.py +0 -0
- {plugin_scanner-2.0.111 → plugin_scanner-2.0.113}/uv.lock +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: plugin-scanner
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.113
|
|
4
4
|
Summary: Lint, verify, and gate plugin ecosystems for maintainers, CI, and publish workflows.
|
|
5
5
|
Project-URL: Homepage, https://github.com/hashgraph-online/ai-plugin-scanner
|
|
6
6
|
Project-URL: Repository, https://github.com/hashgraph-online/ai-plugin-scanner
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "plugin-scanner"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.113"
|
|
8
8
|
description = "Lint, verify, and gate plugin ecosystems for maintainers, CI, and publish workflows."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "hol-guard"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.113"
|
|
8
8
|
description = "Protect local AI harnesses with HOL Guard and run scanner checks for Codex, Claude, Cursor, Gemini, and OpenCode."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
@@ -0,0 +1,408 @@
|
|
|
1
|
+
"""Local data-flow source and sink helpers for Guard runtime detectors."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import re
|
|
6
|
+
from collections.abc import Iterable
|
|
7
|
+
from dataclasses import dataclass
|
|
8
|
+
from itertools import pairwise
|
|
9
|
+
from typing import Literal
|
|
10
|
+
|
|
11
|
+
DataSourceType = Literal[
|
|
12
|
+
"secret_file",
|
|
13
|
+
"env",
|
|
14
|
+
"clipboard",
|
|
15
|
+
"keychain",
|
|
16
|
+
"command_output",
|
|
17
|
+
"prompt",
|
|
18
|
+
"generated_file",
|
|
19
|
+
]
|
|
20
|
+
DataSinkType = Literal[
|
|
21
|
+
"http_post",
|
|
22
|
+
"http_get_query",
|
|
23
|
+
"dns",
|
|
24
|
+
"webhook",
|
|
25
|
+
"paste",
|
|
26
|
+
"git_remote",
|
|
27
|
+
"package_publish",
|
|
28
|
+
"clipboard",
|
|
29
|
+
"local_log",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
_VALID_SOURCE_TYPES = frozenset(
|
|
33
|
+
{
|
|
34
|
+
"secret_file",
|
|
35
|
+
"env",
|
|
36
|
+
"clipboard",
|
|
37
|
+
"keychain",
|
|
38
|
+
"command_output",
|
|
39
|
+
"prompt",
|
|
40
|
+
"generated_file",
|
|
41
|
+
}
|
|
42
|
+
)
|
|
43
|
+
_VALID_SINK_TYPES = frozenset(
|
|
44
|
+
{
|
|
45
|
+
"http_post",
|
|
46
|
+
"http_get_query",
|
|
47
|
+
"dns",
|
|
48
|
+
"webhook",
|
|
49
|
+
"paste",
|
|
50
|
+
"git_remote",
|
|
51
|
+
"package_publish",
|
|
52
|
+
"clipboard",
|
|
53
|
+
"local_log",
|
|
54
|
+
}
|
|
55
|
+
)
|
|
56
|
+
_HTTP_METHODS = frozenset({"GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"})
|
|
57
|
+
_INPUT_REDIRECT_PATTERN = re.compile(r"(?<![<])(?:\d*)<\s*(?![<&])(?P<target>\"[^\"]+\"|'[^']+'|[^ \t\r\n;&|<>]+)")
|
|
58
|
+
_URL_PATTERN = re.compile(r"https?://[^\s\"'<>)}\]]+", re.IGNORECASE)
|
|
59
|
+
_CURL_METHOD_PATTERN = re.compile(
|
|
60
|
+
r"(?i)(?:^|[\s;&|])(?:curl|curl\.exe)\b[^\r\n;&|]*?"
|
|
61
|
+
r"(?:--request(?:=|\s+)|-X\s*)['\"]?(?P<method>[a-z]+)['\"]?\b"
|
|
62
|
+
)
|
|
63
|
+
_FETCH_METHOD_PATTERN = re.compile(r"(?i)\bmethod\s*:\s*['\"](?P<method>[a-z]+)['\"]")
|
|
64
|
+
_REQUESTS_METHOD_PATTERN = re.compile(r"(?i)\brequests\.(?P<method>get|post|put|patch|delete|head|options)\s*\(")
|
|
65
|
+
_CURL_DATA_PATTERN = re.compile(
|
|
66
|
+
r"(?i)(?:^|[\s;&|])(?:curl|curl\.exe)\b[^\r\n;&|]*(?:\s-d\b|\s--data(?:-raw|-binary|-urlencode)?\b)"
|
|
67
|
+
)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
@dataclass(frozen=True, slots=True)
|
|
71
|
+
class DataSource:
|
|
72
|
+
"""Redacted local data source referenced by a runtime action."""
|
|
73
|
+
|
|
74
|
+
source_type: DataSourceType
|
|
75
|
+
value: str
|
|
76
|
+
description: str
|
|
77
|
+
evidence: str | None = None
|
|
78
|
+
|
|
79
|
+
def __post_init__(self) -> None:
|
|
80
|
+
if self.source_type not in _VALID_SOURCE_TYPES:
|
|
81
|
+
raise ValueError("source_type must be a known Guard data source type")
|
|
82
|
+
if not self.value.strip():
|
|
83
|
+
raise ValueError("value must be a non-empty redacted source identifier")
|
|
84
|
+
if not self.description.strip():
|
|
85
|
+
raise ValueError("description must be a non-empty source description")
|
|
86
|
+
|
|
87
|
+
def to_dict(self) -> dict[str, object]:
|
|
88
|
+
return {
|
|
89
|
+
"source_type": self.source_type,
|
|
90
|
+
"value": self.value,
|
|
91
|
+
"description": self.description,
|
|
92
|
+
"evidence": self.evidence,
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
@dataclass(frozen=True, slots=True)
|
|
97
|
+
class DataSink:
|
|
98
|
+
"""Redacted destination where local data may leave the trusted context."""
|
|
99
|
+
|
|
100
|
+
sink_type: DataSinkType
|
|
101
|
+
value: str
|
|
102
|
+
description: str
|
|
103
|
+
method: str | None = None
|
|
104
|
+
evidence: str | None = None
|
|
105
|
+
|
|
106
|
+
def __post_init__(self) -> None:
|
|
107
|
+
if self.sink_type not in _VALID_SINK_TYPES:
|
|
108
|
+
raise ValueError("sink_type must be a known Guard data sink type")
|
|
109
|
+
if not self.value.strip():
|
|
110
|
+
raise ValueError("value must be a non-empty redacted sink identifier")
|
|
111
|
+
if not self.description.strip():
|
|
112
|
+
raise ValueError("description must be a non-empty sink description")
|
|
113
|
+
if self.method is not None:
|
|
114
|
+
if not isinstance(self.method, str):
|
|
115
|
+
raise ValueError("method must be a known HTTP method")
|
|
116
|
+
normalized = self.method.upper()
|
|
117
|
+
if normalized not in _HTTP_METHODS:
|
|
118
|
+
raise ValueError("method must be a known HTTP method")
|
|
119
|
+
object.__setattr__(self, "method", normalized)
|
|
120
|
+
|
|
121
|
+
def to_dict(self) -> dict[str, object]:
|
|
122
|
+
return {
|
|
123
|
+
"sink_type": self.sink_type,
|
|
124
|
+
"value": self.value,
|
|
125
|
+
"description": self.description,
|
|
126
|
+
"method": self.method,
|
|
127
|
+
"evidence": self.evidence,
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
@dataclass(frozen=True, slots=True)
|
|
132
|
+
class ShellPipe:
|
|
133
|
+
"""Top-level shell pipe edge between adjacent command segments."""
|
|
134
|
+
|
|
135
|
+
left: str
|
|
136
|
+
right: str
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
def extract_input_redirects(command: str) -> tuple[str, ...]:
|
|
140
|
+
"""Return file targets read through shell input redirects."""
|
|
141
|
+
|
|
142
|
+
targets: list[str] = []
|
|
143
|
+
for segment in _split_top_level_commands(command):
|
|
144
|
+
for match in _INPUT_REDIRECT_PATTERN.finditer(segment):
|
|
145
|
+
target = _strip_shell_quotes(match.group("target"))
|
|
146
|
+
if target and not target.startswith(("(", "&")):
|
|
147
|
+
targets.append(target)
|
|
148
|
+
return _dedupe(targets)
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def extract_command_substitutions(command: str) -> tuple[str, ...]:
|
|
152
|
+
"""Return commands inside top-level `$()` and backtick substitutions."""
|
|
153
|
+
|
|
154
|
+
substitutions: list[str] = []
|
|
155
|
+
index = 0
|
|
156
|
+
quote: str | None = None
|
|
157
|
+
while index < len(command):
|
|
158
|
+
char = command[index]
|
|
159
|
+
if char == "\\":
|
|
160
|
+
index += 2
|
|
161
|
+
continue
|
|
162
|
+
if char == "'" and quote is None:
|
|
163
|
+
quote = "'"
|
|
164
|
+
index += 1
|
|
165
|
+
continue
|
|
166
|
+
if char == "'" and quote == "'":
|
|
167
|
+
quote = None
|
|
168
|
+
index += 1
|
|
169
|
+
continue
|
|
170
|
+
if char == '"' and quote is None:
|
|
171
|
+
quote = '"'
|
|
172
|
+
index += 1
|
|
173
|
+
continue
|
|
174
|
+
if char == '"' and quote == '"':
|
|
175
|
+
quote = None
|
|
176
|
+
index += 1
|
|
177
|
+
continue
|
|
178
|
+
if quote != "'" and command.startswith("$(", index):
|
|
179
|
+
extracted, end_index = _extract_parenthesized(command, index + 2)
|
|
180
|
+
if extracted.strip():
|
|
181
|
+
substitutions.append(extracted.strip())
|
|
182
|
+
index = end_index + 1
|
|
183
|
+
continue
|
|
184
|
+
if quote != "'" and char == "`":
|
|
185
|
+
extracted, end_index = _extract_backtick(command, index + 1)
|
|
186
|
+
if extracted.strip():
|
|
187
|
+
substitutions.append(extracted.strip())
|
|
188
|
+
index = end_index + 1
|
|
189
|
+
continue
|
|
190
|
+
index += 1
|
|
191
|
+
return tuple(substitutions)
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
def extract_pipes(command: str) -> tuple[ShellPipe, ...]:
|
|
195
|
+
"""Return adjacent top-level pipe edges, ignoring logical OR and quoted pipes."""
|
|
196
|
+
|
|
197
|
+
pipes: list[ShellPipe] = []
|
|
198
|
+
for segment in _split_top_level_commands(command):
|
|
199
|
+
parts = _split_top_level_pipes(segment)
|
|
200
|
+
if len(parts) < 2:
|
|
201
|
+
continue
|
|
202
|
+
for left, right in pairwise(parts):
|
|
203
|
+
stripped_left = left.strip()
|
|
204
|
+
stripped_right = right.strip()
|
|
205
|
+
if stripped_left and stripped_right:
|
|
206
|
+
pipes.append(ShellPipe(left=stripped_left, right=stripped_right))
|
|
207
|
+
return tuple(pipes)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
def extract_command_segments(command: str) -> tuple[str, ...]:
|
|
211
|
+
"""Return top-level shell command segments split on command separators."""
|
|
212
|
+
|
|
213
|
+
return _split_top_level_commands(command)
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
def extract_http_methods(command: str) -> tuple[str, ...]:
|
|
217
|
+
"""Return explicit or strongly implied HTTP methods referenced by shell text."""
|
|
218
|
+
|
|
219
|
+
methods: list[str] = []
|
|
220
|
+
for pattern in (_CURL_METHOD_PATTERN, _FETCH_METHOD_PATTERN, _REQUESTS_METHOD_PATTERN):
|
|
221
|
+
for match in pattern.finditer(command):
|
|
222
|
+
_append_http_method(methods, match.group("method"))
|
|
223
|
+
if _CURL_DATA_PATTERN.search(command):
|
|
224
|
+
_append_http_method(methods, "POST")
|
|
225
|
+
return _dedupe(methods)
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
def extract_urls(command: str) -> tuple[str, ...]:
|
|
229
|
+
"""Return HTTP(S) URLs while preserving first-seen order."""
|
|
230
|
+
|
|
231
|
+
urls = [_strip_url_suffix(match.group(0)) for match in _URL_PATTERN.finditer(command)]
|
|
232
|
+
return _dedupe(url for url in urls if url)
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
def extract_url_ranges(command: str) -> tuple[tuple[int, int], ...]:
|
|
236
|
+
"""Return HTTP(S) URL character ranges in shell text."""
|
|
237
|
+
|
|
238
|
+
return tuple(
|
|
239
|
+
(match.start(), match.start() + len(_strip_url_suffix(match.group(0))))
|
|
240
|
+
for match in _URL_PATTERN.finditer(command)
|
|
241
|
+
)
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
def _append_http_method(methods: list[str], method: str) -> None:
|
|
245
|
+
normalized = method.upper()
|
|
246
|
+
if normalized in _HTTP_METHODS:
|
|
247
|
+
methods.append(normalized)
|
|
248
|
+
|
|
249
|
+
|
|
250
|
+
def _dedupe(values: Iterable[str]) -> tuple[str, ...]:
|
|
251
|
+
seen: set[str] = set()
|
|
252
|
+
result: list[str] = []
|
|
253
|
+
for value in values:
|
|
254
|
+
if value in seen:
|
|
255
|
+
continue
|
|
256
|
+
seen.add(value)
|
|
257
|
+
result.append(value)
|
|
258
|
+
return tuple(result)
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
def _strip_shell_quotes(value: str) -> str:
|
|
262
|
+
stripped = value.strip()
|
|
263
|
+
if len(stripped) >= 2 and stripped[0] == stripped[-1] and stripped[0] in {"'", '"'}:
|
|
264
|
+
return stripped[1:-1]
|
|
265
|
+
return stripped
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
def _strip_url_suffix(value: str) -> str:
|
|
269
|
+
return value.rstrip(".,;")
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
def _split_top_level_commands(command: str) -> tuple[str, ...]:
|
|
273
|
+
parts: list[str] = []
|
|
274
|
+
start = 0
|
|
275
|
+
index = 0
|
|
276
|
+
state = _ShellScanState()
|
|
277
|
+
while index < len(command):
|
|
278
|
+
next_index = state.advance(command, index)
|
|
279
|
+
if next_index != index + 1:
|
|
280
|
+
index = next_index
|
|
281
|
+
continue
|
|
282
|
+
if state.is_top_level and command[index] in {";", "\n"}:
|
|
283
|
+
_append_segment(parts, command[start:index])
|
|
284
|
+
start = index + 1
|
|
285
|
+
elif state.is_top_level and (command.startswith("&&", index) or command.startswith("||", index)):
|
|
286
|
+
_append_segment(parts, command[start:index])
|
|
287
|
+
start = index + 2
|
|
288
|
+
index += 1
|
|
289
|
+
elif state.is_top_level and command[index] == "&" and _is_background_separator(command, index):
|
|
290
|
+
_append_segment(parts, command[start:index])
|
|
291
|
+
start = index + 1
|
|
292
|
+
index += 1
|
|
293
|
+
_append_segment(parts, command[start:])
|
|
294
|
+
return tuple(parts)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
def _is_background_separator(command: str, index: int) -> bool:
|
|
298
|
+
previous_char = command[index - 1] if index > 0 else ""
|
|
299
|
+
next_char = command[index + 1] if index + 1 < len(command) else ""
|
|
300
|
+
return previous_char not in {">", "<", "|"} and next_char not in {"&", ">"}
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
def _split_top_level_pipes(command: str) -> tuple[str, ...]:
|
|
304
|
+
parts: list[str] = []
|
|
305
|
+
start = 0
|
|
306
|
+
index = 0
|
|
307
|
+
state = _ShellScanState()
|
|
308
|
+
while index < len(command):
|
|
309
|
+
next_index = state.advance(command, index)
|
|
310
|
+
if next_index != index + 1:
|
|
311
|
+
index = next_index
|
|
312
|
+
continue
|
|
313
|
+
if state.is_top_level and command[index] == "|":
|
|
314
|
+
previous_is_pipe = index > 0 and command[index - 1] == "|"
|
|
315
|
+
next_is_pipe = index + 1 < len(command) and command[index + 1] == "|"
|
|
316
|
+
if not previous_is_pipe and not next_is_pipe:
|
|
317
|
+
_append_segment(parts, command[start:index])
|
|
318
|
+
start = index + 2 if index + 1 < len(command) and command[index + 1] == "&" else index + 1
|
|
319
|
+
index += 1
|
|
320
|
+
_append_segment(parts, command[start:])
|
|
321
|
+
return tuple(parts)
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
def _append_segment(parts: list[str], value: str) -> None:
|
|
325
|
+
stripped = value.strip()
|
|
326
|
+
if stripped:
|
|
327
|
+
parts.append(stripped)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
def _extract_parenthesized(command: str, start: int) -> tuple[str, int]:
|
|
331
|
+
depth = 1
|
|
332
|
+
index = start
|
|
333
|
+
quote: str | None = None
|
|
334
|
+
while index < len(command):
|
|
335
|
+
char = command[index]
|
|
336
|
+
if char == "\\":
|
|
337
|
+
index += 2
|
|
338
|
+
continue
|
|
339
|
+
if char in {"'", '"'}:
|
|
340
|
+
if quote is None:
|
|
341
|
+
quote = char
|
|
342
|
+
elif quote == char:
|
|
343
|
+
quote = None
|
|
344
|
+
index += 1
|
|
345
|
+
continue
|
|
346
|
+
if quote is None and char == "(":
|
|
347
|
+
depth += 1
|
|
348
|
+
elif quote is None and char == ")":
|
|
349
|
+
depth -= 1
|
|
350
|
+
if depth == 0:
|
|
351
|
+
return command[start:index], index
|
|
352
|
+
index += 1
|
|
353
|
+
return command[start:], len(command)
|
|
354
|
+
|
|
355
|
+
|
|
356
|
+
def _extract_backtick(command: str, start: int) -> tuple[str, int]:
|
|
357
|
+
index = start
|
|
358
|
+
while index < len(command):
|
|
359
|
+
char = command[index]
|
|
360
|
+
if char == "\\":
|
|
361
|
+
index += 2
|
|
362
|
+
continue
|
|
363
|
+
if char == "`":
|
|
364
|
+
return command[start:index], index
|
|
365
|
+
index += 1
|
|
366
|
+
return command[start:], len(command)
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
class _ShellScanState:
|
|
370
|
+
def __init__(self) -> None:
|
|
371
|
+
self.quote: str | None = None
|
|
372
|
+
self.subshell_depth = 0
|
|
373
|
+
self.in_backtick = False
|
|
374
|
+
|
|
375
|
+
@property
|
|
376
|
+
def is_top_level(self) -> bool:
|
|
377
|
+
return self.quote is None and self.subshell_depth == 0 and not self.in_backtick
|
|
378
|
+
|
|
379
|
+
def advance(self, command: str, index: int) -> int:
|
|
380
|
+
char = command[index]
|
|
381
|
+
if char == "\\":
|
|
382
|
+
return min(len(command), index + 2)
|
|
383
|
+
if char == "`" and self.quote != "'":
|
|
384
|
+
self.in_backtick = not self.in_backtick
|
|
385
|
+
return index + 1
|
|
386
|
+
if self.in_backtick:
|
|
387
|
+
return index + 1
|
|
388
|
+
if self.quote == "'":
|
|
389
|
+
if char == "'":
|
|
390
|
+
self.quote = None
|
|
391
|
+
return index + 1
|
|
392
|
+
if char == "'" and self.quote is None:
|
|
393
|
+
self.quote = "'"
|
|
394
|
+
return index + 1
|
|
395
|
+
if char == '"':
|
|
396
|
+
if self.quote == '"':
|
|
397
|
+
self.quote = None
|
|
398
|
+
elif self.quote is None:
|
|
399
|
+
self.quote = '"'
|
|
400
|
+
return index + 1
|
|
401
|
+
if self.quote != "'" and command.startswith("$(", index):
|
|
402
|
+
_extracted, end_index = _extract_parenthesized(command, index + 2)
|
|
403
|
+
return min(len(command), end_index + 1)
|
|
404
|
+
if self.quote is None and char == "(":
|
|
405
|
+
self.subshell_depth += 1
|
|
406
|
+
elif self.quote is None and char == ")" and self.subshell_depth > 0:
|
|
407
|
+
self.subshell_depth -= 1
|
|
408
|
+
return index + 1
|