ce-probe-sec

Solid

Security-probe a running target — web/API apps or CLI binaries — passive recon by default; smell-test and active-exploit tiers behind explicit opt-in. Twice-attested consent; refuses production; sandboxes binaries; findings, not verdicts. Triggers: security-test/sec-scan/probe a running app for vulnerabilities. Never production. For performance use /ce-probe-perf.

AI & Automation 0 stars 0 forks Updated 4 days ago Apache-2.0

Install

View on GitHub

Quality Score: 78/100

Stars 20%
0
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# Probe Sec **Invocation input:** Target (URL for web/API, or a binary/command for CLI): $ARGUMENTS Probe a running target for security issues. This is the **dynamic** security tool — it exercises a live instance or binary. For *static*, code-level review of pending changes, use `/ce-review`'s Security lens (see the boundary below). Sister to `/ce-ux-audit`: same evidence-bound finding *discipline* (every finding cited, triaged, escalated — though each tool's finding fields and evidence-state vocabulary differ), same triage discipline, same escalate-up chain. **Not a pentest** — a first cut that surfaces leads for a human security professional; mature scanners do the deep work where installed. ## Architecture — spine + per-type modules This skill (`SKILL.md`) is the **spine**: it owns the workflow arc, the consent gates, the evidence model, triage, and the report. The **per-type probe content** lives in modules loaded on demand at Stage 0: | Target type | Detect by | Load module | Consent gate | |---|---|---|---| | Web / API | argument is a URL (or `--type http`) | `${CLAUDE_SKILL_DIR}/probes-http.md` | Gate A — Remote-Target Attestation | | CLI / console | argument is a binary/command (or `--type cli`) | `${CLAUDE_SKILL_DIR}/probes-cli.md` | Gate B — Local-Execution Sandbox | | (ambiguous) | — | ask the human | — | Load exactly one module per run. Adding a type later = a new `${CLAUDE_SKILL_DIR}/probes-<type>.md` + one row here; the spine never changes. **The probe ...

Details

Author
relusion
Repository
relusion/vg-sdlc-claude-plugins
Created
2 weeks ago
Last Updated
4 days ago
Language
Python
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

ce-probe-perf

Profile a running target's performance — latency, throughput, resource use, hotspots — observe tier by default, load/soak behind opt-in. Refuses production; the only tool that can prove a numeric NFR breach (records, doesn't block). Triggers: performance-test/profile/load-test/measure latency or throughput. For vulnerabilities use /ce-probe-sec.

0 Updated 4 days ago
relusion
DevOps & Infrastructure Listed

ce-probe-infra

Statically audit Infrastructure-as-Code / Kubernetes / cloud manifests across a repo — least-privilege, workload hardening, secrets, exposure, hygiene, cross-manifest consistency. Orchestrates installed scanners (tfsec/checkov/kube-score/kube-linter/hadolint/trivy) and falls back to a stdlib infra-lint.py floor. Read-only on code; redacts secrets, never exfiltrates; findings, not verdicts. Triggers: audit/lint/review IaC, k8s, Helm, Dockerfile, compose, or cloud manifests for misconfig. Static & plan-free. For a live running target use /ce-probe-sec; for application-code review use /ce-review; for known-vulnerable dependency versions (SCA) use /ce-probe-deps.

0 Updated 4 days ago
relusion
AI & Automation Listed

ce-probe-deps

Statically scan a repository's pinned dependency manifests against the OSV.dev advisory database — known-vulnerable versions (CVE/GHSA advisories) per exactly-pinned package, with loud offline degradation, never a silent pass. Deterministic stdlib floor (sca-guard.py over requirements.txt / npm lockfiles) enriched by model triage; only package name+version coordinates ever leave the machine (disclosed; --offline honored). Read-only on code; findings, not verdicts. Triggers: scan/audit/check dependencies for known CVEs or vulnerable versions, SCA, software composition analysis. For manifest *misconfiguration* (IaC/k8s/Dockerfile) use /ce-probe-infra; undeclared/typosquat NEW dependencies in a change are dep-guard's job inside the implement lane.

0 Updated 4 days ago
relusion