|
I accidently tapped on a nasty advertisement, and my phone is compromised
When opening any browser, an 'intent' launch a website, that will either: open an ads, download and install software automatically
after several days of research and adb logcat, it is found that the youtube_z5268 is the culprit
- I/ActivityManager( 723): START u0 {act=android.intent.action.VIEW dat=http://global.ymtracking.com/trace?offer_id=110833&aff_id=27742 flg=0x10000000 cmp=com.chrome.dev/com.google.android.apps.chrome.Main} from uid 10150 on display 0
Copy the Code and checking the UID 10150 yields:
- <package name="com.google.android.youtube" codePath="/system/priv-app/youtube_Z5268" nativeLibraryPath="/system/priv-app/youtube_Z5268/lib" flags="1075363405" pkgFlagsEx="0" ft="150d75c0ed0" it="15202d97f21" ut="150d75c0ed0" version="1599000099" <font color="#ff0000">userId="10150"</font> installer="com.android.vending">
Copy the Code removing this app via shell solves the problem.
- su
- mount -o remount,rw /system
- rm -r /system/priv_app_youtube_Z5268
Copy the Code and restart the phone.
|
|