From 07e141c5be15b6d3786fbeec8a022f6ef77b9194 Mon Sep 17 00:00:00 2001 From: Jami Cogswell Date: Mon, 15 Aug 2022 15:48:53 -0400 Subject: [PATCH] added commas to help file --- .../Security/CWE/CWE-489/DebuggableAttributeEnabled.qhelp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/java/ql/src/Security/CWE/CWE-489/DebuggableAttributeEnabled.qhelp b/java/ql/src/Security/CWE/CWE-489/DebuggableAttributeEnabled.qhelp index 48cc442e4bf..f1b562f2db6 100644 --- a/java/ql/src/Security/CWE/CWE-489/DebuggableAttributeEnabled.qhelp +++ b/java/ql/src/Security/CWE/CWE-489/DebuggableAttributeEnabled.qhelp @@ -9,15 +9,15 @@ In this file, the android:debuggable attribute of the applica define whether or not the application can be debugged. When set to true, this attribute will allow the application to be debugged even when running on a device in user mode.

-

When a debugger is enabled it could allow for entry points in the application or reveal sensitive information. +

When a debugger is enabled, it could allow for entry points in the application or reveal sensitive information. As a result, android:debuggable should only be enabled during development and should be disabled in production builds.

-

In Android applications either set the android:debuggable attribute to false -or do not include it in the manifest. The default value when not included is false.

+

In Android applications, either set the android:debuggable attribute to false, +or do not include it in the manifest. The default value, when not included, is false.