File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
python/ql/src/experimental/semmle/python/libraries Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ private module Python_JWT {
3333
3434 override DataFlow:: Node getPayload ( ) { result = this .getArg ( 0 ) }
3535
36- override DataFlow:: Node getKey ( ) { result = verifyCall ( ) .getArg ( 1 ) }
36+ override DataFlow:: Node getKey ( ) { result = this . verifyCall ( ) .getArg ( 1 ) }
3737
38- override DataFlow:: Node getAlgorithm ( ) { result = verifyCall ( ) .getArg ( 2 ) }
38+ override DataFlow:: Node getAlgorithm ( ) { result = this . verifyCall ( ) .getArg ( 2 ) }
3939
4040 override string getAlgorithmString ( ) {
4141 exists ( StrConst str |
@@ -46,6 +46,6 @@ private module Python_JWT {
4646
4747 override DataFlow:: Node getOptions ( ) { none ( ) }
4848
49- override predicate verifiesSignature ( ) { exists ( verifyCall ( ) ) }
49+ override predicate verifiesSignature ( ) { exists ( this . verifyCall ( ) ) }
5050 }
5151}
You can’t perform that action at this time.
0 commit comments