The system has debugging enabled in the production environment, which can cause technical information leaks when an error occurs.
Get technical or sensitive information.
Configure the attribute: application.android:debuggable to false in the file: AndroidManifest.xml.
Unauthorized attacker from Internet network.
⌚ 15 minutes.
Default score using CVSS 3.1. It may change depending on the context of the src.
Default score using CVSS 4.0. It may change depending on the context of the src.
The application does not enable debugging in a production environment
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:sharedUserId="android.uid.system" android:versionCode="4" android:versionName="1.0" package="com.android.zerosms">
<uses-permission android:name="android.permission.SEND_SMS"/>
<application android:debuggable="false" android:label="@7F040001" android:icon="@7F020002">
</application>
</manifest>
The application has debugging enabled on the AndroidManifest
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:sharedUserId="android.uid.system" android:versionCode="4" android:versionName="1.0" package="com.android.zerosms">
<uses-permission android:name="android.permission.SEND_SMS"/>
<application android:debuggable="true" android:label="@7F040001" android:icon="@7F020002">
</application>
</manifest>