Primer paso de la investigacion. Se aportan el .apk, las carpetas con el apk extraido y el apk descompilado. El archivo API_DOCUMENTATION.md es un archivo donde se anotaran los descubrimientos del funcionamiento de la API, y los .py son scripts para probar la funcionalidad de la API con los métodos que vayamos encontrando. Finalmente, los archivos .js son scripts de Frida para extraer informacion de la APP durante la ejecucion.
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
package com.google.android.gms.stats;
|
||||
|
||||
import com.google.android.gms.common.annotation.KeepForSdk;
|
||||
import com.google.android.gms.common.internal.ShowFirstParty;
|
||||
import java.lang.annotation.Retention;
|
||||
import java.lang.annotation.RetentionPolicy;
|
||||
|
||||
@ShowFirstParty
|
||||
@KeepForSdk
|
||||
@Retention(RetentionPolicy.SOURCE)
|
||||
/* loaded from: classes3.dex */
|
||||
public @interface CodePackage {
|
||||
|
||||
@KeepForSdk
|
||||
public static final String COMMON = "COMMON";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String DRIVE = "DRIVE";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String FITNESS = "FITNESS";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String GCM = "GCM";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String ICING = "ICING";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String LOCATION = "LOCATION";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String LOCATION_SHARING = "LOCATION_SHARING";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String OTA = "OTA";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String REMINDERS = "REMINDERS";
|
||||
|
||||
@KeepForSdk
|
||||
public static final String SECURITY = "SECURITY";
|
||||
}
|
||||
Reference in New Issue
Block a user