Files
DECNET/decnet_web/src/components/Bounty.tsx
anti fbc9877ef2 fix(ui): follow-up polish — icons, dashboard bar, filter redesign, bounty/creds sort
- Dashboard: fix invisible bar at bottom of LIVE FEED by constraining
  max-height on the section instead of the inner container; same fix
  for side panels
- Page icons: add violet-accent icon beside h1 on all 9 missing pages
  (CanaryTokens, RealismConfig, SyntheticFiles, PersonaGeneration,
  Attackers, Webhooks, LiveLogs, Topologies, DecoyFleet)
- Attackers filter chips: replace ad-hoc chip buttons with seg-group
  tabs (ALL / ACTIVE N / PASSIVE N / INACTIVE N) matching Credential
  Vault style; country chips use same seg-group treatment
- Credential Vault: add sortable headers to REUSE tab (LAST SEEN,
  PRINCIPAL, KIND, TARGETS, ATTEMPTS); reuses same SortTh pattern
- Bounty: remove CREDENTIALS and PAYLOADS tabs; keep ALL, ARTIFACTS,
  FINGERPRINTS; add EMAIL (artifact subtype, filtered client-side)
2026-04-30 00:20:25 -04:00

332 lines
13 KiB
TypeScript

import React, { useEffect, useMemo, useRef, useState } from 'react';
import { useSearchParams, useNavigate } from 'react-router-dom';
import {
Archive, Search, ChevronLeft, ChevronRight, Filter, Key, Package, ChevronRight as ChevR,
Target, FileText, Mail,
} from '../icons';
import api from '../utils/api';
import BountyInspector from './BountyInspector';
import EmptyState from './EmptyState/EmptyState';
import { useFocusSearch } from '../hooks/useFocusSearch';
import './Dashboard.css';
import './Bounty.css';
interface BountyEntry {
id: number;
timestamp: string;
decky: string;
service: string;
attacker_ip: string;
bounty_type: string;
payload: any;
}
const FINGERPRINT_LABELS: Record<string, string> = {
fingerprint_type: 'TYPE', ja3: 'JA3', ja3s: 'JA3S', ja4: 'JA4', ja4s: 'JA4S', ja4l: 'JA4L',
sni: 'SNI', alpn: 'ALPN', dst_port: 'PORT', mechanisms: 'MECHANISM', raw_ciphers: 'CIPHERS',
hash: 'HASH', target_ip: 'TARGET', target_port: 'PORT', ssh_banner: 'BANNER',
kex_algorithms: 'KEX', encryption_s2c: 'ENC (S→C)', mac_s2c: 'MAC (S→C)',
compression_s2c: 'COMP (S→C)', raw: 'RAW', ttl: 'TTL', window_size: 'WINDOW', df_bit: 'DF',
mss: 'MSS', window_scale: 'WSCALE', sack_ok: 'SACK', timestamp: 'TS', options_order: 'OPTS ORDER',
};
const FingerprintPreview: React.FC<{ payload: any }> = ({ payload }) => {
if (!payload || typeof payload !== 'object') {
return <span className="data-preview">{JSON.stringify(payload)}</span>;
}
const keys = Object.keys(payload);
const priority = ['fingerprint_type', 'ja3', 'ja4', 'hash', 'sni', 'target_ip', 'ssh_banner'];
const show = priority.filter(k => payload[k] !== undefined && payload[k] !== null).slice(0, 2);
if (!show.length) {
return <span className="data-preview">{keys.slice(0, 3).join(', ')}</span>;
}
return (
<span className="data-preview">
{show.map(k => `${FINGERPRINT_LABELS[k] || k.toUpperCase()}: ${payload[k]}`).join(' · ')}
</span>
);
};
const Bounty: React.FC = () => {
const navigate = useNavigate();
const [searchParams, setSearchParams] = useSearchParams();
const query = searchParams.get('q') || '';
const typeFilter = searchParams.get('type') || '';
const page = parseInt(searchParams.get('page') || '1');
const [bounties, setBounties] = useState<BountyEntry[]>([]);
const [total, setTotal] = useState(0);
const [loading, setLoading] = useState(true);
const [searchInput, setSearchInput] = useState(query);
const searchRef = useRef<HTMLInputElement | null>(null);
useFocusSearch(searchRef);
const [selected, setSelected] = useState<BountyEntry | null>(null);
const [sortCol, setSortCol] = useState<string>('');
const [sortDir, setSortDir] = useState<'asc' | 'desc'>('asc');
const limit = 50;
const fetchBounties = async () => {
setLoading(true);
try {
const offset = (page - 1) * limit;
let url = `/bounty?limit=${limit}&offset=${offset}`;
if (query) url += `&search=${encodeURIComponent(query)}`;
const apiType = typeFilter === 'mail' ? 'artifact' : typeFilter;
if (apiType) url += `&bounty_type=${apiType}`;
const res = await api.get(url);
setBounties(res.data.data);
setTotal(res.data.total);
} catch (err) {
console.error('Failed to fetch bounties', err);
} finally {
setLoading(false);
}
};
useEffect(() => { fetchBounties(); }, [query, typeFilter, page]);
const handleSearch = (e: React.FormEvent) => {
e.preventDefault();
setSearchParams({ q: searchInput, type: typeFilter, page: '1' });
};
const setPage = (p: number) => setSearchParams({ q: query, type: typeFilter, page: p.toString() });
const setType = (t: string) => setSearchParams({ q: query, type: t, page: '1' });
const totalPages = Math.max(1, Math.ceil(total / limit));
const fpCount = bounties.filter(b => b.bounty_type === 'fingerprint').length;
const artCount = bounties.filter(b => b.bounty_type === 'artifact' && b.payload?.kind !== 'mail').length;
const mailCount = bounties.filter(b => b.bounty_type === 'artifact' && b.payload?.kind === 'mail').length;
const handleSortCol = (col: string) => {
if (sortCol === col) {
if (sortDir === 'asc') setSortDir('desc');
else { setSortCol(''); setSortDir('asc'); }
} else {
setSortCol(col);
setSortDir('asc');
}
};
const filteredBounties = useMemo(() => {
if (typeFilter !== 'mail') return bounties;
return bounties.filter(b => b.bounty_type === 'artifact' && b.payload?.kind === 'mail');
}, [bounties, typeFilter]);
const sortedBounties = useMemo(() => {
if (!sortCol) return filteredBounties;
return [...filteredBounties].sort((a, b) => {
let av: string | number = '';
let bv: string | number = '';
if (sortCol === 'time') { av = a.timestamp; bv = b.timestamp; }
else if (sortCol === 'decky') { av = a.decky; bv = b.decky; }
else if (sortCol === 'svc') { av = a.service; bv = b.service; }
else if (sortCol === 'attacker') { av = a.attacker_ip; bv = b.attacker_ip; }
else if (sortCol === 'type') { av = a.bounty_type; bv = b.bounty_type; }
const cmp = String(av).localeCompare(String(bv));
return sortDir === 'asc' ? cmp : -cmp;
});
}, [filteredBounties, sortCol, sortDir]);
const SortTh: React.FC<{ col: string; children: React.ReactNode }> = ({ col, children }) => (
<th
style={{ cursor: 'pointer', userSelect: 'none', whiteSpace: 'nowrap' }}
onClick={() => handleSortCol(col)}
>
{children}
{sortCol === col ? (sortDir === 'asc' ? ' ▲' : ' ▼') : ''}
</th>
);
const SEGMENTS: [string, string][] = [
['', 'ALL'],
['artifact', 'ARTIFACTS'],
['fingerprint', 'FINGERPRINTS'],
['mail', 'EMAIL'],
];
const formatBytes = (n: any): string => {
const v = typeof n === 'string' ? parseInt(n, 10) : n;
if (!Number.isFinite(v) || v < 0) return '';
if (v < 1024) return `${v} B`;
if (v < 1024 * 1024) return `${(v / 1024).toFixed(1)} KB`;
return `${(v / (1024 * 1024)).toFixed(1)} MB`;
};
return (
<div className="bounty-root">
<div className="page-header">
<div className="page-title-group">
<div style={{ display: 'flex', alignItems: 'center', gap: 12 }}>
<Archive size={22} className="violet-accent" />
<h1>BOUNTY VAULT</h1>
</div>
<span className="page-sub">
{total.toLocaleString()} BOUNTIES · {artCount} ARTIFACTS · {fpCount} FINGERPRINTS · {mailCount} EMAIL
</span>
</div>
</div>
<form className="controls-row" onSubmit={handleSearch}>
<div className="search-container">
<Search size={14} className="search-icon" />
<input
ref={searchRef}
type="text"
placeholder="Filter by IP, decky, payload..."
value={searchInput}
onChange={(e) => setSearchInput(e.target.value)}
/>
</div>
<div className="seg-group" role="tablist">
{SEGMENTS.map(([v, l]) => (
<button
key={v || 'all'}
type="button"
className={typeFilter === v ? 'active' : ''}
onClick={() => setType(v)}
>
{l}
</button>
))}
</div>
</form>
<div className="logs-section">
<div className="section-header">
<div className="section-title">
<Filter size={14} />
<span>{total.toLocaleString()} ARTIFACTS CAPTURED</span>
</div>
<div className="section-actions">
<div className="pager">
<span className="dim">Page {page} of {totalPages}</span>
<button disabled={page <= 1} onClick={() => setPage(page - 1)} aria-label="Previous page">
<ChevronLeft size={14} />
</button>
<button disabled={page >= totalPages} onClick={() => setPage(page + 1)} aria-label="Next page">
<ChevronRight size={14} />
</button>
</div>
</div>
</div>
<div className="logs-table-container">
<table className="logs-table">
<thead>
<tr>
<SortTh col="time">TIME</SortTh>
<SortTh col="decky">DECKY</SortTh>
<SortTh col="svc">SVC</SortTh>
<SortTh col="attacker">ATTACKER</SortTh>
<SortTh col="type">TYPE</SortTh>
<th>DATA</th>
<th></th>
</tr>
</thead>
<tbody>
{sortedBounties.length > 0 ? sortedBounties.map(b => {
const isCred = b.bounty_type === 'credential';
const isFp = b.bounty_type === 'fingerprint';
const isArt = b.bounty_type === 'artifact';
const isMail = isArt && b.payload?.kind === 'mail';
const Icon = isCred ? Key : isMail ? Mail : isArt ? FileText : Package;
return (
<tr key={b.id} className="clickable" onClick={() => setSelected(b)}>
<td className="dim" style={{ fontSize: '0.72rem', whiteSpace: 'nowrap' }}>
{new Date(b.timestamp).toLocaleTimeString()}
</td>
<td className="violet-accent">{b.decky}</td>
<td><span className="chip dim-chip">{b.service}</span></td>
<td>
<span
className="matrix-text attacker-link"
onClick={(e) => { e.stopPropagation(); navigate(`/attackers?q=${encodeURIComponent(b.attacker_ip)}`); }}
>
{b.attacker_ip}
</span>
</td>
<td>
<span className={`chip ${isCred ? 'matrix' : 'violet'}`}>
<Icon size={9} style={{ marginRight: 4 }} />
{b.bounty_type.toUpperCase()}
</span>
</td>
<td>
{isCred ? (
<div className="cred-inline">
<span><span className="k-small">user:</span>{b.payload?.username ?? '—'}</span>
<span>
<span className="k-small">pass:</span>
<span className="matrix-text">{b.payload?.password ?? '—'}</span>
</span>
</div>
) : isFp ? (
<FingerprintPreview payload={b.payload} />
) : isMail ? (
<span className="data-preview">
<span className="matrix-text">{b.payload?.subject || '(no subject)'}</span>
{b.payload?.mail_from && (
<span className="dim" style={{ marginLeft: 8 }}>from {b.payload.mail_from}</span>
)}
{b.payload?.attachment_count > 0 && (
<span className="dim" style={{ marginLeft: 8 }}>· {b.payload.attachment_count} attach</span>
)}
{b.payload?.size != null && (
<span className="dim" style={{ marginLeft: 8 }}>· {formatBytes(b.payload.size)}</span>
)}
</span>
) : isArt ? (
<span className="data-preview">
<span className="matrix-text">{b.payload?.orig_path || b.payload?.stored_as || '—'}</span>
{b.payload?.size != null && (
<span className="dim" style={{ marginLeft: 8 }}>{formatBytes(b.payload.size)}</span>
)}
{b.payload?.attribution && (
<span className="dim" style={{ marginLeft: 8 }}>· via {b.payload.attribution}</span>
)}
</span>
) : (
<span className="data-preview">
{b.payload?.query || b.payload?.body || b.payload?.command || JSON.stringify(b.payload)}
</span>
)}
</td>
<td style={{ textAlign: 'right', opacity: 0.4 }}>
<ChevR size={14} />
</td>
</tr>
);
}) : (
<tr>
<td colSpan={7}>
<EmptyState
icon={Target}
title={loading ? 'RETRIEVING ARTIFACTS…' : 'THE VAULT IS EMPTY'}
hint={loading ? undefined : 'attacker-dropped artifacts will land here'}
/>
</td>
</tr>
)}
</tbody>
</table>
</div>
</div>
{selected && (
<BountyInspector
bounty={selected}
onClose={() => setSelected(null)}
onSelectAttacker={(ip) => {
setSelected(null);
navigate(`/attackers?q=${encodeURIComponent(ip)}`);
}}
/>
)}
</div>
);
};
export default Bounty;