Claude 24f816b6a3
Consolidate 22 sibling repos into layered organism structure
Place useful parts of the surrounding repos into sica-fondt by layer, per the
body model (Ada = membrane; brain/endocrine/capabilities/knowledge non-Ada):

- brain/        LLM reasoning + providers (dapr, hermes, MoMoA)
- capabilities/ REPRAG sidecars: hermes tools/skills, dapr tools, parallel
                dispatch, A51 channels, and the OSINT cluster
- knowledge/    LORAG corpus: 754 cyber-skills, agency personas, secure-coding,
                MITRE ATT&CK data
- reference/    defensive threat-reference (C3, shhbruh doc) + AdaYaml parser

License handling: AGPL sources (worldosint, advanced_evolution, mercury,
Reticulum) and GPL DeTTECT are SPEC-only clean-room/port descriptions — no
copyleft code copied. MIT/Apache/data parts copied as working trees.

Safety: shhbruh escape/persistence material and C3 covert-C2 kept as reference
only, not wired into the running organism. See CONSOLIDATION.md.

https://claude.ai/code/session_01UehUqEXXJJCsHoA4voCU5c
2026-06-10 06:53:01 +00:00

34 lines
1.3 KiB
Markdown

# Standards - Web Application Vulnerability Triage
## Primary Standards
### OWASP Risk Rating Methodology
- **URL**: https://owasp.org/www-community/OWASP_Risk_Rating_Methodology
- **Purpose**: Structured approach to evaluating likelihood and impact of web vulnerabilities
### OWASP Top 10 (2021)
- **URL**: https://owasp.org/www-project-top-ten/
- **Categories**: A01 through A10 covering the most critical web application security risks
### OWASP Web Security Testing Guide v4.2
- **URL**: https://owasp.org/www-project-web-security-testing-guide/
- **Relevance**: Manual validation techniques for scanner findings
### CWE/SANS Top 25 Most Dangerous Software Weaknesses
- **URL**: https://cwe.mitre.org/top25/
- **Relevance**: Maps findings to common weakness enumeration for categorization
### CVSS v3.1 / v4.0
- **URL**: https://www.first.org/cvss/
- **Relevance**: Industry standard vulnerability scoring complementing OWASP risk rating
## Scanner References
| Tool | Type | Documentation |
|------|------|---------------|
| OWASP ZAP | DAST | https://www.zaproxy.org/docs/ |
| Burp Suite | DAST | https://portswigger.net/burp/documentation |
| Semgrep | SAST | https://semgrep.dev/docs/ |
| SonarQube | SAST | https://docs.sonarqube.org/ |
| Snyk Code | SAST | https://docs.snyk.io/scan-with-snyk/snyk-code |