Wraith Browser

Identity & Fingerprinting

Browser fingerprints, identity profiles, site technology detection, and compatibility status

Identity tools control how Wraith Browser presents itself to websites. You can switch between browser fingerprint profiles, set personal or anonymous identity modes, detect a site's technology stack, and verify your TLS fingerprint matches a real Chrome browser.

Tools

ToolDescriptionKey Parameters
fingerprint_listList available browser fingerprint profiles(none)
fingerprint_importImport a fingerprint profile from a JSON filepath (required)
identity_profileSet browsing identity (personal or anonymous)profile_type (required), name
site_fingerprintDetect a website's technology stackurl
stealth_statusShow current TLS compatibility and compatibility config(none)
tls_verifyVerify TLS fingerprint matches Chrome 136(none)

Examples

Set an anonymous browsing identity

{
  "tool": "identity_profile",
  "arguments": {
    "profile_type": "anonymous"
  }
}

Switches to anonymous mode. Use "personal" with a name parameter when you want to browse as yourself.

Detect a site's technology stack

{
  "tool": "site_fingerprint",
  "arguments": {
    "url": "https://example.com"
  }
}

Returns detected technologies: React, WordPress, Shopify, Next.js, etc. Useful for deciding whether to use the native engine or CDP for JavaScript-heavy frameworks.

Verify TLS compatibility

{
  "tool": "tls_verify",
  "arguments": {}
}

Fetches a TLS fingerprinting service and compares JA3/JA4 hashes, cipher suites, and HTTP/2 SETTINGS against known Chrome 136 values. Returns a detailed pass/fail report. Requires the stealth-tls feature flag.

On this page