nexus-agents - v2.80.0
    Preparing search index...

    Interface SanitizationEvent

    Input sanitization result.

    interface SanitizationEvent {
        id: string;
        timestamp: string;
        component: string;
        type: "sanitization";
        source: string;
        wasModified: boolean;
        strippedCount: number;
        injectionFlagCount: number;
        strippedElements: readonly StrippedElementSummary[];
    }

    Hierarchy

    • AuditEventBase
      • SanitizationEvent
    Index

    Properties

    id: string
    timestamp: string
    component: string
    type: "sanitization"
    source: string
    wasModified: boolean
    strippedCount: number
    injectionFlagCount: number
    strippedElements: readonly StrippedElementSummary[]

    Per-element tag/reason details, truncated to at most MAX_STRIPPED_ELEMENTS_PER_EVENT entries. Required by CLAUDE.md's Untrusted Input Policy: "Log stripped elements for audit trail."