-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[This plugin] 129 is detected on pixelscan.net as automation framework #52
Comments
My code: require('dotenv/config');
const { plugin } = require('playwright-with-fingerprints');
plugin.setServiceKey(process.env.FINGERPRINT_KEY);
(async () => {
const fingerprint = await plugin.fetch({
tags: ['Microsoft Windows', 'Chrome'],
minBrowserVersion: '128', // the 'current' value works too.
maxBrowserVersion: '128', // the 'current' value works too.
});
plugin.useProxy(process.env.FINGERPRINT_PROXY, {
ipInfoMethod: 'ip-api.com',
changeGeolocation: true,
changeTimezone: true,
});
plugin.useFingerprint(fingerprint);
const browser = await plugin.launch({ headless: false });
const page = await browser.newPage();
await page.goto('https://pixelscan.net', { waitUntil: 'commit' });
})(); My result №1 (128 version): My result №2 (129 version): I checked about 10 fingerprints - the maximum problem I encountered was incorrect geolocation, but this can be fixed by using another IP data detection service. |
@CheshireCaat my code is:
|
@dr3adx i use the latest one, currently it's 27.9.2.
I'll try to figure out what the problem is. I tested everything on desktop fingerprints - there is no such problem there. |
@CheshireCaat sorry I had pasted wrong code because I tested so many versions, I edited my reply above. It only happens when using engine >= 128.0.6613.85 (127 and below works) and looks like you're right it only happens on Android fingerprint (I reckon it happened on windows too but ill report back if anything changes), however Adroid fingerprints worked without being flagged in <= 127 versions |
How to reproduce:
This is is tested on latest playwright-with-fingerprints, chromium 129, engine 27.9.2
This issue appeared since 127
The text was updated successfully, but these errors were encountered: