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:
53
apk_decompiled/sources/S0/f.java
Normal file
53
apk_decompiled/sources/S0/f.java
Normal file
@@ -0,0 +1,53 @@
|
||||
package S0;
|
||||
|
||||
import android.graphics.drawable.Drawable;
|
||||
import kotlin.jvm.internal.Intrinsics;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public final class f extends k {
|
||||
|
||||
/* renamed from: a, reason: collision with root package name */
|
||||
public final Drawable f1457a;
|
||||
|
||||
/* renamed from: b, reason: collision with root package name */
|
||||
public final j f1458b;
|
||||
|
||||
/* renamed from: c, reason: collision with root package name */
|
||||
public final Throwable f1459c;
|
||||
|
||||
public f(Drawable drawable, j jVar, Throwable th) {
|
||||
this.f1457a = drawable;
|
||||
this.f1458b = jVar;
|
||||
this.f1459c = th;
|
||||
}
|
||||
|
||||
@Override // S0.k
|
||||
public final Drawable a() {
|
||||
return this.f1457a;
|
||||
}
|
||||
|
||||
@Override // S0.k
|
||||
public final j b() {
|
||||
return this.f1458b;
|
||||
}
|
||||
|
||||
public final boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (!(obj instanceof f)) {
|
||||
return false;
|
||||
}
|
||||
f fVar = (f) obj;
|
||||
if (Intrinsics.areEqual(this.f1457a, fVar.f1457a)) {
|
||||
return Intrinsics.areEqual(this.f1458b, fVar.f1458b) && Intrinsics.areEqual(this.f1459c, fVar.f1459c);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public final int hashCode() {
|
||||
Drawable drawable = this.f1457a;
|
||||
int hashCode = drawable != null ? drawable.hashCode() : 0;
|
||||
return this.f1459c.hashCode() + ((this.f1458b.hashCode() + (hashCode * 31)) * 31);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user