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:
41
apk_decompiled/sources/kotlin/DeprecationLevel.java
Normal file
41
apk_decompiled/sources/kotlin/DeprecationLevel.java
Normal file
@@ -0,0 +1,41 @@
|
||||
package kotlin;
|
||||
|
||||
import kotlin.enums.EnumEntries;
|
||||
import kotlin.enums.EnumEntriesKt;
|
||||
|
||||
/* JADX WARN: Failed to restore enum class, 'enum' modifier and super class removed */
|
||||
/* JADX WARN: Unknown enum class pattern. Please report as an issue! */
|
||||
@Metadata(d1 = {"\u0000\f\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0002\b\u0005\b\u0086\u0081\u0002\u0018\u00002\b\u0012\u0004\u0012\u00020\u00000\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002j\u0002\b\u0003j\u0002\b\u0004j\u0002\b\u0005¨\u0006\u0006"}, d2 = {"Lkotlin/DeprecationLevel;", "", "(Ljava/lang/String;I)V", "WARNING", "ERROR", "HIDDEN", "kotlin-stdlib"}, k = 1, mv = {1, 9, 0}, xi = 48)
|
||||
/* loaded from: classes3.dex */
|
||||
public final class DeprecationLevel {
|
||||
private static final /* synthetic */ EnumEntries $ENTRIES;
|
||||
private static final /* synthetic */ DeprecationLevel[] $VALUES;
|
||||
public static final DeprecationLevel WARNING = new DeprecationLevel("WARNING", 0);
|
||||
public static final DeprecationLevel ERROR = new DeprecationLevel("ERROR", 1);
|
||||
public static final DeprecationLevel HIDDEN = new DeprecationLevel("HIDDEN", 2);
|
||||
|
||||
private static final /* synthetic */ DeprecationLevel[] $values() {
|
||||
return new DeprecationLevel[]{WARNING, ERROR, HIDDEN};
|
||||
}
|
||||
|
||||
static {
|
||||
DeprecationLevel[] $values = $values();
|
||||
$VALUES = $values;
|
||||
$ENTRIES = EnumEntriesKt.enumEntries($values);
|
||||
}
|
||||
|
||||
private DeprecationLevel(String str, int i) {
|
||||
}
|
||||
|
||||
public static EnumEntries<DeprecationLevel> getEntries() {
|
||||
return $ENTRIES;
|
||||
}
|
||||
|
||||
public static DeprecationLevel valueOf(String str) {
|
||||
return (DeprecationLevel) Enum.valueOf(DeprecationLevel.class, str);
|
||||
}
|
||||
|
||||
public static DeprecationLevel[] values() {
|
||||
return (DeprecationLevel[]) $VALUES.clone();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user