Python: Minor updates to 1.25 change notes

backporting fixes from `@sj`
This commit is contained in:
Rasmus Wriedt Larsen
2020-09-09 10:34:40 +02:00
committed by GitHub
parent 2979f9813e
commit 038688a55c

View File

@@ -2,8 +2,8 @@
* 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 model of taint sources for HTTP servers using `http.server`.
* Added taint modeling of routed parameters in flask.
* Improved modeling of builtin methods on strings for taint tracking.
* Added taint modeling of routed parameters in Flask.
* Improved modeling of built-in methods on strings for taint tracking.
* Improved classification of test files.
* New class `BoundMethodValue` exposing information about a bound method.
* The query `py/command-line-injection` now recognizes command execution with the `fabric` and `invoke` Python libraries.