iOS apps security — Intercepting custom deeplinks for security testing.
infosecwriteups.com
·17h
🧪Binary Fuzzing
Preview
Report Post

Custom links/Deep links are a great attack vector when analyzing mobile apps for security issues.

With static analysis you can enumerate the custom links either using the .plist file or uploading the Mach-O binary to ghidra and searching for strings but usually these come without the parameters. For example: you will only find deeplinks://custom which is not really helpful to analyze or fuzz them since the input parameters in the URI (for example- deeplinks://custom?param=secret) is what one should seek for to manipulate or fuzz.

I created a simple Frida script for apps built with ObjC and Swift to intercept custom links. Swift classes (like SceneDelegate.swift) can be hooked it seems with Frida ObjC classes. But it has to contain packagename.class...

Similar Posts

Loading similar posts...