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:
44
apk_decompiled/sources/O/C0061d0.java
Normal file
44
apk_decompiled/sources/O/C0061d0.java
Normal 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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user