-
Hi *,
I wrote the following query to propagate taint to struct's fields access.
The above predicate is used in Do you have any suggestions about how to possibly improve the above query or to rewrite it by using SSA form? thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Flow through fields is one of the main things we're working to improve right now. Ideally your example should already work with either our current data-flow library ( |
Beta Was this translation helpful? Give feedback.
Flow through fields is one of the main things we're working to improve right now. Ideally your example should already work with either our current data-flow library (
import semmle.code.cpp.dataflow.TaintTracking
) or the replacement we're developing (import semmle.code.cpp.ir.dataflow.TaintTracking
). Have you tried both?