From abd9aab109b8ff1bcdca83628b53ee480e5309cb Mon Sep 17 00:00:00 2001 From: Erik Krogh Kristensen Date: Wed, 17 Jun 2020 17:17:29 +0200 Subject: [PATCH] code-injection -> code injection --- .../ql/src/Security/CWE-094/ImproperCodeSanitization.ql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/javascript/ql/src/Security/CWE-094/ImproperCodeSanitization.ql b/javascript/ql/src/Security/CWE-094/ImproperCodeSanitization.ql index 87861567d9d..55970bbc87a 100644 --- a/javascript/ql/src/Security/CWE-094/ImproperCodeSanitization.ql +++ b/javascript/ql/src/Security/CWE-094/ImproperCodeSanitization.ql @@ -1,6 +1,6 @@ /** * @name Improper code sanitization - * @description Escaping code as HTML does not provide protection against code-injection. + * @description Escaping code as HTML does not provide protection against code injection. * @kind path-problem * @problem.severity error * @precision high @@ -38,7 +38,7 @@ private DataFlow::Node remoteFlow(DataFlow::TypeTracker t) { private DataFlow::Node remoteFlow() { result = remoteFlow(DataFlow::TypeTracker::end()) } /** - * Gets a type-back-tracked instance of a code-injection sink using type-tracker `t`. + * Gets a type-back-tracked instance of a code injection sink using type-tracker `t`. */ private DataFlow::Node endsInCodeInjectionSink(DataFlow::TypeBackTracker t) { t.start() and @@ -53,7 +53,7 @@ private DataFlow::Node endsInCodeInjectionSink(DataFlow::TypeBackTracker t) { } /** - * Gets a reference to to a data-flow node that ends in a code-injection sink. + * Gets a reference to to a data-flow node that ends in a code injection sink. */ private DataFlow::Node endsInCodeInjectionSink() { result = endsInCodeInjectionSink(DataFlow::TypeBackTracker::end())