From 97d9fd9846851997d2da65a141f1fe10161728bc Mon Sep 17 00:00:00 2001 From: Raul Garcia <42392023+raulgarciamsft@users.noreply.github.com> Date: Tue, 5 Jul 2022 15:18:56 -0700 Subject: [PATCH] Update security-validation-disabled.ql --- .../JsonWebTokenHandler/security-validation-disabled.ql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/ql/src/experimental/Security Features/JsonWebTokenHandler/security-validation-disabled.ql b/csharp/ql/src/experimental/Security Features/JsonWebTokenHandler/security-validation-disabled.ql index 2e728700223..5d0491e826e 100644 --- a/csharp/ql/src/experimental/Security Features/JsonWebTokenHandler/security-validation-disabled.ql +++ b/csharp/ql/src/experimental/Security Features/JsonWebTokenHandler/security-validation-disabled.ql @@ -20,5 +20,5 @@ from where config.hasFlow(source, sink) and exists(Assignment a | a.getLValue() = pw | sink.asExpr() = a.getRValue()) -select sink, "The security sensitive property $@ is being disabled by the followign value: $@.", pw, +select sink, "The security sensitive property $@ is being disabled by the following value: $@.", pw, pw.getTarget().toString(), source, "false"