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

37 lines
1.3 KiB
Markdown

# Windows Defender Advanced Settings — API Reference
## PowerShell Cmdlets
| Cmdlet | Description |
|--------|-------------|
| `Get-MpComputerStatus` | Defender service status, signature version |
| `Get-MpPreference` | All Defender configuration preferences |
| `Set-MpPreference` | Modify Defender settings |
| `Get-MpThreatDetection` | Recent threat detections |
| `Add-MpPreference -AttackSurfaceReductionRules_Ids` | Enable ASR rules |
## Critical ASR Rule GUIDs
| GUID | Rule |
|------|------|
| `be9ba2d9-53ea-4cdc-84e5-9b1eeee46550` | Block executable from email |
| `d4f940ab-401b-4efc-aadc-ad5f3c50688a` | Block Office child processes |
| `3b576869-a4ec-4529-8536-b80a7769e899` | Block Office executable creation |
| `5beb7efe-fd9a-4556-801d-275e5ffc04cc` | Block obfuscated scripts |
| `56a863a9-875e-4185-98a7-b882c64b5ce5` | Block exploited signed drivers |
## ASR Rule Actions
| Value | Action |
|-------|--------|
| 0 | Disabled |
| 1 | Block |
| 2 | Audit |
| 6 | Warn |
## External References
- [Microsoft ASR Rules Reference](https://learn.microsoft.com/en-us/defender-endpoint/attack-surface-reduction-rules-reference)
- [Defender PowerShell Reference](https://learn.microsoft.com/en-us/powershell/module/defender/)
- [Tamper Protection](https://learn.microsoft.com/en-us/defender-endpoint/prevent-changes-to-security-settings-with-tamper-protection)