-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kik and signa apk get error #54
Comments
I am not sure what you mean. You mean you want to find where the SharedPreference is created? |
The error that I get by running your code with kik apk follows at the end of this message. It seems that the error happened before line 148 (val taint_analysis_result = AndroidDataDependentTaintAnalysis(yard, iddResult, idfg.ptaresult, ssm)) which are processing procedure of Amandroid's. And these error happens again in signal apk. The error is this: Process finished with exit code 1 |
Hi,
I've download the apk from quite famous mobile app such as signal and apk, from apk mirrow but it seems that your code is not able to manage them. For example:
private final Future a;
.....
private void i() {
if (this.d == null) {
Log.e("MixpanelAPI.PIdentity", "storeSuperProperties should not be called with uninitialized superPropertiesCache.");
return;
}
String jSONObject = this.d.toString();
boolean z = h.a;
try {
Editor edit = ((SharedPreferences) this.a.get()).edit();
edit.putString("super_properties", jSONObject);
a(edit);
} catch (ExecutionException e) {
Log.e("MixpanelAPI.PIdentity", "Cannot store superProperties in shared preferences.", e.getCause());
} catch (Throwable e2) {
Log.e("MixpanelAPI.PIdentity", "Cannot store superProperties in shared preferences.", e2);
}
}
The codes above is part of kiki.apk source code. You can see that "Editor edit = ((SharedPreferences) this.a.get()).edit();" create an editor which is to write files. And the SharedPreferences it uses is a Future kind which is used for asynchronous process. Because the workflow for Fordroid is to find Sinks firstly and then look back upon the files' name where it created. It seems that Amandroid cannot located the file creator since it doesn't know exactly when and where the file will be created.
I would like this fixed in order to use Fordroid tool. Thanks!
The text was updated successfully, but these errors were encountered: