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.
getASelectedSinkLocation
1 parent e213e3f commit b2cb585Copy full SHA for b2cb585
java/ql/lib/semmle/code/java/security/UnsafeDeserializationQuery.qll
@@ -323,6 +323,10 @@ private module UnsafeDeserializationConfig implements DataFlow::ConfigSig {
323
predicate isBarrier(DataFlow::Node node) { isUnsafeDeserializationSanitizer(node) }
324
325
predicate observeDiffInformedIncrementalMode() { any() }
326
+
327
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
328
+ result = sink.(UnsafeDeserializationSink).getMethodCall().getLocation()
329
+ }
330
}
331
332
module UnsafeDeserializationFlow = TaintTracking::Global<UnsafeDeserializationConfig>;
0 commit comments