Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Added more clarity. So its easy for other folks.
  • Loading branch information
In3tinct committed Jan 25, 2024
1 parent 5a1abce commit 9db9dae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ furlzz is a small fuzzer written to test out iOS URL schemes.
It does so by attaching to the application using Frida and based on the input/seed it mutates the data
and tries to open the mutated URL. furlzz works in-process, meaning you aren't actually opening
the URL using apps such as SpringBoard. furlzz supports universal links which are being used with
`scene:continueUserActivity`. On some applications it is worth trying to use `app` as method for custom links, because that
`scene:continueUserActivity` and `application:continueUserActivity`. On some applications it is worth trying to use `app` as method for custom links, because that
can work as well.

# Installation
Expand Down Expand Up @@ -78,9 +78,9 @@ encode on the mutated input while the second one generates base64 from it.
Right now furlzz supports a couple of methods of opening URLs:
* `delegate` when the application uses `-[AppDelegate application:openURL:options:]`
* `app` when the application is using `-[UIApplication openURL:]`
* `scene_activity` - when the application is using `-[UISceneDelegate scene:continueUserActivity]`
* `scene_activity` - when the application is using `-[UISceneDelegate scene:continueUserActivity]` - Universal Links
* `scene_context` when the application is using `-[UISceneDelegate scene:openURLContexts:]`
* `delegate_activity` when the application is using `-[AppDelegate application:continueUserActivity:restorationHandler]`
* `delegate_activity` when the application is using `-[AppDelegate application:continueUserActivity:restorationHandler]` - Universal Links
# Additional flags
Expand Down

0 comments on commit 9db9dae

Please sign in to comment.