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:
36
apk_decompiled/sources/u0/d.java
Normal file
36
apk_decompiled/sources/u0/d.java
Normal file
@@ -0,0 +1,36 @@
|
||||
package u0;
|
||||
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class d implements Comparable {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final int f8606a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public final int f8607b;
|
||||
|
||||
/* renamed from: c, reason: collision with root package name */
|
||||
public final String f8608c;
|
||||
|
||||
/* renamed from: d, reason: collision with root package name */
|
||||
public final String f8609d;
|
||||
|
||||
public d(String from, int i, int i4, String to) {
|
||||
Intrinsics.checkNotNullParameter(from, "from");
|
||||
Intrinsics.checkNotNullParameter(to, "to");
|
||||
this.f8606a = i;
|
||||
this.f8607b = i4;
|
||||
this.f8608c = from;
|
||||
this.f8609d = to;
|
||||
}
|
||||
|
||||
@Override // java.lang.Comparable
|
||||
public final int compareTo(Object obj) {
|
||||
d other = (d) obj;
|
||||
Intrinsics.checkNotNullParameter(other, "other");
|
||||
int i = this.f8606a - other.f8606a;
|
||||
return i == 0 ? this.f8607b - other.f8607b : i;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user