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

API Reference: Implementing Passwordless Auth with Microsoft Entra

Libraries

msal (Microsoft Authentication Library)

  • Install: pip install msal
  • Docs: https://msal-python.readthedocs.io/
  • ConfidentialClientApplication() -- App registration auth
  • acquire_token_for_client() -- Client credentials flow

Microsoft Graph API

Authentication Methods Policy API

Endpoint Description
GET /policies/authenticationMethodsPolicy Full auth methods config
GET /users/{id}/authentication/methods User's registered methods
GET /users/{id}/authentication/fido2Methods FIDO2 keys for user
GET /users/{id}/authentication/microsoftAuthenticatorMethods Authenticator setup
GET /users/{id}/authentication/windowsHelloForBusinessMethods WHfB status

Conditional Access API

Endpoint Description
GET /identity/conditionalAccess/policies List CA policies
GET /identity/conditionalAccess/authenticationStrength/policies Auth strength policies

Sign-In Logs API

Endpoint Description
GET /auditLogs/signIns Sign-in activity logs
Filter: authenticationDetails/any(a:a/authenticationMethod eq 'FIDO2 security key')

Authentication Method Types

  • fido2AuthenticationMethod -- FIDO2 security keys
  • microsoftAuthenticatorAuthenticationMethod -- Authenticator app
  • windowsHelloForBusinessAuthenticationMethod -- Windows Hello
  • passwordAuthenticationMethod -- Traditional password
  • phoneAuthenticationMethod -- SMS/phone call (legacy)
  • emailAuthenticationMethod -- Email OTP

Required Graph Permissions

  • UserAuthenticationMethod.Read.All
  • Policy.Read.All
  • AuditLog.Read.All
  • User.Read.All

External References