🔗Deeplinks vulns
Qu'est ce qu'un deeplink ?
Reconnaissance
<activity
android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos" >
<intent-filter android:label="@string/filter_view_http_gizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepte les URIs commencant par "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- Noter que le "/" est requis ici-->
</intent-filter>
<intent-filter android:label="@string/filter_view_example_gizmos">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepet les URIs commancant par "example://s1rn3tz” -->
<data android:scheme="example"
android:host="s1rn3tz" />
</intent-filter>
</activity>Lister les deeplinks d'une application
Outils
Mis à jour