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:
@@ -0,0 +1,40 @@
|
||||
package com.google.android.gms.common;
|
||||
|
||||
/* loaded from: classes3.dex */
|
||||
public class PackageVerificationResult {
|
||||
private final String zza;
|
||||
private final boolean zzb;
|
||||
private final String zzc;
|
||||
private final Throwable zzd;
|
||||
|
||||
private PackageVerificationResult(String str, int i, boolean z3, String str2, Throwable th) {
|
||||
this.zza = str;
|
||||
this.zzb = z3;
|
||||
this.zzc = str2;
|
||||
this.zzd = th;
|
||||
}
|
||||
|
||||
public static PackageVerificationResult zza(String str, String str2, Throwable th) {
|
||||
return new PackageVerificationResult(str, 1, false, str2, th);
|
||||
}
|
||||
|
||||
public static PackageVerificationResult zzd(String str, int i) {
|
||||
return new PackageVerificationResult(str, i, true, null, null);
|
||||
}
|
||||
|
||||
public final void zzb() {
|
||||
if (this.zzb) {
|
||||
return;
|
||||
}
|
||||
String concat = "PackageVerificationRslt: ".concat(String.valueOf(this.zzc));
|
||||
Throwable th = this.zzd;
|
||||
if (th == null) {
|
||||
throw new SecurityException(concat);
|
||||
}
|
||||
throw new SecurityException(concat, th);
|
||||
}
|
||||
|
||||
public final boolean zzc() {
|
||||
return this.zzb;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user