fingerprinter-js
Version:
Enterprise-grade browser fingerprinting with 19 collectors and advanced bot detection
19 lines • 572 B
TypeScript
/**
* WebRTC Collector
* Collects WebRTC-related information including local IPs
*/
import { CollectorMetadata, WebRTCData } from "../types";
import { AsyncBaseCollector } from "./base";
/**
* WebRTC Collector
* Can reveal local IP addresses and network topology
*/
export declare class WebRTCCollector extends AsyncBaseCollector<WebRTCData> {
readonly name = "webrtc";
readonly metadata: CollectorMetadata;
isSupported(): boolean;
collect(): Promise<WebRTCData>;
private collectWebRTC;
private hashSDP;
}
//# sourceMappingURL=webrtc.d.ts.map