mirror of
https://github.com/SHOGGOTH-SECTOR/sica-fondt.git
synced 2026-08-01 08:30:20 +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
43 lines
1.5 KiB
Markdown
43 lines
1.5 KiB
Markdown
# Windows Event Logging for Detection — API Reference
|
|
|
|
## Key PowerShell Cmdlets
|
|
|
|
| Cmdlet | Description |
|
|
|--------|-------------|
|
|
| `auditpol /get /category:*` | View advanced audit policy |
|
|
| `auditpol /set /subcategory:"Process Creation" /success:enable` | Enable audit subcategory |
|
|
| `Get-WinEvent -ListLog *` | List available event logs |
|
|
| `wevtutil sl Security /ms:1073741824` | Set Security log max size to 1 GB |
|
|
|
|
## Critical Event IDs for Detection
|
|
|
|
| Event ID | Log | Description |
|
|
|----------|-----|-------------|
|
|
| 4624/4625 | Security | Successful/failed logon |
|
|
| 4662 | Security | Directory service object access |
|
|
| 4688 | Security | Process creation (with command line) |
|
|
| 4698 | Security | Scheduled task created |
|
|
| 4720 | Security | User account created |
|
|
| 4732 | Security | Member added to security group |
|
|
| 4768/4769 | Security | Kerberos TGT/service ticket |
|
|
| 1 | Sysmon | Process creation with hashes |
|
|
| 3 | Sysmon | Network connection |
|
|
| 7 | Sysmon | Image loaded (DLL) |
|
|
| 11 | Sysmon | File creation |
|
|
| 4104 | PowerShell | Script block logging |
|
|
|
|
## Recommended Log Sizes
|
|
|
|
| Log | Minimum Size |
|
|
|-----|-------------|
|
|
| Security | 1 GB |
|
|
| Sysmon/Operational | 512 MB |
|
|
| PowerShell/Operational | 256 MB |
|
|
| System | 256 MB |
|
|
|
|
## External References
|
|
|
|
- [Microsoft Audit Policy](https://learn.microsoft.com/en-us/windows/security/threat-protection/auditing/advanced-security-auditing)
|
|
- [Sysmon Configuration](https://github.com/SwiftOnSecurity/sysmon-config)
|
|
- [MITRE ATT&CK Data Sources](https://attack.mitre.org/datasources/)
|