Python: Handle taint of f-strings

This commit is contained in:
Rasmus Wriedt Larsen
2020-08-24 17:20:16 +02:00
parent 2f090df6d3
commit 13148b42d3
3 changed files with 9 additions and 2 deletions

View File

@@ -20,3 +20,4 @@ The following changes in version 1.25 affect Python analysis in all applications
## Changes to libraries
* Importing `semmle.python.web.HttpRequest` will no longer import `UntrustedStringKind` transitively. `UntrustedStringKind` is the most commonly used non-abstract subclass of `ExternalStringKind`. If not imported (by one mean or another), taint-tracking queries that concern `ExternalStringKind` will not produce any results. Please ensure such queries contain an explicit import (`import semmle.python.security.strings.Untrusted`).
* Added support for tainted f-strings.