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,78 @@
package kotlin.jvm.internal;
import kotlin.SinceKotlin;
import kotlin.reflect.KCallable;
import kotlin.reflect.KProperty;
/* loaded from: classes3.dex */
public abstract class PropertyReference extends CallableReference implements KProperty {
private final boolean syntheticJavaProperty;
public PropertyReference() {
this.syntheticJavaProperty = false;
}
@Override // kotlin.jvm.internal.CallableReference
public KCallable compute() {
return this.syntheticJavaProperty ? this : super.compute();
}
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (obj instanceof PropertyReference) {
PropertyReference propertyReference = (PropertyReference) obj;
return getOwner().equals(propertyReference.getOwner()) && getName().equals(propertyReference.getName()) && getSignature().equals(propertyReference.getSignature()) && Intrinsics.areEqual(getBoundReceiver(), propertyReference.getBoundReceiver());
}
if (obj instanceof KProperty) {
return obj.equals(compute());
}
return false;
}
public int hashCode() {
return getSignature().hashCode() + ((getName().hashCode() + (getOwner().hashCode() * 31)) * 31);
}
@Override // kotlin.reflect.KProperty
@SinceKotlin(version = "1.1")
public boolean isConst() {
return getReflected().isConst();
}
@Override // kotlin.reflect.KProperty
@SinceKotlin(version = "1.1")
public boolean isLateinit() {
return getReflected().isLateinit();
}
public String toString() {
KCallable compute = compute();
if (compute != this) {
return compute.toString();
}
return "property " + getName() + " (Kotlin reflection is not available)";
}
@Override // kotlin.jvm.internal.CallableReference
@SinceKotlin(version = "1.1")
public KProperty getReflected() {
if (!this.syntheticJavaProperty) {
return (KProperty) super.getReflected();
}
throw new UnsupportedOperationException("Kotlin reflection is not yet supported for synthetic Java properties");
}
@SinceKotlin(version = "1.1")
public PropertyReference(Object obj) {
super(obj);
this.syntheticJavaProperty = false;
}
@SinceKotlin(version = "1.4")
public PropertyReference(Object obj, Class cls, String str, String str2, int i) {
super(obj, cls, str, str2, (i & 1) == 1);
this.syntheticJavaProperty = (i & 2) == 2;
}
}