Automation framework detected by pixelscan
See original GitHub issuehey guys , any idea how can pixelscan.net detect my puppeteer even with stealth on? http://prntscr.com/uhs1aq
This is a sample of the code: `const puppeteer = require(‘puppeteer-extra’);
const pluginStealth = require('puppeteer-extra-plugin-stealth');
puppeteer.use(pluginStealth());
let isheadless = false;
let browser2 = await puppeteer.launch({
headless: isheadless,
//ignoreHTTPSErrors: true,
//executablePath: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe',
args: []
});
let page2 = (await browser2.pages())[0];`
Is it possible to add/modify more variables manually to make the browser even less detectable? thank you!
Issue Analytics
- State:
- Created 3 years ago
- Comments:11
Top Results From Across the Web
Changelog - Pixelscan
Pixelscan is a one-and-done solution to detect internet bots and manually-controlled ... Added an additional mechanism to detect automation frameworks ...
Read more >Pixelscan says Automation framework detected, what is that?
Pixelscan says Automation framework detected, what is that?
Read more >How Do You Know if an Antidetect Browser Is Reliable
Pixelscan detects use of proxy and automation framework, as well as fingerprint masking. ... Pixelscan also checks other parameters of your device ...
Read more >False-positive alerts on websites - Kameleo Support Center
Imagine that a real site's browser fingerprint detection system works the same way as ... kameleo-pixelscan-brave-browser-false-positive.png.
Read more >Can a website detect when you are using Selenium with ...
That's why the browser driven by automated software can still be detected. MDN. The variable is managed by the flag --enable-automation in chrome....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Ok, I’ve finally found the reason.
If I disable
'iframe.contentWindow'
on 2.6.0, this test fails. Btw, I disable it because of the iframe redirect problem described here https://github.com/berstend/puppeteer-extra/issues/202#issuecomment-643433111 Has it been resolved yet?Web gl is related to another issue, not pixel scan.
TS probably uses 2.6.1 which fails due to the bug. I think you can close this issue since 2.6.0 passes the test.
New PR: https://github.com/berstend/puppeteer-extra/pull/341