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
61 lines
2.3 KiB
Markdown
61 lines
2.3 KiB
Markdown
# SCIM Provisioning Standards Reference
|
|
|
|
## Protocol Standards
|
|
|
|
### RFC 7644 - SCIM Protocol
|
|
- Defines the RESTful API for managing identity resources
|
|
- Specifies HTTP methods, headers, and response formats
|
|
- Mandates JSON as the data interchange format
|
|
- Requires TLS for all communications
|
|
|
|
### RFC 7643 - SCIM Core Schema
|
|
- Defines User, Group, and EnterpriseUser schemas
|
|
- Specifies attribute types: string, boolean, decimal, integer, dateTime, reference, complex, binary
|
|
- Defines mutability: readOnly, readWrite, immutable, writeOnly
|
|
- Specifies attribute uniqueness: none, server, global
|
|
|
|
### RFC 7642 - SCIM Definitions, Overview, Concepts, and Requirements
|
|
- Provides context for the SCIM specification
|
|
- Defines terminology and use cases
|
|
- Outlines design requirements for cross-domain provisioning
|
|
|
|
## Okta SCIM Requirements
|
|
|
|
### Mandatory Endpoints
|
|
| Endpoint | Methods | Purpose |
|
|
|----------|---------|---------|
|
|
| /Users | GET, POST | User listing and creation |
|
|
| /Users/{id} | GET, PUT, PATCH, DELETE | Individual user operations |
|
|
| /Groups | GET, POST | Group listing and creation |
|
|
| /Groups/{id} | GET, PATCH, DELETE | Individual group operations |
|
|
|
|
### Required Filter Support
|
|
- `userName eq "value"` - Exact match on userName
|
|
- `id eq "value"` - Exact match on user ID
|
|
- `displayName eq "value"` - Exact match for groups
|
|
|
|
### Pagination Requirements
|
|
- Support `startIndex` and `count` query parameters
|
|
- Return `totalResults` in ListResponse
|
|
- Default `startIndex` is 1 (1-based indexing)
|
|
- Maximum `count` should be configurable
|
|
|
|
## Compliance Standards
|
|
|
|
### SOC 2 Type II
|
|
- Automated provisioning demonstrates access control effectiveness
|
|
- Deprovisioning within defined SLA shows timely access removal
|
|
- Audit logs of SCIM operations provide evidence for access reviews
|
|
|
|
### ISO 27001 - A.9.2 User Access Management
|
|
- A.9.2.1: User registration and deregistration (automated via SCIM)
|
|
- A.9.2.2: User access provisioning (role-based assignment)
|
|
- A.9.2.5: Review of user access rights (SCIM audit logs)
|
|
- A.9.2.6: Removal of access rights (automated deprovisioning)
|
|
|
|
### NIST SP 800-53 - AC (Access Control)
|
|
- AC-2: Account Management (automated lifecycle)
|
|
- AC-2(1): Automated System Account Management
|
|
- AC-2(4): Automated Audit Actions
|
|
- AC-6: Least Privilege (role-based provisioning)
|