We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76bba60 commit 16113e6Copy full SHA for 16113e6
go/ql/src/Security/CWE-352/ConstantOauth2State.ql
@@ -140,9 +140,7 @@ predicate privateUrlFlowsToAuthCodeUrlCall(DataFlow::CallNode call) {
140
141
module FlowToPrintConfig implements DataFlow::ConfigSig {
142
additional predicate isSinkCall(DataFlow::Node sink, DataFlow::CallNode call) {
143
- exists(LoggerCall logCall | call = logCall |
144
- sink = logCall.getAValueFormattedMessageComponent()
145
- )
+ sink = call.(LoggerCall).getAValueFormattedMessageComponent()
146
}
147
148
predicate isSource(DataFlow::Node source) { source = any(AuthCodeUrl m).getACall().getResult() }
0 commit comments