Files
codeql/python/ql/lib/change-notes/2022-02-08-fix-attribute-taint.md
Rasmus Wriedt Larsen 3e01816f0c Python: Add change-note
2022-02-08 12:03:40 +01:00

5 lines
275 B
Markdown

---
category: minorAnalysis
---
* Fixed taint propagation for attribute assignment. In the assignment `x.foo = tainted` we no longer treat the entire object `x` as tainted, just because the attribute `foo` contains tainted data. This leads to slightly fewer false positives.