mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +00:00
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
47 lines
1.8 KiB
Markdown
47 lines
1.8 KiB
Markdown
# Standards Reference: IaC Security Scanning
|
|
|
|
## CIS Cloud Benchmarks
|
|
|
|
### CIS AWS Foundations Benchmark v3.0
|
|
- Maps directly to Checkov CKV_AWS_* checks
|
|
- Covers IAM, logging, monitoring, networking, and storage security
|
|
- Automated scanning validates 100+ benchmark controls
|
|
|
|
### CIS Azure Foundations Benchmark v2.1
|
|
- Maps to Checkov CKV_AZURE_* checks
|
|
- Covers identity, security center, storage, database, and network controls
|
|
|
|
### CIS GCP Foundations Benchmark v2.0
|
|
- Maps to Checkov CKV_GCP_* checks
|
|
- Covers IAM, logging, networking, VM, storage, and database controls
|
|
|
|
## NIST SP 800-53 Mapping
|
|
|
|
| NIST Control | IaC Check | Checkov ID |
|
|
|-------------|-----------|------------|
|
|
| AC-3 Access Enforcement | S3 bucket public access | CKV_AWS_18, CKV_AWS_20 |
|
|
| AU-2 Audit Events | CloudTrail enabled | CKV_AWS_35 |
|
|
| SC-8 Transmission Confidentiality | HTTPS/TLS enforcement | CKV_AWS_2 |
|
|
| SC-28 Protection at Rest | Encryption at rest | CKV_AWS_19, CKV_AWS_17 |
|
|
| SI-4 System Monitoring | CloudWatch/logging | CKV_AWS_24, CKV_AWS_66 |
|
|
|
|
## OWASP SAMM - Secure Architecture
|
|
|
|
### Security Architecture Level 2
|
|
- Validate infrastructure configurations against security standards before deployment
|
|
- Use automated tools to enforce architecture security requirements
|
|
|
|
### Security Architecture Level 3
|
|
- Custom policies encode organization-specific architecture requirements
|
|
- Continuous validation prevents configuration drift from approved patterns
|
|
|
|
## NIST SSDF (SP 800-218)
|
|
|
|
### PO.1: Define Security Requirements
|
|
- IaC security policies translate security requirements into enforceable checks
|
|
- Custom policies capture organization-specific requirements
|
|
|
|
### PW.5: Configure Software Securely
|
|
- PW.5.1: Configure software to have secure settings by default
|
|
- IaC scanning enforces secure defaults in infrastructure provisioning
|