Skip to content

Instantly share code, notes, and snippets.

@konsumer
Created July 9, 2020 19:17
Show Gist options
  • Save konsumer/373eb18dabd55b931f2087bbe7f891d1 to your computer and use it in GitHub Desktop.
Save konsumer/373eb18dabd55b931f2087bbe7f891d1 to your computer and use it in GitHub Desktop.
frida script to open a URL on ios
function openURL(url) {
const UIApplication = ObjC.classes.UIApplication.sharedApplication()
const toOpen = ObjC.classes.NSURL.URLWithString_(url)
return UIApplication.openURL_(toOpen)
}
openURL("https://google.com/search?q=cool")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment