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

2.3 KiB

API Reference: Implementing AWS Security Hub

Libraries

boto3 -- AWS Security Hub

Key Methods

Method Description
enable_security_hub() Activate Security Hub in an account
batch_enable_standards() Enable compliance standards (CIS, FSBP, PCI)
get_enabled_standards() List enabled standards and their status
get_findings() Retrieve security findings with filters
batch_update_findings() Update finding status (resolve, suppress)
batch_import_findings() Import custom findings in ASFF format
create_insight() Create custom aggregation insight
create_finding_aggregator() Enable cross-region finding aggregation
enable_organization_admin_account() Designate delegated admin
update_organization_configuration() Auto-enable for org members
create_action_target() Create custom remediation action

Standard ARNs

Standard ARN Pattern
CIS v5.0 arn:aws:securityhub:::ruleset/cis-aws-foundations-benchmark/v/5.0.0
FSBP v1.0 arn:aws:securityhub:{region}::standards/aws-foundational-security-best-practices/v/1.0.0
PCI DSS 3.2.1 arn:aws:securityhub:{region}::standards/pci-dss/v/3.2.1
NIST 800-53 r5 arn:aws:securityhub:{region}::standards/nist-800-53/v/5.0.0

ASFF Finding Format (Key Fields)

  • SchemaVersion: "2018-10-08"
  • Id: Unique finding identifier
  • ProductArn: Source product ARN
  • Severity.Label: CRITICAL, HIGH, MEDIUM, LOW, INFORMATIONAL
  • Compliance.Status: PASSED, FAILED, WARNING, NOT_AVAILABLE
  • Resources[]: Affected AWS resources
  • Workflow.Status: NEW, NOTIFIED, RESOLVED, SUPPRESSED

EventBridge Integration

  • Source: aws.securityhub
  • Detail type: Security Hub Findings - Imported
  • Filter by: Severity.Label, Compliance.Status, GeneratorId

External References