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.4 KiB

API Reference: Performing Cloud Forensics Investigation

AWS CloudTrail API (boto3)

Method Description
cloudtrail.lookup_events(StartTime, EndTime) Query management events by time window
cloudtrail.get_trail_status(Name) Check if trail is actively logging
cloudtrail.describe_trails() List configured CloudTrail trails

AWS EC2 API (Forensic Snapshots)

Method Description
ec2.describe_instances(InstanceIds) Get instance details and EBS mappings
ec2.create_snapshot(VolumeId, Description) Create forensic snapshot of EBS volume
ec2.copy_snapshot(SourceSnapshotId, SourceRegion) Copy snapshot cross-region for preservation
ec2.describe_snapshots(SnapshotIds) Check snapshot completion status

AWS IAM API

Method Description
iam.list_access_keys(UserName) List access keys for investigation target
iam.get_access_key_last_used(AccessKeyId) Determine last key usage
iam.list_attached_user_policies(UserName) List policies attached to user

AWS S3 API (Log Collection)

Method Description
s3.list_objects_v2(Bucket, Prefix) List CloudTrail log files in S3
s3.get_object(Bucket, Key) Download specific log file

Key Libraries

  • boto3 (pip install boto3): AWS SDK for CloudTrail, EC2, IAM, and S3 APIs
  • botocore: Exception handling for AWS API errors
  • json (stdlib): Parse CloudTrail event JSON payloads

Configuration

Variable Description
AWS_PROFILE AWS CLI profile with forensic investigation permissions
AWS_DEFAULT_REGION Default region for API calls
CloudTrail S3 Bucket Bucket containing CloudTrail log archives

Required IAM Permissions

Permission Purpose
cloudtrail:LookupEvents Query CloudTrail events
ec2:DescribeInstances Identify volumes for snapshots
ec2:CreateSnapshot Create forensic disk snapshots
iam:List* Enumerate IAM configuration
s3:GetObject Download archived CloudTrail logs

References