File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
java/ql/src/experimental/Security/CWE/CWE-347 Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,8 +70,8 @@ private class JwtHandlerAdapterOnJwtMethods extends Method {
70
70
71
71
/**
72
72
* Holds if `parseHandlerExpr` is an insecure `JwtHandler`.
73
- * That is, it overrides a method from `JwtHandlerOnJwtMethods` and the overriden method is not a method from `JwtHandlerAdapterOnJwtMethods`.
74
- * A overriden method which is a method from `JwtHandlerAdapterOnJwtMethods` is safe, because these always throw an exception.
73
+ * That is, it overrides a method from `JwtHandlerOnJwtMethods` and the overridden method is not a method from `JwtHandlerAdapterOnJwtMethods`.
74
+ * A overridden method which is a method from `JwtHandlerAdapterOnJwtMethods` is safe, because these always throw an exception.
75
75
*/
76
76
private predicate isInsecureParseHandler ( Expr parseHandlerExpr ) {
77
77
exists ( RefType t |
@@ -155,7 +155,7 @@ private class SigningToExprDataFlow extends DataFlow::Configuration {
155
155
}
156
156
}
157
157
158
- /** An access to the `setSigningKey` or `setSigningKeyResolver` method (or an overriden method) defined in `JwtParser` and `JwtParserBuilder`. */
158
+ /** An access to the `setSigningKey` or `setSigningKeyResolver` method (or an overridden method) defined in `JwtParser` and `JwtParserBuilder`. */
159
159
private class SigningKeyMethodAccess extends MethodAccess {
160
160
SigningKeyMethodAccess ( ) {
161
161
exists ( Method m |
You can’t perform that action at this time.
0 commit comments