FP-Devicer - v2.0.2
    Preparing search index...

    Interface FPUserDataSet

    Raw browser fingerprint data collected from a user's device. Encompasses navigator properties, screen metrics, installed plugins, rendering fingerprints, and optional behavioral signals.

    interface FPUserDataSet {
        appCodeName?: string;
        appMinorVersion?: string;
        appName?: string;
        appVersion?: string;
        audio?: string;
        behavioralMetrics?: BehavioralMetrics;
        buildID?: string;
        canvas?: string;
        cookieEnabled?: boolean;
        deviceMemory?: string | number;
        doNotTrack?: string | boolean;
        fonts?: string[];
        hardwareConcurrency?: number;
        highEntropyValues?: {
            architecture?: string;
            bitness?: string;
            brands?: { brand: string; version: string }[];
            mobile?: boolean;
            model?: string;
            platform?: string;
            platformVersion?: string;
            uaFullVersion?: string;
        };
        language?: string;
        languages?: string[];
        mimeTypes?: { description: string; suffixes: string; type: string }[];
        platform?: string;
        plugins?: { description: string; name: string }[];
        product?: string;
        productSub?: string;
        screen?: {
            colorDepth?: number;
            height: number;
            orientation?: { angle: number; type: string };
            pixelDepth?: number;
            width: number;
        };
        timezone?: string;
        userAgent?: string;
        vendor?: string;
        vendorSub?: string;
        webgl?: string;
    }
    Index

    Properties

    appCodeName?: string

    Navigator appCodeName value.

    appMinorVersion?: string

    Legacy browser app minor version when available.

    appName?: string

    Navigator appName value.

    appVersion?: string

    Navigator appVersion value.

    audio?: string

    Audio fingerprint derived from a deterministic render pipeline.

    behavioralMetrics?: BehavioralMetrics

    Optional interactive behavior metrics collected during the session.

    buildID?: string

    Firefox-style build identifier when available.

    canvas?: string

    Canvas rendering fingerprint.

    cookieEnabled?: boolean

    Whether cookies are enabled in the browser.

    deviceMemory?: string | number

    Approximate device memory as reported by client hints or navigator APIs.

    doNotTrack?: string | boolean

    Browser do-not-track preference.

    fonts?: string[]

    Enumerated font family names available to the page.

    hardwareConcurrency?: number

    Number of logical CPU cores reported by the browser.

    highEntropyValues?: {
        architecture?: string;
        bitness?: string;
        brands?: { brand: string; version: string }[];
        mobile?: boolean;
        model?: string;
        platform?: string;
        platformVersion?: string;
        uaFullVersion?: string;
    }

    High-entropy client hints and related browser-identifying signals.

    language?: string

    Primary browser language.

    languages?: string[]

    Ordered browser language preferences.

    mimeTypes?: { description: string; suffixes: string; type: string }[]

    Registered MIME types exposed by the browser plugin system.

    platform?: string

    Navigator platform value.

    plugins?: { description: string; name: string }[]

    Installed browser plugins with names and descriptions.

    product?: string

    Navigator product token.

    productSub?: string

    Navigator productSub token.

    screen?: {
        colorDepth?: number;
        height: number;
        orientation?: { angle: number; type: string };
        pixelDepth?: number;
        width: number;
    }

    Screen geometry and orientation metadata.

    timezone?: string

    IANA time zone or equivalent browser-reported time zone.

    userAgent?: string

    Full browser user-agent string.

    vendor?: string

    Browser vendor string.

    vendorSub?: string

    Browser vendorSub string.

    webgl?: string

    WebGL rendering fingerprint.