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:
29
apk_decompiled/sources/U/m.java
Normal file
29
apk_decompiled/sources/U/m.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package U;
|
||||
|
||||
import android.widget.RemoteViews;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class m {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public static final m f1757a = new Object();
|
||||
|
||||
private final RemoteViews.RemoteCollectionItems b(n nVar) {
|
||||
RemoteViews.RemoteCollectionItems.Builder viewTypeCount = new RemoteViews.RemoteCollectionItems.Builder().setHasStableIds(nVar.f1760c).setViewTypeCount(nVar.f1761d);
|
||||
long[] jArr = nVar.f1758a;
|
||||
int length = jArr.length;
|
||||
for (int i = 0; i < length; i++) {
|
||||
viewTypeCount.addItem(jArr[i], nVar.f1759b[i]);
|
||||
}
|
||||
RemoteViews.RemoteCollectionItems build = viewTypeCount.build();
|
||||
Intrinsics.checkNotNullExpressionValue(build, "Builder()\n …\n .build()");
|
||||
return build;
|
||||
}
|
||||
|
||||
public final void a(RemoteViews remoteViews, int i, n items) {
|
||||
Intrinsics.checkNotNullParameter(remoteViews, "remoteViews");
|
||||
Intrinsics.checkNotNullParameter(items, "items");
|
||||
remoteViews.setRemoteAdapter(i, b(items));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user