ios-list-apps
4 views
ab856ca8...
Description
列出手机上安装的应用
How to Use
Download the script and run it with Frida CLI:
Download ScriptThen run with Frida:
frida -U -f YOUR_PACKAGE_NAME -l ios-list-apps.js
Replace YOUR_PACKAGE_NAME with the target app's package name.
Source Code
JavaScript
ObjC.schedule(ObjC.mainQueue, function() {
var workspace = ObjC.classes.LSApplicationWorkspace.defaultWorkspace();
var apps = workspace.allApplications();
var appEnumerator = apps.objectEnumerator();
var app;
while ((app = appEnumerator.nextObject()) !== null) {
console.log(app.localizedName().toString() + ": " + app.applicationIdentifier().toString());
}
});
Comments