mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 16:40:24 +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
67 lines
1.9 KiB
Markdown
67 lines
1.9 KiB
Markdown
# API Reference: Auditing Cloud with CIS Benchmarks
|
|
|
|
## boto3 - AWS CIS Checks
|
|
|
|
### IAM Account Summary (Root Keys, MFA)
|
|
|
|
```python
|
|
import boto3
|
|
iam = boto3.client("iam")
|
|
summary = iam.get_account_summary()["SummaryMap"]
|
|
print("Root access keys:", summary["AccountAccessKeysPresent"])
|
|
print("Root MFA:", summary["AccountMFAEnabled"])
|
|
```
|
|
|
|
### Password Policy
|
|
|
|
```python
|
|
policy = iam.get_account_password_policy()["PasswordPolicy"]
|
|
print("Min length:", policy["MinimumPasswordLength"])
|
|
print("Require symbols:", policy["RequireSymbols"])
|
|
```
|
|
|
|
### CloudTrail Multi-Region
|
|
|
|
```python
|
|
ct = boto3.client("cloudtrail")
|
|
trails = ct.describe_trails()["trailList"]
|
|
for t in trails:
|
|
print(t["Name"], "Multi-region:", t["IsMultiRegionTrail"])
|
|
```
|
|
|
|
### VPC Flow Logs
|
|
|
|
```python
|
|
ec2 = boto3.client("ec2")
|
|
vpcs = ec2.describe_vpcs()["Vpcs"]
|
|
flow_logs = ec2.describe_flow_logs()["FlowLogs"]
|
|
logged = {fl["ResourceId"] for fl in flow_logs}
|
|
for vpc in vpcs:
|
|
print(vpc["VpcId"], "Logged:" if vpc["VpcId"] in logged else "MISSING")
|
|
```
|
|
|
|
## CIS Controls Quick Reference
|
|
|
|
| CIS Control | boto3 Method | Check |
|
|
|-------------|-------------|-------|
|
|
| 1.4 Root keys | `iam.get_account_summary()` | `AccountAccessKeysPresent == 0` |
|
|
| 1.5 Root MFA | `iam.get_account_summary()` | `AccountMFAEnabled == 1` |
|
|
| 2.1.1 S3 encryption | `s3.get_bucket_encryption()` | No ClientError |
|
|
| 3.1 CloudTrail | `ct.describe_trails()` | `IsMultiRegionTrail` |
|
|
| 5.1 VPC flow logs | `ec2.describe_flow_logs()` | All VPCs covered |
|
|
| 5.4 Default SG | `ec2.describe_security_groups()` | No 0.0.0.0/0 rules |
|
|
|
|
## Prowler CLI
|
|
|
|
```bash
|
|
prowler aws --compliance cis_5.0_aws --output-formats json,csv
|
|
prowler azure --compliance cis_4.0_azure
|
|
prowler gcp --compliance cis_4.0_gcp
|
|
```
|
|
|
|
### References
|
|
|
|
- boto3: https://boto3.amazonaws.com/v1/documentation/api/latest/
|
|
- CIS Benchmarks: https://www.cisecurity.org/benchmark/amazon_web_services
|
|
- Prowler: https://github.com/prowler-cloud/prowler
|