ワンクリックで
secret-verification-methodology
Workspace inspection and independent verification workflow for adversarial challenges.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Workspace inspection and independent verification workflow for adversarial challenges.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Effective usage of GitHub API tools for fetching secret scanning alerts and locations.
Guidelines for setting up isolated testing environments for secret validation scripts.
Techniques for analyzing code context around secret locations to understand usage and intent.
Strategies for cloning repositories with full history into the workspace for analysis.
Use the validate-secrets tool for deterministic secret validation when a matching validator is available.
Verification guide specific to HTTP Basic Authentication credentials.
| name | secret-verification-methodology |
| description | Workspace inspection and independent verification workflow for adversarial challenges. |
| agent | challenger |
| required | true |
This skill guides the challenger through systematic workspace inspection and independent verification of analysis claims.
Analysis agents create workspaces with a predictable structure:
workspace/
├── scripts/ # Verification scripts written by analysis agent
│ ├── venv/ # Python virtual environment (if used)
│ ├── verify_*.py # Verification scripts
│ └── requirements.txt
├── logs/ # Test output and results
│ └── test_results.json
├── artifacts/ # Generated evidence
│ └── evidence/
├── repo/ # Cloned repository
├── stream.log # Agent streaming log
└── report.md # The analysis report
Always start by listing the workspace root:
ls -la {{workspace_path}}
Then check subdirectories:
ls -la {{workspace_path}}/scripts/
ls -la {{workspace_path}}/logs/
If scripts exist, read them to understand what verification was attempted:
cat {{workspace_path}}/scripts/verify_secret.py
Look for:
Check the actual output of any verification scripts:
cat {{workspace_path}}/logs/test_results.json
Compare the log content against what the report claims. Key questions:
If scripts exist and appear safe to run:
cd {{workspace_path}}/scripts
source venv/bin/activate # if venv exists
python verify_secret.py
Compare the new results against the report's claims.
If the report cites specific code:
grep -r "pattern" {{workspace_path}}/repo/
Verify the cited code exists and says what the report claims.
Rate the analysis based on:
| Criterion | Strong | Weak |
|---|---|---|
| Scripts present | Yes, clear verification logic | None or trivial |
| Logs present | Detailed output with timestamps | None or empty |
| Secret tested | Actually hit external API | Only checked syntax |
| Error handling | Distinguishes auth fail vs network | Generic errors |
| Output matches | Logs match report claims | Discrepancies |
scripts/
is empty or logs/ has no output