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,48 @@
|
||||
package kotlin.jvm.internal;
|
||||
|
||||
import kotlin.SinceKotlin;
|
||||
import kotlin.reflect.KCallable;
|
||||
import kotlin.reflect.KMutableProperty0;
|
||||
import kotlin.reflect.KProperty0;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class MutablePropertyReference0 extends MutablePropertyReference implements KMutableProperty0 {
|
||||
public MutablePropertyReference0() {
|
||||
}
|
||||
|
||||
@Override // kotlin.jvm.internal.CallableReference
|
||||
public KCallable computeReflected() {
|
||||
return Reflection.mutableProperty0(this);
|
||||
}
|
||||
|
||||
@Override // kotlin.reflect.KProperty0
|
||||
@SinceKotlin(version = "1.1")
|
||||
public Object getDelegate() {
|
||||
return ((KMutableProperty0) getReflected()).getDelegate();
|
||||
}
|
||||
|
||||
@Override // kotlin.jvm.functions.Function0
|
||||
public Object invoke() {
|
||||
return get();
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.1")
|
||||
public MutablePropertyReference0(Object obj) {
|
||||
super(obj);
|
||||
}
|
||||
|
||||
@Override // kotlin.reflect.KProperty
|
||||
public KProperty0.Getter getGetter() {
|
||||
return ((KMutableProperty0) getReflected()).getGetter();
|
||||
}
|
||||
|
||||
@Override // kotlin.reflect.KMutableProperty
|
||||
public KMutableProperty0.Setter getSetter() {
|
||||
return ((KMutableProperty0) getReflected()).getSetter();
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public MutablePropertyReference0(Object obj, Class cls, String str, String str2, int i) {
|
||||
super(obj, cls, str, str2, i);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user