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:
2025-12-04 13:59:54 +01:00
parent f2fd1c3bf5
commit e0133d2ca2
10432 changed files with 1019085 additions and 1 deletions

View File

@@ -0,0 +1,42 @@
package kotlin.jvm.internal;
import kotlin.SinceKotlin;
import kotlin.reflect.KCallable;
import kotlin.reflect.KProperty0;
/* loaded from: classes3.dex */
public abstract class PropertyReference0 extends PropertyReference implements KProperty0 {
public PropertyReference0() {
}
@Override // kotlin.jvm.internal.CallableReference
public KCallable computeReflected() {
return Reflection.property0(this);
}
@Override // kotlin.reflect.KProperty0
@SinceKotlin(version = "1.1")
public Object getDelegate() {
return ((KProperty0) getReflected()).getDelegate();
}
@Override // kotlin.jvm.functions.Function0
public Object invoke() {
return get();
}
@SinceKotlin(version = "1.1")
public PropertyReference0(Object obj) {
super(obj);
}
@Override // kotlin.reflect.KProperty
public KProperty0.Getter getGetter() {
return ((KProperty0) getReflected()).getGetter();
}
@SinceKotlin(version = "1.4")
public PropertyReference0(Object obj, Class cls, String str, String str2, int i) {
super(obj, cls, str, str2, i);
}
}