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,68 @@
|
||||
package kotlin.jvm.internal;
|
||||
|
||||
import kotlin.Metadata;
|
||||
import kotlin.SinceKotlin;
|
||||
|
||||
@Metadata(d1 = {"\u0000\u001c\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0010\u0006\n\u0002\b\n\n\u0002\u0010\b\n\u0002\b\t\bÀ\u0002\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\u0006\u0010\u0013\u001a\u00020\u0004J\u0006\u0010\u0014\u001a\u00020\u0004J\u0006\u0010\u0015\u001a\u00020\u0004J\u0006\u0010\u0016\u001a\u00020\u0004J\u0006\u0010\u0017\u001a\u00020\u0004R\u0016\u0010\u0003\u001a\u00020\u00048\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\u0005\u0010\u0002R\u0016\u0010\u0006\u001a\u00020\u00048\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\u0007\u0010\u0002R\u0016\u0010\b\u001a\u00020\u00048\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\t\u0010\u0002R\u0016\u0010\n\u001a\u00020\u00048\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\u000b\u0010\u0002R\u0016\u0010\f\u001a\u00020\u00048\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\r\u0010\u0002R\u0016\u0010\u000e\u001a\u00020\u000f8\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\u0010\u0010\u0002R\u0016\u0010\u0011\u001a\u00020\u000f8\u0006X\u0087T¢\u0006\b\n\u0000\u0012\u0004\b\u0012\u0010\u0002¨\u0006\u0018"}, d2 = {"Lkotlin/jvm/internal/DoubleCompanionObject;", "", "()V", "MAX_VALUE", "", "getMAX_VALUE$annotations", "MIN_VALUE", "getMIN_VALUE$annotations", "NEGATIVE_INFINITY", "getNEGATIVE_INFINITY$annotations", "NaN", "getNaN$annotations", "POSITIVE_INFINITY", "getPOSITIVE_INFINITY$annotations", "SIZE_BITS", "", "getSIZE_BITS$annotations", "SIZE_BYTES", "getSIZE_BYTES$annotations", "getMAX_VALUE", "getMIN_VALUE", "getNEGATIVE_INFINITY", "getNaN", "getPOSITIVE_INFINITY", "kotlin-stdlib"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes3.dex */
|
||||
public final class DoubleCompanionObject {
|
||||
public static final DoubleCompanionObject INSTANCE = new DoubleCompanionObject();
|
||||
public static final double MAX_VALUE = Double.MAX_VALUE;
|
||||
public static final double MIN_VALUE = Double.MIN_VALUE;
|
||||
public static final double NEGATIVE_INFINITY = Double.NEGATIVE_INFINITY;
|
||||
public static final double NaN = Double.NaN;
|
||||
public static final double POSITIVE_INFINITY = Double.POSITIVE_INFINITY;
|
||||
public static final int SIZE_BITS = 64;
|
||||
public static final int SIZE_BYTES = 8;
|
||||
|
||||
private DoubleCompanionObject() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getMAX_VALUE$annotations() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getMIN_VALUE$annotations() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getNEGATIVE_INFINITY$annotations() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getNaN$annotations() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getPOSITIVE_INFINITY$annotations() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getSIZE_BITS$annotations() {
|
||||
}
|
||||
|
||||
@SinceKotlin(version = "1.4")
|
||||
public static /* synthetic */ void getSIZE_BYTES$annotations() {
|
||||
}
|
||||
|
||||
public final double getMAX_VALUE() {
|
||||
return Double.MAX_VALUE;
|
||||
}
|
||||
|
||||
public final double getMIN_VALUE() {
|
||||
return Double.MIN_VALUE;
|
||||
}
|
||||
|
||||
public final double getNEGATIVE_INFINITY() {
|
||||
return Double.NEGATIVE_INFINITY;
|
||||
}
|
||||
|
||||
public final double getNaN() {
|
||||
return Double.NaN;
|
||||
}
|
||||
|
||||
public final double getPOSITIVE_INFINITY() {
|
||||
return Double.POSITIVE_INFINITY;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user