-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
42 lines (37 loc) · 866 Bytes
/
Copy pathtypes.ts
File metadata and controls
42 lines (37 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
export interface Message {
role: 'user' | 'assistant' | 'system';
content: string;
timestamp: Date;
metadata?: any;
}
export enum ToolType {
TERMINAL = 'TERMINAL',
OSINT = 'OSINT',
FORENSICS = 'FORENSICS',
NETWORK = 'NETWORK',
DARKWEB = 'DARKWEB',
BIOMETRICS = 'BIOMETRICS'
}
export interface TerminalEntry {
command: string;
output: string;
type: 'cmd' | 'info' | 'error' | 'success';
}
export interface Evidence {
id: string;
title: string;
source: string;
description: string;
type: 'image' | 'text' | 'log' | 'hash';
data: string;
threatLevel: 'low' | 'medium' | 'high' | 'critical';
}
export interface TrafficPacket {
id: string;
timestamp: string;
source: string;
destination: string;
type: 'SYN' | 'ACK' | 'DNS' | 'HTTP' | 'TLS' | 'UDP';
size: string;
status: 'allowed' | 'blocked' | 'suspicious';
}