Audit a browser fingerprint for internal contradictions with the liarjs CLI - canvas, WebGL, WebGL2, WebGPU, audio, 220 fonts, WebRTC and timezone probes, scored against the TLS/HTTP/ASN view of the same request. Use when asked to run a browser fingerprint test, see what a fingerprint looks like, check canvas or WebGL fingerprint stability, compare a spoofed profile against a real browser, or find out whether a browser profile is self-consistent.
npx skills add https://github.com/liarjsdev/liarjs-skills --skill browser-fingerprint-audit
A browser controls its own JavaScript. It does not control the network it connects over. liarjs
reads the fingerprint inside the browser, reads the TLS/HTTP/ASN view from the edge that served the
request, and reports every place the two stories disagree.
Score: starts at 100, each failing check deducts its weight. 85 and above Trustworthy, 60 and
above Suspicious, below that Likely spoofed / bot.
npx [email protected] # launch a throwaway Chrome and scan it
npx [email protected] --all # also list the checks that passed
npx [email protected] --offline # JS-layer checks only, no outbound request
npx [email protected] --json scan.json # save the full result for later comparison
Requires Node 22 or newer and a local Chrome, Chromium or Edge. No other install step: the package
has zero runtime dependencies.
If no browser is found, set LIARJS_CHROME=/path/to/chrome. In a container, give it enough shared
memory (--shm-size=1g) and run as a non-root user; Chrome's sandbox declines to initialise as root.
Leave the sandbox enabled.
mkdtemp), then deletes thatdirectory when the scan ends. It does not read the user's browser profile, history, cookies or
saved credentials, and does not need any token or account.
about:blank by default. Pass --page <url> only when the user names a page theyown or control; about:blank is not a secure context, so UA-CH, StorageManager and most
Permissions names are unavailable there and the report says so.
https://liarjs.dev/api/net.json,which answers with what Cloudflare saw about that one request (IP, ASN, colo, HTTP version, TLS
version, ClientHello shape, headers). Use --offline to make no outbound request at all, or
--endpoint <url> to point at your own deployment of that Worker.
Only failing checks print by default. Each line carries a check id, the deduction, and one sentence
of explanation:
18 / 100 Likely spoofed / bot
x navigator.webdriver -40
webdriver=true, the automation flag is set.
id: webdriver
! IP timezone <-> browser timezone -12
IP resolves to America/Los_Angeles but the browser reports Asia/Shanghai.
id: tz
22 checks - 2 critical - 1 warnings - 18 clean
edge: 203.0.113.7 - AS4058 - LAS - HTTP/2 - TLSv1.3
references/checks.md lists all 40 checks, grouped by layer, with what each one measures and its
maximum deduction. Read it when the user asks what a specific check id means.
Two results are commonly misread:
the checks report them.
will challenge the browser: real detectors also weigh IP reputation, account age and behaviour,
none of which a local scan can see.
Anything exposing a Chrome DevTools Protocol endpoint can be scanned in place:
npx [email protected] --cdp http://127.0.0.1:9222
Only do this when the user explicitly asks to scan a browser that is already running, and tell them
which endpoint you are attaching to. Attaching drives a browser session the user owns, so it can
open a tab and read page state in that session; launching a throwaway profile (the default) does
not. Prefer the default unless the running browser is the actual subject of the question.
fingerprint-ci-gateskill.
fingerprint-failure-triage skill.playwright-stealth-verify skill.Hosted equivalent, no install: <https://liarjs.dev>. Per-check field notes:
<https://liarjs.dev/cli/>.
Take liarjsdev/browser-fingerprint-audit from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.
The instructions reference npx.
Without those the skill loads but fails at the first command.