First published: Mon Jul 27 2020(Updated: )
This affects all versions of package uvicorn. The request logger provided by the package is vulnerable to ASNI escape sequence injection. Whenever any HTTP request is received, the default behaviour of uvicorn is to log its details to either the console or a log file. When attackers request crafted URLs with percent-encoded escape sequences, the logging component will log the URL after it's been processed with urllib.parse.unquote, therefore converting any percent-encoded characters into their single-character equivalent, which can have special meaning in terminal emulators. By requesting URLs with crafted paths, attackers can: * Pollute uvicorn's access logs, therefore jeopardising the integrity of such files. * Use ANSI sequence codes to attempt to interact with the terminal emulator that's displaying the logs (either in real time or from a file).
Credit: report@snyk.io report@snyk.io
Affected Software | Affected Version | How to fix |
---|---|---|
pip/uvicorn | <0.11.7 | 0.11.7 |
Encode Uvicorn |
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2020-7694 is a vulnerability in the uvicorn package that allows for ASNI escape sequence injection in the request logger.
All versions of the uvicorn package are affected by CVE-2020-7694.
CVE-2020-7694 has a severity rating of 7.5 (High).
To fix CVE-2020-7694, update the uvicorn package to version 0.11.7 or higher.
ASNI escape sequence injection is a vulnerability where an attacker can inject ASNI escape sequences into an application's logs, potentially leading to various security issues.