mirror of
https://github.com/feder-cr/invisible_playwright.git
synced 2026-06-25 09:28:05 +02:00
137 lines
3.8 KiB
YAML
137 lines
3.8 KiB
YAML
name: Stealth detection
|
|
description: A fingerprint detector flagged the browser as a bot, VM, VPN, anti-detect, tampered, or otherwise non-human
|
|
title: "[detect] "
|
|
labels: ["bug", "stealth"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Use this when something detects the browser (Fingerprint Pro, CreepJS, BotD, reCAPTCHA, Cloudflare, sannysoft, etc).
|
|
Bugs in operations (clicks, navigation) go to the site/action template.
|
|
Browser failing to start goes to the launch failure template.
|
|
|
|
- type: input
|
|
id: version
|
|
attributes:
|
|
label: Version
|
|
description: Output of `python -m invisible_playwright version`.
|
|
placeholder: 0.1.7 (binary firefox-7)
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: firefox_rev
|
|
attributes:
|
|
label: Firefox revision
|
|
description: The `firefox-N` tag the binary was built from (shown in the version output above).
|
|
placeholder: firefox-7
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: os
|
|
attributes:
|
|
label: OS
|
|
options:
|
|
- Windows 10/11 x86_64
|
|
- Linux x86_64
|
|
- macOS (unsupported)
|
|
- Other
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: headless
|
|
attributes:
|
|
label: headless=
|
|
options:
|
|
- "True"
|
|
- "False"
|
|
validations:
|
|
required: true
|
|
|
|
- type: dropdown
|
|
id: proxy
|
|
attributes:
|
|
label: Proxy
|
|
description: Datacenter or wrong-country proxies trip most detectors regardless of the browser. Be honest about what you used.
|
|
options:
|
|
- No proxy (host network)
|
|
- Residential, matching target geo
|
|
- Residential, different geo than target
|
|
- Datacenter (specify provider in notes)
|
|
- Mobile / 4G
|
|
validations:
|
|
required: true
|
|
|
|
- type: input
|
|
id: detector
|
|
attributes:
|
|
label: Detector name and URL
|
|
description: Exact site / service / product that flagged us.
|
|
placeholder: Fingerprint Pro — https://demo.fingerprint.com/playground
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: screenshot
|
|
attributes:
|
|
label: Screenshot of the detector result
|
|
description: Screenshot of the detector result.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: snippet
|
|
attributes:
|
|
label: Reproduction script
|
|
description: Runnable. Redact creds.
|
|
render: python
|
|
value: |
|
|
from invisible_playwright import InvisiblePlaywright
|
|
|
|
with InvisiblePlaywright(seed=42, headless=True) as browser:
|
|
ctx = browser.new_context()
|
|
page = ctx.new_page()
|
|
page.goto("https://demo.fingerprint.com/playground")
|
|
# add any extra steps needed to reach the flagged result
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: expected
|
|
attributes:
|
|
label: What you expected
|
|
description: "e.g. bot=not_detected, vm_ml_score < 0.3"
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: full_report
|
|
attributes:
|
|
label: Full detector response
|
|
description: "FP Pro: JSON from /api/event/v4/. CreepJS: Smart Signals block. Optional."
|
|
render: json
|
|
validations:
|
|
required: false
|
|
|
|
- type: textarea
|
|
id: notes
|
|
attributes:
|
|
label: Notes
|
|
validations:
|
|
required: false
|
|
|
|
- type: checkboxes
|
|
id: confirm
|
|
attributes:
|
|
label: Before submitting
|
|
options:
|
|
- label: Searched existing issues.
|
|
required: true
|
|
- label: On the latest released version.
|
|
required: true
|
|
- label: The detector verdict above is from a real run, not a hypothesis.
|
|
required: true
|
|
- label: Removed credentials, real IPs, FpJS visitor_id values, personal file paths from the snippet and full report.
|
|
required: true
|