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