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
{{ message }}
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.
Complex AndroidManifest.xml analysis implemented but some clarifications are required in order to improve these detections in the next version (0.3.0). That's why this issue will remain openned.
We need to add content providers, receivers, etc. to manifest analysis, and rules to decide what to analyze. Here is the complete list:
<provider>
:android:exported="false"
everything is OK.android:exported="true"
and anytargetSdkVersion
or noandroid:exported
andminSdkVersion < 17
, we could have a vulnerability:android:permission
orandroid:readPermission
orandroid:writePermission
, only warning.<receiver>
,<activity>
,<activity-alias>
or<service>
:android:exported="false"
everything is OK.android:exported="true"
we could have a vulnerability:android:permission
, only warning.android:exported
, we could have a vulnerability:<intent-filter>
, everything is OK.<intent-filter>
:android:permission
, only warning.Analysis from AndroBugs: https://github.com/AndroBugs/AndroBugs_Framework/blob/master/androbugs.py
The text was updated successfully, but these errors were encountered: