puppeteer-extra icon indicating copy to clipboard operation
puppeteer-extra copied to clipboard

[Bug] fingerprint still can detect use automation tools

Open coder-hxl opened this issue 1 year ago • 5 comments

Describe the bug

https://fingerprint.com/products/bot-detection still can detect use automation tools

Code Snippet

import puppeteer from 'puppeteer-extra'
import StealthPlugin from 'puppeteer-extra-plugin-stealth'

puppeteer.use(StealthPlugin())

puppeteer.launch().then(async (browser) => {
  const page = await browser.newPage()
  await page.setViewport({ width: 1280, height: 1024 })

  await page.goto('https://fingerprint.com/products/bot-detection/')

  await page.waitForSelector('.HeroSection-module--card--bd7d2 p')
  await page.screenshot({ path: 'stealth.png', fullPage: true })

  console.log(`All done, check the screenshots. ✨`)
  await browser.close()
})

Versions

System: OS: Windows 10 10.0.19044 CPU: (8) x64 AMD Ryzen 5 3500U with Radeon Vega Mobile Gfx Memory: 550.47 MB / 5.93 GB Binaries: Node: 19.0.0 - E:\Installer\NVM\nodejs\node.EXE Yarn: 1.22.19 - E:\Installer\NVM\repo\global\yarn.CMD npm: 8.19.2 - E:\Installer\NVM\nodejs\npm.CMD npmPackages: puppeteer: 19.8.0 => 19.8.0

coder-hxl avatar Apr 10 '23 08:04 coder-hxl

Bump. It seems like google also detects stealth.

JijaProGamer avatar Sep 01 '23 06:09 JijaProGamer

Bump. It seems like google also detects stealth.

You could try to emulate user action like mouse movement, scrolling, delays etc

lindo8818 avatar Sep 16 '23 13:09 lindo8818

Bump. It seems like google also detects stealth.

You could try to emulate user action like mouse movement, scrolling, delays etc

I do. But google updated it's fingerprint detector 2 weeks ago, making this library easily detected.

JijaProGamer avatar Sep 16 '23 13:09 JijaProGamer

Bump. It seems like google also detects stealth.

You could try to emulate user action like mouse movement, scrolling, delays etc

I do. But google updated it's fingerprint detector 2 weeks ago, making this library easily detected.

oh my bad, didnt know that. havent used this plugin in a year or so. Maybe you want to try playwright stealth?

lindo8818 avatar Sep 16 '23 15:09 lindo8818

Bump. It seems like google also detects stealth.

You could try to emulate user action like mouse movement, scrolling, delays etc

I do. But google updated it's fingerprint detector 2 weeks ago, making this library easily detected.

@JijaProGamer how and where did you check this? Could you please give a snippet?

tourman avatar Sep 18 '23 16:09 tourman