ソース情報
- リポジトリ
- Wyl-cmd/kxns-cli
- ソースの最終更新活動
- 2026年7月25日 08:23
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Wyl-cmd/kxns-cli --skill cross-wave-delta-analysisコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
SOC 職業分類に基づく
| name | cross-wave-delta-analysis |
| description | Compare recon waves to find NEW, REGRESSED, PERSISTENT findings. |
| version | 1.0.0 |
| author | uphiago |
| license | MIT |
| tags | ["meta","wave","delta","comparison","analysis"] |
| category | meta |
| related_skills | ["recon-playbook","cross-attack-chains","hunt-cors","xmlrpc-exploitation","attack-patterns-reference","parallel-recon-triad"] |
Methodology for comparing findings across multiple recon waves on the same target set. Detects NEW findings, REGRESSIONS (previously open now blocked), PERSISTENT vulnerabilities, and CHANGES over time. Distilled from 9 waves across 7 deep targets that revealed missed CORS findings, new port exposures, and infrastructure drift.
/root/output/recon_us/deep/waveN/./root/output/recon_us/deep/waveN+1/.# Produce a delta report comparing WaveN to WaveN+1
# Read wave outputs, compare per-target, classify findings
| Category | Label | Meaning | Example |
|---|---|---|---|
| NEW | ++ | Finding that didn't exist in any prior wave | Port 3306 (MySQL) now OPEN |
| REGRESSION | -- | Service that was accessible but is now blocked | XMLRPC 200 -> 405 (hardened) |
| PERSISTENT | == | Vulnerability unchanged across all waves | CORS still reflecting since wave6 |
| CHANGE | ~ | Configuration changed but not a regression | WP users: 10 in wave7, 9 in wave9 |
| REVERSED | -> | A regression that was later undone (mitigation removed) | XMLRPC 405 (W9) -> 200 active (W10) |
Reversed findings are regressions that later reverted to the original vulnerable state. This happens when:
Treat REVERSED as actionable: the security team either doesn't know or doesn't care. These targets are high-priority because their protection is unreliable.
| Field | How to Check | What Delta Means |
|---|---|---|
| XMLRPC status | HTTP status of POST /xmlrpc.php | 200 -> 405 = REGRESSION (hardened) |
| CORS headers | ACAO + ACAC on /wp/v2/users | Reflecting -> No headers = REGRESSION |
| WP Users | Count from /wp/v2/users | Count change = CHANGE |
| Open ports | nmap or naabu output | New port = NEW (surface expanded) |
| Subdomains | subfinder output | New subs = NEW |
| Sensitive paths | HTTP status for .env, info.php, etc | Previously 200 -> 403 = REGRESSION |
WAVE_OLD="/root/output/recon_us/deep/wave6"
WAVE_NEW="/root/output/recon_us/deep/wave7"
echo "=== Comparing $WAVE_OLD vs $WAVE_NEW ==="
For each target present in both waves, compare XMLRPC status, CORS headers, open ports, WP users, and subdomains. Flag findings as NEW (not in prior wave), REGRESSION (previously working, now blocked), PERSISTENT (unchanged), or CHANGE (different but not blocked).
Signal critical deltas: new port 3306 (MySQL), new CORS credential reflections, new WP install pages, new subdomains with admin/staging patterns.
| Target | Wave8 State | Wave9 Delta | Category |
|---|---|---|---|
| ecommerce-wine.com | XMLRPC 200 (76 methods) | 200->301 redirect | REGRESSION |
| ecommerce-wine.com | No ports reported | MySQL 3306 + FTP 21 + IMAP 143 OPEN | NEW (6 ports) |
| mattress-retailer.com | NOT documented as CORS target | ALL endpoints reflect | NEW (missed W6-8) |
| realestate-platform.com | CORS known | Exchange OWA + SSH 22 + VPN portal | NEW (10+ subdomains) |
| tools-retailer.com | SliderRev known | CORS on ALL endpoints | NEW (missed W6-8) |
| target-health-saas.com | MySQL 3306 open | Still OPEN (4 waves!) | PERSISTENT |
Key insight: CORS was MISSED on mattress-retailer.com and tools-retailer.com across 3 waves because only /wp/v2/users was tested. Always test ALL endpoints.
attack-patterns-reference — match findings to pattern IDs (P-01 to P-25)recon-playbook — the 4-phase pipeline that produces wave dataparallel-recon-triad — eternal cron orchestration that generates wavescross-attack-chains — chain NEW findings into critical impacthunt-cors — verify CORS findings classificationxmlrpc-exploitation — verify XMLRPC regression status