@sectester/scan
Version:
The package defines a simple public API to manage scans and their expectations.
16 lines (15 loc) • 442 B
TypeScript
import { AttackParamLocation } from './AttackParamLocation';
import { Test } from './Test';
export interface ScanConfig {
name: string;
projectId: string;
entryPointIds: string[];
tests?: Test[];
poolSize?: number;
requestsRateLimit?: number;
attackParamLocations?: AttackParamLocation[];
repeaters?: string[];
smart?: boolean;
skipStaticParams?: boolean;
starMetadata?: Record<string, unknown>;
}