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 androidx.datastore.preferences.protobuf;
import java.util.Iterator;
import java.util.NoSuchElementException;
/* renamed from: androidx.datastore.preferences.protobuf.e, reason: case insensitive filesystem */
/* loaded from: classes.dex */
public final class C0114e implements Iterator {
/* renamed from: a, reason: collision with root package name */
public int f2905a = 0;
/* renamed from: b, reason: collision with root package name */
public final int f2906b;
/* renamed from: c, reason: collision with root package name */
public final /* synthetic */ C0116g f2907c;
public C0114e(C0116g c0116g) {
this.f2907c = c0116g;
this.f2906b = c0116g.size();
}
@Override // java.util.Iterator
public final boolean hasNext() {
return this.f2905a < this.f2906b;
}
@Override // java.util.Iterator
public final Object next() {
int i = this.f2905a;
if (i >= this.f2906b) {
throw new NoSuchElementException();
}
this.f2905a = i + 1;
return Byte.valueOf(this.f2907c.f2912b[i]);
}
@Override // java.util.Iterator
public final void remove() {
throw new UnsupportedOperationException();
}
}