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,40 @@
|
||||
package kotlin.internal;
|
||||
|
||||
import kotlin.KotlinVersion;
|
||||
import kotlin.Metadata;
|
||||
import kotlin.PublishedApi;
|
||||
import kotlin.SinceKotlin;
|
||||
import kotlin.internal.jdk8.JDK8PlatformImplementations;
|
||||
import kotlin.jvm.JvmField;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
@Metadata(d1 = {"\u0000\u001e\n\u0000\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000b\n\u0000\n\u0002\u0010\b\n\u0002\b\u0004\n\u0002\u0010\u0000\n\u0002\b\u0003\u001a \u0010\u0002\u001a\u00020\u00032\u0006\u0010\u0004\u001a\u00020\u00052\u0006\u0010\u0006\u001a\u00020\u00052\u0006\u0010\u0007\u001a\u00020\u0005H\u0001\u001a\"\u0010\b\u001a\u0002H\t\"\n\b\u0000\u0010\t\u0018\u0001*\u00020\n2\u0006\u0010\u000b\u001a\u00020\nH\u0083\b¢\u0006\u0002\u0010\f\"\u0010\u0010\u0000\u001a\u00020\u00018\u0000X\u0081\u0004¢\u0006\u0002\n\u0000¨\u0006\r"}, d2 = {"IMPLEMENTATIONS", "Lkotlin/internal/PlatformImplementations;", "apiVersionIsAtLeast", "", "major", "", "minor", "patch", "castToBaseType", "T", "", "instance", "(Ljava/lang/Object;)Ljava/lang/Object;", "kotlin-stdlib"}, k = 2, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes3.dex */
|
||||
public final class PlatformImplementationsKt {
|
||||
|
||||
@JvmField
|
||||
public static final PlatformImplementations IMPLEMENTATIONS = new JDK8PlatformImplementations();
|
||||
|
||||
@SinceKotlin(version = "1.2")
|
||||
@PublishedApi
|
||||
public static final boolean apiVersionIsAtLeast(int i, int i4, int i5) {
|
||||
return KotlinVersion.CURRENT.isAtLeast(i, i4, i5);
|
||||
}
|
||||
|
||||
/* JADX WARN: Multi-variable type inference failed */
|
||||
@InlineOnly
|
||||
private static final /* synthetic */ <T> T castToBaseType(Object obj) {
|
||||
try {
|
||||
Intrinsics.reifiedOperationMarker(1, "T");
|
||||
return obj;
|
||||
} catch (ClassCastException e4) {
|
||||
ClassLoader classLoader = obj.getClass().getClassLoader();
|
||||
Intrinsics.reifiedOperationMarker(4, "T");
|
||||
ClassLoader classLoader2 = Object.class.getClassLoader();
|
||||
if (Intrinsics.areEqual(classLoader, classLoader2)) {
|
||||
throw e4;
|
||||
}
|
||||
throw new ClassNotFoundException("Instance class was loaded from a different classloader: " + classLoader + ", base type classloader: " + classLoader2, e4);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user