-
Type: Bug
-
Status: Open
-
Priority: Minor
-
Resolution: Unresolved
-
Affects Version/s: 5.6
-
Fix Version/s: QualifiedToSchedule
-
Component/s: Code Refactoring (Global)
See NXP-12672 for the base ticket. Some code does
String nxql = String.format("... STARTSWITH '%s'...", ..., path, ...);
Where the path is not escaped. For safety this should be:
String nxql = String.format("... STARTSWITH %s ...", ..., NXQL.escapeString(path), ...);
- depends on
-
NXP-12672 Crash when using quote in domain name
- Resolved