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:
40
apk_decompiled/sources/l3/C.java
Normal file
40
apk_decompiled/sources/l3/C.java
Normal file
@@ -0,0 +1,40 @@
|
||||
package l3;
|
||||
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public final class C {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public int f7370a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public final int[] f7371b = new int[10];
|
||||
|
||||
public final int a() {
|
||||
if ((this.f7370a & 128) != 0) {
|
||||
return this.f7371b[7];
|
||||
}
|
||||
return 65535;
|
||||
}
|
||||
|
||||
public final void b(C other) {
|
||||
Intrinsics.checkNotNullParameter(other, "other");
|
||||
for (int i = 0; i < 10; i++) {
|
||||
if (((1 << i) & other.f7370a) != 0) {
|
||||
c(i, other.f7371b[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public final void c(int i, int i4) {
|
||||
if (i >= 0) {
|
||||
int[] iArr = this.f7371b;
|
||||
if (i >= iArr.length) {
|
||||
return;
|
||||
}
|
||||
this.f7370a = (1 << i) | this.f7370a;
|
||||
iArr[i] = i4;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user