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