The inspector was dumping the whole `CMD uid=0 user=root src=… pwd=…
cmd=nmap -p- 192.168.1.0/24` syslog body into a single ``command_text``
blob. ANTI: "I'd like to separate the fields." Done — three layers
work together:
1. Collector session aggregator: new `_parse_cmd_msg` splits the bash
PROMPT_COMMAND msg into `{uid, user, src, pwd, command}`. The
session-ended envelope's per-command dict now carries the
structured fields, with `command_text` set to just the cmd= value
(preserving embedded whitespace — `nmap -p- 1.2.3.0/24` etc.).
2. Rule engine: per-source_kind auxiliary evidence list
(`_AUX_EVIDENCE_FIELDS`). For `command` events the engine
automatically promotes uid/user/src/pwd into the persisted
`evidence` dict on top of the rule's explicit `evidence_fields`.
Engine-controlled, not per-rule — adding a new aux field is one
line here, not a 30-rule YAML sweep, and rule authors can't
accidentally drop it.
3. TTPInspector frontend: evidence renders as a structured
`kvs` grid (UID / USER / SRC / PWD / CMD rows) instead of
pretty-printed JSON. Primary-order list keeps shell fields at
the top; everything else falls below alphabetically so unfamiliar
evidence shapes still surface predictably.
Tests:
- session_aggregator pins the structured-fields emit (uid/user/src/
pwd/command_text without "CMD" prefix, embedded whitespace
preserved).
- rule_engine_tagger pins the aux-field auto-promotion + the
no-`None`-leakage path when payload doesn't carry an aux key.
261 lines
8.2 KiB
TypeScript
261 lines
8.2 KiB
TypeScript
import React, { useEffect, useRef, useState } from 'react';
|
|
import { X, Crosshair } from '../icons';
|
|
import api from '../utils/api';
|
|
import { useEscapeKey } from '../hooks/useEscapeKey';
|
|
import { useFocusTrap } from '../hooks/useFocusTrap';
|
|
import './TTPInspector.css';
|
|
|
|
/*
|
|
* TTPInspector — sidebar that explains *why* the rule engine flagged a
|
|
* technique. Renders one card per `ttp_tag` row hitting the
|
|
* (scope, uuid, technique_id, sub_technique_id?) selector, including
|
|
* the rule_id, source_kind / source_id, confidence, and the persisted
|
|
* `evidence` JSON the engine attached at fire time.
|
|
*
|
|
* Click target is :class:`TechniqueBar` in TTPsObservedSection. Drawer
|
|
* geometry mirrors CredentialReuseInspector / BountyInspector.
|
|
*/
|
|
|
|
export interface TTPTagDetailRow {
|
|
uuid: string;
|
|
source_kind: string;
|
|
source_id: string;
|
|
attacker_uuid: string | null;
|
|
identity_uuid: string | null;
|
|
session_id: string | null;
|
|
decky_id: string | null;
|
|
tactic: string;
|
|
technique_id: string;
|
|
technique_name: string | null;
|
|
sub_technique_id: string | null;
|
|
sub_technique_name: string | null;
|
|
confidence: number;
|
|
rule_id: string;
|
|
rule_version: number;
|
|
evidence: Record<string, unknown>;
|
|
attack_release: string;
|
|
created_at: string;
|
|
}
|
|
|
|
export type TTPInspectorScope = 'identity' | 'attacker' | 'session';
|
|
|
|
interface Props {
|
|
scope: TTPInspectorScope;
|
|
uuid: string;
|
|
techniqueId: string;
|
|
subTechniqueId: string | null;
|
|
techniqueName: string | null;
|
|
subTechniqueName: string | null;
|
|
tactic: string;
|
|
count: number;
|
|
confidenceMax: number;
|
|
onClose: () => void;
|
|
}
|
|
|
|
const TTPInspector: React.FC<Props> = ({
|
|
scope, uuid, techniqueId, subTechniqueId, techniqueName, subTechniqueName,
|
|
tactic, count, confidenceMax, onClose,
|
|
}) => {
|
|
const panelRef = useRef<HTMLDivElement | null>(null);
|
|
useEscapeKey(onClose, true);
|
|
useFocusTrap(panelRef, true);
|
|
useEffect(() => {
|
|
const prev = document.body.style.overflow;
|
|
document.body.style.overflow = 'hidden';
|
|
return () => { document.body.style.overflow = prev; };
|
|
}, []);
|
|
|
|
const [rows, setRows] = useState<TTPTagDetailRow[]>([]);
|
|
const [loaded, setLoaded] = useState(false);
|
|
const [error, setError] = useState<string | null>(null);
|
|
|
|
useEffect(() => {
|
|
let cancelled = false;
|
|
const fetch = async () => {
|
|
try {
|
|
const params: Record<string, string> = {};
|
|
if (subTechniqueId) params.sub_technique_id = subTechniqueId;
|
|
const path = `/ttp/tags/by-${scope}/${uuid}/${techniqueId}`;
|
|
const res = await api.get(path, { params });
|
|
if (cancelled) return;
|
|
setRows(Array.isArray(res.data) ? res.data : []);
|
|
setError(null);
|
|
} catch (err: any) {
|
|
if (cancelled) return;
|
|
setRows([]);
|
|
setError(
|
|
err?.response?.status === 403 ? 'Insufficient role for tag detail.' :
|
|
'Failed to load tag detail.',
|
|
);
|
|
} finally {
|
|
if (!cancelled) setLoaded(true);
|
|
}
|
|
};
|
|
fetch();
|
|
return () => { cancelled = true; };
|
|
}, [scope, uuid, techniqueId, subTechniqueId]);
|
|
|
|
const id = subTechniqueId ?? techniqueId;
|
|
const name = subTechniqueName ?? techniqueName;
|
|
const headerLabel = name ? `${id} — ${name}` : id;
|
|
|
|
return (
|
|
<div
|
|
className="ttp-drawer-backdrop"
|
|
onClick={(e) => { if (e.target === e.currentTarget) onClose(); }}
|
|
>
|
|
<div className="ttp-drawer" ref={panelRef}>
|
|
<div className="bd-head">
|
|
<h3>
|
|
<Crosshair size={14} />
|
|
<span>{headerLabel}</span>
|
|
</h3>
|
|
<button className="close-btn" onClick={onClose} aria-label="Close">
|
|
<X size={16} />
|
|
</button>
|
|
</div>
|
|
<div className="bd-body">
|
|
<div className="ttp-meta" style={{
|
|
gridTemplateColumns: '110px 1fr',
|
|
display: 'grid',
|
|
gap: '4px 12px',
|
|
fontSize: '0.75rem',
|
|
}}>
|
|
<div className="k" style={{ color: 'var(--dim-color)' }}>TACTIC</div>
|
|
<div className="v">{tactic}</div>
|
|
<div className="k" style={{ color: 'var(--dim-color)' }}>TECHNIQUE</div>
|
|
<div className="v">
|
|
{techniqueId}{techniqueName ? ` — ${techniqueName}` : ''}
|
|
{subTechniqueId && (
|
|
<div style={{ marginTop: 2 }}>
|
|
↳ {subTechniqueId}{subTechniqueName ? ` — ${subTechniqueName}` : ''}
|
|
</div>
|
|
)}
|
|
</div>
|
|
<div className="k" style={{ color: 'var(--dim-color)' }}>FIRES</div>
|
|
<div className="v">{count}</div>
|
|
<div className="k" style={{ color: 'var(--dim-color)' }}>MAX CONF</div>
|
|
<div className="v">{confidenceMax.toFixed(2)}</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div className="type-label">EVIDENCE</div>
|
|
{!loaded ? null : error ? (
|
|
<div className="ttp-empty">{error}</div>
|
|
) : rows.length === 0 ? (
|
|
<div className="ttp-empty">No tag rows in scope.</div>
|
|
) : (
|
|
<div style={{ display: 'flex', flexDirection: 'column', gap: 10 }}>
|
|
{rows.map((row) => (
|
|
<TTPTagCard key={row.uuid} row={row} />
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
// Evidence keys we promote to the top of the per-card key/value
|
|
// table for shell-command tags. Order matters — these render in
|
|
// the listed order; everything else goes after, alphabetically.
|
|
const _EVIDENCE_PRIMARY_ORDER = [
|
|
'uid', 'user', 'src', 'pwd', 'cmd', 'command', 'command_text',
|
|
];
|
|
|
|
const _EVIDENCE_LABEL: Record<string, string> = {
|
|
uid: 'UID',
|
|
user: 'USER',
|
|
src: 'SRC',
|
|
pwd: 'PWD',
|
|
cmd: 'CMD',
|
|
command: 'CMD',
|
|
command_text: 'CMD',
|
|
};
|
|
|
|
interface EvidenceRow {
|
|
key: string;
|
|
label: string;
|
|
value: string;
|
|
}
|
|
|
|
function flattenEvidence(evidence: Record<string, unknown>): EvidenceRow[] {
|
|
const seen = new Set<string>();
|
|
const rows: EvidenceRow[] = [];
|
|
const stringify = (v: unknown): string => {
|
|
if (v === null || v === undefined) return '—';
|
|
if (typeof v === 'string') return v;
|
|
if (typeof v === 'number' || typeof v === 'boolean') return String(v);
|
|
return JSON.stringify(v);
|
|
};
|
|
for (const k of _EVIDENCE_PRIMARY_ORDER) {
|
|
if (k in evidence && !seen.has(k)) {
|
|
seen.add(k);
|
|
rows.push({
|
|
key: k,
|
|
label: _EVIDENCE_LABEL[k] ?? k.toUpperCase(),
|
|
value: stringify(evidence[k]),
|
|
});
|
|
}
|
|
}
|
|
const remaining = Object.keys(evidence)
|
|
.filter((k) => !seen.has(k))
|
|
.sort();
|
|
for (const k of remaining) {
|
|
rows.push({
|
|
key: k,
|
|
label: _EVIDENCE_LABEL[k] ?? k.toUpperCase(),
|
|
value: stringify(evidence[k]),
|
|
});
|
|
}
|
|
return rows;
|
|
}
|
|
|
|
const TTPTagCard: React.FC<{ row: TTPTagDetailRow }> = ({ row }) => {
|
|
const evidenceRows = flattenEvidence(row.evidence ?? {});
|
|
return (
|
|
<div className="ttp-tag-card">
|
|
<div className="ttp-card-head">
|
|
<span className="ttp-rule-id">{row.rule_id} v{row.rule_version}</span>
|
|
<span className="ttp-confidence">conf {row.confidence.toFixed(2)}</span>
|
|
</div>
|
|
<div className="ttp-meta">
|
|
<div className="k">SOURCE</div>
|
|
<div className="v">{row.source_kind} / {row.source_id}</div>
|
|
{row.session_id && (
|
|
<>
|
|
<div className="k">SESSION</div>
|
|
<div className="v">{row.session_id}</div>
|
|
</>
|
|
)}
|
|
{row.decky_id && (
|
|
<>
|
|
<div className="k">DECKY</div>
|
|
<div className="v">{row.decky_id}</div>
|
|
</>
|
|
)}
|
|
<div className="k">SEEN</div>
|
|
<div className="v">{new Date(row.created_at).toLocaleString()}</div>
|
|
<div className="k">ATT&CK</div>
|
|
<div className="v">{row.attack_release}</div>
|
|
</div>
|
|
{evidenceRows.length === 0 ? (
|
|
<div className="ttp-empty" style={{ padding: '8px' }}>—</div>
|
|
) : (
|
|
<div className="ttp-evidence-kvs">
|
|
{evidenceRows.map((r) => (
|
|
<React.Fragment key={r.key}>
|
|
<div className="ttp-evidence-k">{r.label}</div>
|
|
<div className="ttp-evidence-v">{r.value}</div>
|
|
</React.Fragment>
|
|
))}
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default TTPInspector;
|