exodus icon indicating copy to clipboard operation
exodus copied to clipboard

[Feature] Scan for Play Integrity checks

Open yoshimo opened this issue 10 months ago • 2 comments

Is your feature request related to a problem?

Some applications require Google Play Integrity which custom Roms can hardly fulfill or not at all for high level requirements. Knowing about this anti-feature before hand would help to make an informed decisio

Describe the solution you'd like

Exodus checks the scanned apps for calls to: https://developer.android.com/google/play/integrity/verdicts

This should be listed similar to a tracker so that we can see all apps that require STRONG_Integrity or BASIC_Integrity and similar Google API Calls.

yoshimo avatar Feb 23 '25 12:02 yoshimo

I don't really understand how Exodus can check this? Is it a simple call to an API we need to make with the app handle to see this? Do you have an example?

codeurimpulsif avatar Feb 23 '25 17:02 codeurimpulsif

Ingress for example uses


/* compiled from: com.google.android.play:integrity@@1.1.0 */
/* loaded from: classes2.dex */
public abstract class IntegrityTokenResponse {
    public abstract String token();
}

I think static analysis of used code fragments like checking for ad sdks should be enough.

yoshimo avatar Feb 23 '25 18:02 yoshimo