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,43 @@
package Z2;
import java.util.Iterator;
/* loaded from: classes3.dex */
public final class u implements Iterator, Cloneable {
/* renamed from: a, reason: collision with root package name */
public final q f2298a;
/* renamed from: b, reason: collision with root package name */
public final Object[] f2299b;
/* renamed from: c, reason: collision with root package name */
public int f2300c;
public u(q qVar, Object[] objArr, int i) {
this.f2298a = qVar;
this.f2299b = objArr;
this.f2300c = i;
}
public final Object clone() {
return new u(this.f2298a, this.f2299b, this.f2300c);
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.f2300c < this.f2299b.length;
}
@Override // java.util.Iterator
public final Object next() {
int i = this.f2300c;
this.f2300c = i + 1;
return this.f2299b[i];
}
@Override // java.util.Iterator
public final void remove() {
throw new UnsupportedOperationException();
}
}