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
56 lines
1.6 KiB
Markdown
56 lines
1.6 KiB
Markdown
# API Reference: Implementing Just-In-Time Access Provisioning
|
|
|
|
## Azure AD PIM API (JIT for Azure)
|
|
|
|
```python
|
|
import requests
|
|
headers = {"Authorization": "Bearer <token>"}
|
|
# Activate eligible role
|
|
requests.post(
|
|
"https://graph.microsoft.com/v1.0/roleManagement/directory/roleAssignmentScheduleRequests",
|
|
headers=headers,
|
|
json={"action": "selfActivate", "roleDefinitionId": ROLE_ID,
|
|
"directoryScopeId": "/", "justification": "Incident response",
|
|
"scheduleInfo": {"expiration": {"type": "afterDuration", "duration": "PT4H"}}})
|
|
```
|
|
|
|
## JIT Risk-Based Approval
|
|
|
|
| Risk Level | Approval | Max Duration |
|
|
|-----------|----------|-------------|
|
|
| Low | Auto-approve | 4 hours |
|
|
| Medium | Manager | 8 hours |
|
|
| High | Manager + Security | 4 hours |
|
|
| Critical | CISO + Manager + Security | 2 hours |
|
|
|
|
## AWS IAM Access Analyzer
|
|
|
|
```bash
|
|
# Find unused permissions for JIT conversion
|
|
aws accessanalyzer list-findings --analyzer-arn ARN --filter '{"status": {"eq": ["ACTIVE"]}}'
|
|
```
|
|
|
|
## CyberArk PAS REST API (JIT Privileged Access)
|
|
|
|
```bash
|
|
# Request JIT access
|
|
curl -X POST "https://VAULT/PasswordVault/api/MyRequests" \
|
|
-H "Authorization: $TOKEN" \
|
|
-d '{"AccountId": "ACC_ID", "Reason": "Maintenance", "TicketingSystemName": "ServiceNow"}'
|
|
```
|
|
|
|
## Key Metrics
|
|
|
|
| Metric | Target |
|
|
|--------|--------|
|
|
| Avg approval time | < 15 min |
|
|
| Auto-approval rate | 40-60% (low risk) |
|
|
| Standing privilege reduction | > 80% |
|
|
| Expired access auto-revoked | 100% |
|
|
|
|
### References
|
|
|
|
- Azure PIM: https://learn.microsoft.com/en-us/azure/active-directory/privileged-identity-management/
|
|
- CyberArk JIT: https://docs.cyberark.com/
|
|
- NIST 800-53 AC-6: Least Privilege
|