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,54 @@
package O;
import android.view.View;
import java.lang.ref.WeakReference;
/* loaded from: classes.dex */
public final class h0 {
/* renamed from: a, reason: collision with root package name */
public final WeakReference f1255a;
public h0(View view) {
this.f1255a = new WeakReference(view);
}
public final void a(float f2) {
View view = (View) this.f1255a.get();
if (view != null) {
view.animate().alpha(f2);
}
}
public final void b() {
View view = (View) this.f1255a.get();
if (view != null) {
view.animate().cancel();
}
}
public final void c(long j4) {
View view = (View) this.f1255a.get();
if (view != null) {
view.animate().setDuration(j4);
}
}
public final void d(i0 i0Var) {
View view = (View) this.f1255a.get();
if (view != null) {
if (i0Var != null) {
view.animate().setListener(new B0.q(i0Var, view));
} else {
view.animate().setListener(null);
}
}
}
public final void e(float f2) {
View view = (View) this.f1255a.get();
if (view != null) {
view.animate().translationY(f2);
}
}
}