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,38 @@
|
||||
package com.google.firebase.heartbeatinfo;
|
||||
|
||||
import com.google.firebase.components.ComponentContainer;
|
||||
import com.google.firebase.components.ComponentFactory;
|
||||
import com.google.firebase.components.Qualified;
|
||||
import com.google.firebase.crashlytics.CrashlyticsRegistrar;
|
||||
import com.google.firebase.remoteconfig.RemoteConfigRegistrar;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final /* synthetic */ class b implements ComponentFactory {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final /* synthetic */ int f5988a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public final /* synthetic */ Object f5989b;
|
||||
|
||||
public /* synthetic */ b(Object obj, int i) {
|
||||
this.f5988a = i;
|
||||
this.f5989b = obj;
|
||||
}
|
||||
|
||||
@Override // com.google.firebase.components.ComponentFactory
|
||||
public final Object create(ComponentContainer componentContainer) {
|
||||
DefaultHeartBeatController lambda$component$3;
|
||||
int i = this.f5988a;
|
||||
Object obj = this.f5989b;
|
||||
switch (i) {
|
||||
case 0:
|
||||
lambda$component$3 = DefaultHeartBeatController.lambda$component$3((Qualified) obj, componentContainer);
|
||||
return lambda$component$3;
|
||||
case 1:
|
||||
return RemoteConfigRegistrar.a((Qualified) obj, componentContainer);
|
||||
default:
|
||||
return CrashlyticsRegistrar.a((CrashlyticsRegistrar) obj, componentContainer);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user