Python: Add change-note

This commit is contained in:
Rasmus Wriedt Larsen
2022-02-08 12:02:56 +01:00
parent b276b2d48c
commit 3e01816f0c

View File

@@ -0,0 +1,4 @@
---
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.