-
-
Notifications
You must be signed in to change notification settings - Fork 742
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
Is it possible to be undetected while emulating phone? #330
Comments
There are many leaks from an emulated phone, too many to list. Even executing through a proper emulator such as BlueStacks is fairly easy to detect by a sufficiently motivated adversary. |
How can I learn about those leaks? |
Here's a couple of papers on the topic, but the problems are so broad that it's hard to capture in a single paper: For example, the first thing a detection script will do is check something like your expected device touchpoints... which obviously won't be there in the example you provided. |
Thank you @prescience-data |
the official Apple emulator passes the Pixelscan test. |
Emulating a different browser engine (e.g. iPhone which uses WebKit) is a lost cause, there are too many differences in the JS VM/API alone. Once #303 as landed we could check how different the iPhone Safari is in comparison to desktop webkit and if it's possible to patch the JS APIs to mask the differences. Successfully emulating a mobile Chrome through desktop Chrome should be possible (ignoring fingerprinting/canvas hashes for a moment, this topic requires a dedicated solution in general). It'd be nice if someone would compare a real and emulated mobile Chrome and list the differences here (also curious if there are emulation differences with playwright/pptr). |
Would be interested to see the differences between the canvas hashes of an emulated iPhone and a real iPhone of the same model. |
Closing this for now, discussions like this might be better suited for our discord. |
This could be a dumb question of sorts but is it not possible to imitate or create some sort of package in which we could spoof users movements? Could be something like ghost-cursor? Obviously it wouldn't be like ghost-cursor but the idea and concept behind ghost-cursor package? Ghost-Cursor uses Bezier curves to act human like... is that not possible for us to create for mobile? |
Hey guys ,
I've tried to emulate phone while using the stealth plugin,
but it seems like most of the sites can easily detect that its phone:
http://prntscr.com/ujz2js
http://prntscr.com/ujz2z0
I think this makes 0 sense and might be a big reason for the detection as how can I be using nvidia and chromium on iphone :D
http://prntscr.com/ujz3wg
The code is used to open the browser:
`const puppeteer = require('puppeteer-extra');
The text was updated successfully, but these errors were encountered: