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

API Reference: Auditing Kubernetes Cluster RBAC

kubernetes (Python Client)

Configuration

from kubernetes import client, config

config.load_kube_config()  # From ~/.kube/config
# or
config.load_incluster_config()  # Inside a pod

List ClusterRoles

rbac = client.RbacAuthorizationV1Api()
roles = rbac.list_cluster_role()
for role in roles.items:
    print(role.metadata.name)
    for rule in role.rules or []:
        print(f"  verbs={rule.verbs} resources={rule.resources}")

List ClusterRoleBindings

bindings = rbac.list_cluster_role_binding()
for b in bindings.items:
    print(b.metadata.name, "->", b.role_ref.name)
    for s in b.subjects or []:
        print(f"  {s.kind}: {s.name}")

List Pods (Security Context)

v1 = client.CoreV1Api()
pods = v1.list_pod_for_all_namespaces()
for pod in pods.items:
    for c in pod.spec.containers:
        sc = c.security_context
        if sc and sc.privileged:
            print(f"PRIVILEGED: {pod.metadata.namespace}/{pod.metadata.name}")

Key RBAC Resources

Resource API Description
ClusterRole rbac.list_cluster_role() Cluster-wide permission definitions
ClusterRoleBinding rbac.list_cluster_role_binding() Binds roles to subjects cluster-wide
Role rbac.list_namespaced_role(ns) Namespace-scoped permissions
RoleBinding rbac.list_namespaced_role_binding(ns) Namespace-scoped binding
ServiceAccount v1.list_service_account_for_all_namespaces() Pod identities

Dangerous RBAC Patterns to Detect

Pattern Risk
verbs: ["*"], resources: ["*"] Equivalent to cluster-admin
resources: ["secrets"], verbs: ["get"] Can read all secrets
resources: ["pods/exec"] Can exec into containers
subjects: system:authenticated All users get this role
automountServiceAccountToken: true Token available in pod

References