import { ScannerModule } from '../types'; /** * Clipboard Exfiltration Scanner * * Detects suspicious clipboard read operations followed by network transmission, * which may indicate clipboard data exfiltration. * * Patterns detected: * 1. Browser clipboard API: navigator.clipboard.readText/read * 2. Command-line tools: pbcopy, pbpaste, xclip, xsel * 3. Network transmission: fetch, XMLHttpRequest, axios, http, https * * CRITICAL: Clipboard read directly followed by network send in same scope * HIGH: Clipboard read and network send in same file with suspicious timing * MEDIUM: Clipboard read capability detected with network access */ export declare const clipboardExfiltrationScanner: ScannerModule; //# sourceMappingURL=clipboard-exfiltration-scanner.d.ts.map