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

API Reference: Suspicious PowerShell Execution Detection

Windows PowerShell Event Logs

Event IDs

Event ID Log Description
4104 PowerShell/Operational Script block logging
4103 PowerShell/Operational Module logging
800 PowerShell Pipeline execution details
400 PowerShell Engine lifecycle (start)
403 PowerShell Engine lifecycle (stop)

Script Block Logging Query

Get-WinEvent -FilterHashtable @{
    LogName = 'Microsoft-Windows-PowerShell/Operational'
    Id = 4104
} -MaxEvents 100

Event 4104 Properties

Index Field Description
0 MessageNumber Block sequence number
1 MessageTotal Total blocks in script
2 ScriptBlockText Actual script content
3 ScriptBlockId Unique script ID
4 Path Script file path

Suspicious PowerShell Patterns

Execution Policy Bypass

powershell -ExecutionPolicy Bypass -File script.ps1
powershell -ep bypass -nop -w hidden -enc <base64>

Common Obfuscation Techniques

Technique Example
Concatenation "Inv"+"oke-Ex"+"pression"
Variable substitution ${Invoke-Expression}
Encoded commands -enc SQBuAHYAbwBrAGUALQA...
Char array [char[]]@(73,69,88) -join ''

Sigma Detection Rules

Suspicious PowerShell Command Line

title: Suspicious PowerShell Invocation
logsource:
    product: windows
    category: process_creation
detection:
    selection:
        CommandLine|contains:
            - '-enc'
            - '-EncodedCommand'
            - 'FromBase64String'
            - 'DownloadString'
            - 'Invoke-Expression'
    condition: selection
level: high

AMSI (Antimalware Scan Interface)

AMSI Scan Functions

HRESULT AmsiScanBuffer(
    HAMSICONTEXT amsiContext,
    PVOID buffer,
    ULONG length,
    LPCWSTR contentName,
    HAMSISESSION amsiSession,
    AMSI_RESULT *result
);

AMSI Results

Value Meaning
0 Clean
1 Not Detected
16384 Blocked by admin
32768 Detected (malware)

Microsoft Defender ATP API

Advanced Hunting Query

POST https://api.security.microsoft.com/api/advancedqueries/run
Authorization: Bearer {token}

{
  "Query": "DeviceProcessEvents | where FileName == 'powershell.exe' | where ProcessCommandLine has_any('encodedcommand','downloadstring','invoke-expression') | project Timestamp, DeviceName, ProcessCommandLine | take 100"
}