/** * Live GCP Verification Engine * * REAL verification against live Google Cloud infrastructure. * Uses actual API calls, real timing measurements, and live configuration checks. * * For authorized red team operations only. */ export interface LiveVerificationResult { id: string; vulnerability: string; verified: boolean; confidence: number; evidence: string[]; rawResponse?: string; timingMs?: number; technique: string; timestamp: string; projectId: string; severity: 'critical' | 'high' | 'medium' | 'low' | 'info'; } export interface GCPConfig { projectId: string; region?: string; accessToken?: string; } /** * Run all live GCP verification tests */ export declare function runLiveGCPVerification(projectId?: string): Promise<{ results: LiveVerificationResult[]; summary: { total: number; verified: number; critical: number; high: number; medium: number; }; }>; export default runLiveGCPVerification; //# sourceMappingURL=liveGCPVerification.d.ts.map