Frida on iOS
frida-ps
show running apps
frida-ps -Uashow installed applications
frida-ps -Uaistart frida gadget
# Hook into the process of the running UnCrackable1 app
frida -U UnCrackable1Access a Class
UIApplication = Objc.classes.UIApplicationCall a method
# Get the shared UIApplication
sharedApplication = UIApplication.sharedApplication()
# Get the key window
window = sharedApplication.keyWindow()
# Get the root view controller
rootVC = window.rootViewController()
# Get the main view
mainView = mainView = rootVC.view()
# Show the contents of the view
mainView.recursiveDescription().toString()Last updated