mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-03-22 03:08:23 +00:00
253 lines
5.4 KiB
TypeScript
253 lines
5.4 KiB
TypeScript
/**
|
|
* Attack Paths Feature Types
|
|
* Defines all TypeScript interfaces for the Attack Paths visualization feature
|
|
*/
|
|
|
|
// Scan state constants
|
|
export const SCAN_STATES = {
|
|
AVAILABLE: "available",
|
|
SCHEDULED: "scheduled",
|
|
EXECUTING: "executing",
|
|
COMPLETED: "completed",
|
|
FAILED: "failed",
|
|
} as const;
|
|
|
|
export type ScanState = (typeof SCAN_STATES)[keyof typeof SCAN_STATES];
|
|
|
|
// Attack Path Scan - Relationship Data
|
|
export interface RelationshipData {
|
|
type: string;
|
|
id: string;
|
|
}
|
|
|
|
export interface RelationshipWrapper {
|
|
data: RelationshipData;
|
|
}
|
|
|
|
export interface ScanRelationships {
|
|
provider: RelationshipWrapper;
|
|
scan: RelationshipWrapper;
|
|
task: RelationshipWrapper;
|
|
}
|
|
|
|
// Provider type constants
|
|
export const PROVIDER_TYPES = {
|
|
AWS: "aws",
|
|
AZURE: "azure",
|
|
GCP: "gcp",
|
|
} as const;
|
|
|
|
export type ProviderType = (typeof PROVIDER_TYPES)[keyof typeof PROVIDER_TYPES];
|
|
|
|
// Attack Path Scan Response
|
|
export interface AttackPathScanAttributes {
|
|
state: ScanState;
|
|
progress: number;
|
|
provider_alias: string;
|
|
provider_type: ProviderType;
|
|
provider_uid: string;
|
|
inserted_at: string;
|
|
started_at: string;
|
|
completed_at: string | null;
|
|
duration: number | null;
|
|
}
|
|
|
|
export interface AttackPathScan {
|
|
type: "attack-paths-scans";
|
|
id: string;
|
|
attributes: AttackPathScanAttributes;
|
|
relationships: ScanRelationships;
|
|
}
|
|
|
|
export interface PaginationLinks {
|
|
first: string;
|
|
last: string;
|
|
next: string | null;
|
|
prev: string | null;
|
|
}
|
|
|
|
export interface AttackPathScansResponse {
|
|
data: AttackPathScan[];
|
|
links: PaginationLinks;
|
|
}
|
|
|
|
// Data type constants
|
|
export const DATA_TYPES = {
|
|
STRING: "string",
|
|
NUMBER: "number",
|
|
BOOLEAN: "boolean",
|
|
} as const;
|
|
|
|
type DataType = (typeof DATA_TYPES)[keyof typeof DATA_TYPES];
|
|
|
|
// Query Types
|
|
export interface AttackPathQueryParameter {
|
|
name: string;
|
|
label: string;
|
|
data_type: DataType;
|
|
description: string;
|
|
placeholder?: string;
|
|
required?: boolean;
|
|
}
|
|
|
|
export interface AttackPathQueryAttribution {
|
|
text: string;
|
|
link: string;
|
|
}
|
|
|
|
export interface AttackPathQueryAttributes {
|
|
name: string;
|
|
short_description: string;
|
|
description: string;
|
|
provider: string;
|
|
parameters: AttackPathQueryParameter[];
|
|
attribution: AttackPathQueryAttribution | null;
|
|
}
|
|
|
|
export interface AttackPathQuery {
|
|
type: "attack-paths-scans";
|
|
id: string;
|
|
attributes: AttackPathQueryAttributes;
|
|
}
|
|
|
|
export interface AttackPathQueriesResponse {
|
|
data: AttackPathQuery[];
|
|
}
|
|
|
|
// Graph Data Types
|
|
// Property values from graph nodes can be any primitive type or arrays
|
|
export type GraphNodePropertyValue =
|
|
| string
|
|
| number
|
|
| boolean
|
|
| null
|
|
| undefined
|
|
| string[]
|
|
| number[];
|
|
|
|
export interface GraphNodeProperties {
|
|
[key: string]: GraphNodePropertyValue;
|
|
}
|
|
|
|
export interface GraphNode {
|
|
id: string;
|
|
labels: string[]; // e.g., ["S3Bucket"], ["EC2Instance"], ["ProwlerFinding"]
|
|
properties: GraphNodeProperties;
|
|
findings?: string[]; // IDs of finding nodes connected via HAS_FINDING edges
|
|
resources?: string[]; // IDs of resource nodes connected via HAS_FINDING edges
|
|
}
|
|
|
|
export interface GraphEdge {
|
|
id: string;
|
|
source: string | object;
|
|
target: string | object;
|
|
type: string;
|
|
properties?: GraphNodeProperties;
|
|
}
|
|
|
|
export interface GraphRelationship {
|
|
id: string;
|
|
label: string;
|
|
source: string;
|
|
target: string;
|
|
properties?: GraphNodeProperties;
|
|
}
|
|
|
|
export interface AttackPathGraphData {
|
|
nodes: GraphNode[];
|
|
edges?: GraphEdge[];
|
|
relationships?: GraphRelationship[];
|
|
}
|
|
|
|
export interface QueryResultAttributes {
|
|
nodes: GraphNode[];
|
|
relationships?: GraphRelationship[];
|
|
}
|
|
|
|
export interface QueryResultData {
|
|
type: "attack-paths-query-run-requests";
|
|
id: string | null;
|
|
attributes: QueryResultAttributes;
|
|
}
|
|
|
|
export interface AttackPathQueryResult {
|
|
data: QueryResultData;
|
|
}
|
|
|
|
// Finding severity and status constants
|
|
export const FINDING_SEVERITIES = {
|
|
CRITICAL: "critical",
|
|
HIGH: "high",
|
|
MEDIUM: "medium",
|
|
LOW: "low",
|
|
INFO: "info",
|
|
} as const;
|
|
|
|
type FindingSeverity =
|
|
(typeof FINDING_SEVERITIES)[keyof typeof FINDING_SEVERITIES];
|
|
|
|
export const FINDING_STATUSES = {
|
|
PASS: "PASS",
|
|
FAIL: "FAIL",
|
|
MANUAL: "MANUAL",
|
|
} as const;
|
|
|
|
type FindingStatus = (typeof FINDING_STATUSES)[keyof typeof FINDING_STATUSES];
|
|
|
|
export interface RelatedFinding {
|
|
id: string;
|
|
title: string;
|
|
severity: FindingSeverity;
|
|
status: FindingStatus;
|
|
}
|
|
|
|
// Node Detail Types
|
|
export interface NodeDetailData extends GraphNode {
|
|
relatedFindings?: RelatedFinding[];
|
|
incomingEdges?: GraphEdge[];
|
|
outgoingEdges?: GraphEdge[];
|
|
}
|
|
|
|
// Wizard State Types
|
|
export interface WizardState {
|
|
currentStep: 1 | 2;
|
|
selectedScanId: string | null;
|
|
selectedQuery: string | null;
|
|
queryParameters: Record<string, string | number | boolean>;
|
|
}
|
|
|
|
// Graph State Types
|
|
export interface GraphState {
|
|
data: AttackPathGraphData | null;
|
|
selectedNodeId: string | null;
|
|
loading: boolean;
|
|
error: string | null;
|
|
zoomLevel: number;
|
|
panX: number;
|
|
panY: number;
|
|
}
|
|
|
|
// Provider Integration
|
|
export interface ProviderWithScanStatus {
|
|
id: string;
|
|
alias: string;
|
|
provider: string;
|
|
scan: AttackPathScan;
|
|
connected: boolean;
|
|
}
|
|
|
|
// API Request/Response Helpers
|
|
export interface QueryRequestAttributes {
|
|
id: string;
|
|
parameters?: Record<string, string | number | boolean>;
|
|
}
|
|
|
|
export interface ExecuteQueryRequestData {
|
|
type: "attack-paths-query-run-requests";
|
|
attributes: QueryRequestAttributes;
|
|
}
|
|
|
|
export interface ExecuteQueryRequest {
|
|
data: ExecuteQueryRequestData;
|
|
}
|