We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a0f8e28 commit cded757Copy full SHA for cded757
1 file changed
javascript/ql/test/query-tests/Security/CWE-400/ReDoS/tst.js
@@ -234,7 +234,7 @@ var good33 = /(a+)*([^]*|X)$/;
234
235
var bad64 = /((a+)*$|[^]+)/; // $ Alert[js/redos]
236
237
-var good34 = /([^]+|(a+)*$)/; // $ SPURIOUS: Alert - The only change compared to the above is the order of alternatives, which we don't model.
+var good34 = /([^]+|(a+)*$)/; // $ SPURIOUS: Alert[js/redos] - The only change compared to the above is the order of alternatives, which we don't model.
238
239
240
var good35 = /((;|^)a+)+$/;
0 commit comments