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:
2025-12-04 13:59:54 +01:00
parent f2fd1c3bf5
commit e0133d2ca2
10432 changed files with 1019085 additions and 1 deletions

View File

@@ -0,0 +1,44 @@
package O;
import android.view.View;
import android.view.ViewGroup;
import java.util.Iterator;
import kotlin.jvm.internal.markers.KMutableIterator;
/* renamed from: O.d0, reason: case insensitive filesystem */
/* loaded from: classes.dex */
public final class C0061d0 implements Iterator, KMutableIterator {
/* renamed from: a, reason: collision with root package name */
public int f1241a;
/* renamed from: b, reason: collision with root package name */
public final /* synthetic */ ViewGroup f1242b;
public C0061d0(ViewGroup viewGroup) {
this.f1242b = viewGroup;
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.f1241a < this.f1242b.getChildCount();
}
@Override // java.util.Iterator
public final Object next() {
int i = this.f1241a;
this.f1241a = i + 1;
View childAt = this.f1242b.getChildAt(i);
if (childAt != null) {
return childAt;
}
throw new IndexOutOfBoundsException();
}
@Override // java.util.Iterator
public final void remove() {
int i = this.f1241a - 1;
this.f1241a = i;
this.f1242b.removeViewAt(i);
}
}