You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ furlzz is a small fuzzer written to test out iOS URL schemes.
6
6
It does so by attaching to the application using Frida and based on the input/seed it mutates the data
7
7
and tries to open the mutated URL. furlzz works in-process, meaning you aren't actually opening
8
8
the URL using apps such as SpringBoard. furlzz supports universal links which are being used with
9
-
`scene:continueUserActivity`. On some applications it is worth trying to use `app` as method for custom links, because that
9
+
`scene:continueUserActivity` and `application:continueUserActivity`. On some applications it is worth trying to use `app` as method for custom links, because that
10
10
can work as well.
11
11
12
12
# Installation
@@ -78,9 +78,9 @@ encode on the mutated input while the second one generates base64 from it.
78
78
Right now furlzz supports a couple of methods of opening URLs:
79
79
*`delegate` when the application uses `-[AppDelegate application:openURL:options:]`
80
80
*`app` when the application is using `-[UIApplication openURL:]`
81
-
*`scene_activity` - when the application is using `-[UISceneDelegate scene:continueUserActivity]`
81
+
*`scene_activity` - when the application is using `-[UISceneDelegate scene:continueUserActivity]` - Universal Links
82
82
*`scene_context` when the application is using `-[UISceneDelegate scene:openURLContexts:]`
83
-
*`delegate_activity` when the application is using `-[AppDelegate application:continueUserActivity:restorationHandler]`
83
+
*`delegate_activity` when the application is using `-[AppDelegate application:continueUserActivity:restorationHandler]` - Universal Links
0 commit comments