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:
43
apk_decompiled/sources/g/C0349C.java
Normal file
43
apk_decompiled/sources/g/C0349C.java
Normal file
@@ -0,0 +1,43 @@
|
||||
package g;
|
||||
|
||||
import a.AbstractC0106b;
|
||||
import android.view.KeyEvent;
|
||||
import android.view.MotionEvent;
|
||||
import androidx.appcompat.widget.ContentFrameLayout;
|
||||
import k.C0407d;
|
||||
|
||||
/* renamed from: g.C, reason: case insensitive filesystem */
|
||||
/* loaded from: classes.dex */
|
||||
public final class C0349C extends ContentFrameLayout {
|
||||
public final /* synthetic */ LayoutInflaterFactory2C0351E i;
|
||||
|
||||
/* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */
|
||||
public C0349C(LayoutInflaterFactory2C0351E layoutInflaterFactory2C0351E, C0407d c0407d) {
|
||||
super(c0407d, null);
|
||||
this.i = layoutInflaterFactory2C0351E;
|
||||
}
|
||||
|
||||
@Override // android.view.ViewGroup, android.view.View
|
||||
public final boolean dispatchKeyEvent(KeyEvent keyEvent) {
|
||||
return this.i.v(keyEvent) || super.dispatchKeyEvent(keyEvent);
|
||||
}
|
||||
|
||||
@Override // android.view.ViewGroup
|
||||
public final boolean onInterceptTouchEvent(MotionEvent motionEvent) {
|
||||
if (motionEvent.getAction() == 0) {
|
||||
int x3 = (int) motionEvent.getX();
|
||||
int y3 = (int) motionEvent.getY();
|
||||
if (x3 < -5 || y3 < -5 || x3 > getWidth() + 5 || y3 > getHeight() + 5) {
|
||||
LayoutInflaterFactory2C0351E layoutInflaterFactory2C0351E = this.i;
|
||||
layoutInflaterFactory2C0351E.t(layoutInflaterFactory2C0351E.A(0), true);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return super.onInterceptTouchEvent(motionEvent);
|
||||
}
|
||||
|
||||
@Override // android.view.View
|
||||
public final void setBackgroundResource(int i) {
|
||||
setBackgroundDrawable(AbstractC0106b.m(getContext(), i));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user