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,32 @@
|
||||
package kotlin.jvm.internal;
|
||||
|
||||
import kotlin.SinceKotlin;
|
||||
import kotlin.reflect.KClass;
|
||||
import kotlin.reflect.KDeclarationContainer;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public class MutablePropertyReference0Impl extends MutablePropertyReference0 {
|
||||
public MutablePropertyReference0Impl(KDeclarationContainer kDeclarationContainer, String str, String str2) {
|
||||
super(CallableReference.NO_RECEIVER, ((ClassBasedDeclarationContainer) kDeclarationContainer).getJClass(), str, str2, !(kDeclarationContainer instanceof KClass) ? 1 : 0);
|
||||
}
|
||||
|
||||
@Override // kotlin.reflect.KProperty0
|
||||
public Object get() {
|
||||
return getGetter().call(new Object[0]);
|
||||
}
|
||||
|
||||
@Override // kotlin.reflect.KMutableProperty0
|
||||
public void set(Object obj) {
|
||||
getSetter().call(obj);
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public MutablePropertyReference0Impl(Class cls, String str, String str2, int i) {
|
||||
super(CallableReference.NO_RECEIVER, cls, str, str2, i);
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public MutablePropertyReference0Impl(Object obj, Class cls, String str, String str2, int i) {
|
||||
super(obj, cls, str, str2, i);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user