@bramkortooms/sectester-scan
Version:
The package defines a simple public API to manage scans and their expectations.
14 lines (13 loc) • 369 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;
}