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:
31
apk_decompiled/sources/O/U.java
Normal file
31
apk_decompiled/sources/O/U.java
Normal file
@@ -0,0 +1,31 @@
|
||||
package O;
|
||||
|
||||
import android.view.ContentInfo;
|
||||
import android.view.View;
|
||||
import java.util.Objects;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public abstract class U {
|
||||
public static String[] a(View view) {
|
||||
return view.getReceiveContentMimeTypes();
|
||||
}
|
||||
|
||||
public static C0064f b(View view, C0064f c0064f) {
|
||||
ContentInfo f2 = c0064f.f1244a.f();
|
||||
Objects.requireNonNull(f2);
|
||||
ContentInfo h = B2.e.h(f2);
|
||||
ContentInfo performReceiveContent = view.performReceiveContent(h);
|
||||
if (performReceiveContent == null) {
|
||||
return null;
|
||||
}
|
||||
return performReceiveContent == h ? c0064f : new C0064f(new A.a(performReceiveContent));
|
||||
}
|
||||
|
||||
public static void c(View view, String[] strArr, InterfaceC0081w interfaceC0081w) {
|
||||
if (interfaceC0081w == null) {
|
||||
view.setOnReceiveContentListener(strArr, null);
|
||||
} else {
|
||||
view.setOnReceiveContentListener(strArr, new V(interfaceC0081w));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user