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
1.8 KiB
Markdown
61 lines
1.8 KiB
Markdown
# API Reference: Implementing Google Workspace SSO Configuration
|
|
|
|
## SAML 2.0 Endpoints
|
|
|
|
| Endpoint | URL |
|
|
|----------|-----|
|
|
| SP ACS URL | `https://accounts.google.com/samlrp/acs?rpid=RPID` |
|
|
| SP Entity ID | `google.com/a/DOMAIN` |
|
|
| SP Metadata | `https://accounts.google.com/samlrp/metadata?rpid=RPID` |
|
|
|
|
## Admin Console Path
|
|
|
|
```
|
|
Admin Console > Security > Authentication > SSO with third-party IdP
|
|
```
|
|
|
|
## SAML Configuration Fields
|
|
|
|
| Field | Description |
|
|
|-------|-------------|
|
|
| Sign-in page URL | IdP SSO endpoint (HTTPS required) |
|
|
| Sign-out page URL | IdP SLO endpoint |
|
|
| Change password URL | IdP password change page |
|
|
| Verification certificate | IdP X.509 signing cert (PEM, RSA 2048+) |
|
|
| Domain-specific issuer | Use domain in SAML issuer |
|
|
|
|
## Certificate Validation (Python cryptography)
|
|
|
|
```python
|
|
from cryptography import x509
|
|
cert = x509.load_pem_x509_certificate(pem_data)
|
|
print(cert.not_valid_after_utc)
|
|
print(cert.subject.rfc4514_string())
|
|
print(cert.public_key().key_size)
|
|
```
|
|
|
|
## Admin SDK Reports API (Login Activity)
|
|
|
|
```python
|
|
from googleapiclient.discovery import build
|
|
service = build("admin", "reports_v1", credentials=creds)
|
|
activities = service.activities().list(
|
|
userKey="all", applicationName="login",
|
|
eventName="login_success").execute()
|
|
```
|
|
|
|
## Common IdP Providers
|
|
|
|
| IdP | SAML SSO URL Pattern |
|
|
|-----|---------------------|
|
|
| Okta | `https://DOMAIN.okta.com/app/APP_ID/sso/saml` |
|
|
| Azure AD | `https://login.microsoftonline.com/TENANT/saml2` |
|
|
| ADFS | `https://ADFS_HOST/adfs/ls/` |
|
|
| Ping Identity | `https://sso.connect.pingidentity.com/sso/sp/initsso` |
|
|
|
|
### References
|
|
|
|
- Google Workspace SSO: https://support.google.com/a/answer/60224
|
|
- SAML 2.0 Admin Guide: https://support.google.com/a/answer/6349809
|
|
- Admin SDK: https://developers.google.com/admin-sdk/reports/v1/guides/manage-audit-login
|