Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit abd9aab

Browse files
committed
code-injection -> code injection
1 parent 45e2b94 commit abd9aab

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

javascript/ql/src/Security/CWE-094/ImproperCodeSanitization.ql

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @name Improper code sanitization
3-
* @description Escaping code as HTML does not provide protection against code-injection.
3+
* @description Escaping code as HTML does not provide protection against code injection.
44
* @kind path-problem
55
* @problem.severity error
66
* @precision high
@@ -38,7 +38,7 @@ private DataFlow::Node remoteFlow(DataFlow::TypeTracker t) {
3838
private DataFlow::Node remoteFlow() { result = remoteFlow(DataFlow::TypeTracker::end()) }
3939

4040
/**
41-
* Gets a type-back-tracked instance of a code-injection sink using type-tracker `t`.
41+
* Gets a type-back-tracked instance of a code injection sink using type-tracker `t`.
4242
*/
4343
private DataFlow::Node endsInCodeInjectionSink(DataFlow::TypeBackTracker t) {
4444
t.start() and
@@ -53,7 +53,7 @@ private DataFlow::Node endsInCodeInjectionSink(DataFlow::TypeBackTracker t) {
5353
}
5454

5555
/**
56-
* Gets a reference to to a data-flow node that ends in a code-injection sink.
56+
* Gets a reference to to a data-flow node that ends in a code injection sink.
5757
*/
5858
private DataFlow::Node endsInCodeInjectionSink() {
5959
result = endsInCodeInjectionSink(DataFlow::TypeBackTracker::end())

0 commit comments

Comments
 (0)