Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:pypi/aiohttp@1.3.1
purl pkg:pypi/aiohttp@1.3.1
Next non-vulnerable version 3.13.4
Latest non-vulnerable version 4.0.0a0
Risk 10.0
Vulnerabilities affecting this package (22)
Vulnerability Summary Fixed by
VCID-88cm-cxp9-ekgn
Aliases:
CVE-2021-21330
GHSA-v6wp-4m6f-gcjg
PYSEC-2021-76
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. In aiohttp before version 3.7.4 there is an open redirect vulnerability. A maliciously crafted link to an aiohttp-based web-server could redirect the browser to a different website. It is caused by a bug in the `aiohttp.web_middlewares.normalize_path_middleware` middleware. This security problem has been fixed in 3.7.4. Upgrade your dependency using pip as follows "pip install aiohttp >= 3.7.4". If upgrading is not an option for you, a workaround can be to avoid using `aiohttp.web_middlewares.normalize_path_middleware` in your applications.
3.7.4
Affected by 20 other vulnerabilities.
VCID-bcuu-jvzt-6fhn
Aliases:
CVE-2023-49081
GHSA-q3qx-c6g2-7pw2
PYSEC-2023-250
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. Improper validation made it possible for an attacker to modify the HTTP request (e.g. to insert a new header) or create a new HTTP request if the attacker controls the HTTP version. The vulnerability only occurs if the attacker can control the HTTP version of the request. This issue has been patched in version 3.9.0.
3.9.0
Affected by 14 other vulnerabilities.
VCID-bhkk-2b7c-wfgr
Aliases:
CVE-2024-30251
GHSA-5m98-qgg9-wh84
aiohttp vulnerable to Denial of Service when trying to parse malformed POST requests ### Summary An attacker can send a specially crafted POST (multipart/form-data) request. When the aiohttp server processes it, the server will enter an infinite loop and be unable to process any further requests. ### Impact An attacker can stop the application from serving requests after sending a single request. ------- For anyone needing to patch older versions of aiohttp, the minimum diff needed to resolve the issue is (located in `_read_chunk_from_length()`): ```diff diff --git a/aiohttp/multipart.py b/aiohttp/multipart.py index 227be605c..71fc2654a 100644 --- a/aiohttp/multipart.py +++ b/aiohttp/multipart.py @@ -338,6 +338,8 @@ class BodyPartReader: assert self._length is not None, "Content-Length required for chunked read" chunk_size = min(size, self._length - self._read_bytes) chunk = await self._content.read(chunk_size) + if self._content.at_eof(): + self._at_eof = True return chunk async def _read_chunk_from_stream(self, size: int) -> bytes: ``` This does however introduce some very minor issues with handling form data. So, if possible, it would be recommended to also backport the changes in: https://github.com/aio-libs/aiohttp/commit/cebe526b9c34dc3a3da9140409db63014bc4cf19 https://github.com/aio-libs/aiohttp/commit/7eecdff163ccf029fbb1ddc9de4169d4aaeb6597 https://github.com/aio-libs/aiohttp/commit/f21c6f2ca512a026ce7f0f6c6311f62d6a638866
3.9.4
Affected by 10 other vulnerabilities.
VCID-d3pa-kwgz-vuag
Aliases:
CVE-2025-69228
GHSA-6jhg-hg63-jvvf
AIOHTTP vulnerable to denial of service through large payloads ### Summary A request can be crafted in such a way that an aiohttp server's memory fills up uncontrollably during processing. ### Impact If an application includes a handler that uses the `Request.post()` method, an attacker may be able to freeze the server by exhausting the memory. ----- Patch: https://github.com/aio-libs/aiohttp/commit/b7dbd35375aedbcd712cbae8ad513d56d11cce60
3.13.3
Affected by 10 other vulnerabilities.
VCID-ft9z-nd6x-27dz
Aliases:
CVE-2025-69225
GHSA-mqqc-3gqh-h2x8
AIOHTTP has unicode match groups in regexes for ASCII protocol elements ### Summary The parser allows non-ASCII decimals to be present in the Range header. ### Impact There is no known impact, but there is the possibility that there's a method to exploit a request smuggling vulnerability. ---- Patch: https://github.com/aio-libs/aiohttp/commit/c7b7a044f88c71cefda95ec75cdcfaa4792b3b96
3.13.3
Affected by 10 other vulnerabilities.
VCID-jxqg-x9dh-z3hb
Aliases:
CVE-2024-23829
GHSA-8qpw-xqxj-h4r2
PYSEC-2024-26
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. Security-sensitive parts of the Python HTTP parser retained minor differences in allowable character sets, that must trigger error handling to robustly match frame boundaries of proxies in order to protect against injection of additional requests. Additionally, validation could trigger exceptions that were not handled consistently with processing of other malformed input. Being more lenient than internet standards require could, depending on deployment environment, assist in request smuggling. The unhandled exception could cause excessive resource consumption on the application server and/or its logging facilities. This vulnerability exists due to an incomplete fix for CVE-2023-47627. Version 3.9.2 fixes this vulnerability.
3.9.2
Affected by 12 other vulnerabilities.
VCID-k122-7d38-2ug5
Aliases:
CVE-2025-53643
GHSA-9548-qrrj-x5pj
AIOHTTP is vulnerable to HTTP Request/Response Smuggling through incorrect parsing of chunked trailer sections ### Summary The Python parser is vulnerable to a request smuggling vulnerability due to not parsing trailer sections of an HTTP request. ### Impact If a pure Python version of aiohttp is installed (i.e. without the usual C extensions) or AIOHTTP_NO_EXTENSIONS is enabled, then an attacker may be able to execute a request smuggling attack to bypass certain firewalls or proxy protections. ---- Patch: https://github.com/aio-libs/aiohttp/commit/e8d774f635dc6d1cd3174d0e38891da5de0e2b6a
3.12.14
Affected by 8 other vulnerabilities.
VCID-peyu-fxyx-ayde
Aliases:
CVE-2025-69229
GHSA-g84x-mcqj-x9qq
AIOHTTP vulnerable to DoS through chunked messages ### Summary Handling of chunked messages can result in excessive blocking CPU usage when receiving a large number of chunks. ### Impact If an application makes use of the `request.read()` method in an endpoint, it may be possible for an attacker to cause the server to spend a moderate amount of blocking CPU time (e.g. 1 second) while processing the request. This could potentially lead to DoS as the server would be unable to handle other requests during that time. ----- Patch: https://github.com/aio-libs/aiohttp/commit/dc3170b56904bdf814228fae70a5501a42a6c712 Patch: https://github.com/aio-libs/aiohttp/commit/4ed97a4e46eaf61bd0f05063245f613469700229
3.13.3
Affected by 10 other vulnerabilities.
VCID-pmr9-w1fc-93cm
Aliases:
CVE-2023-47627
GHSA-gfw2-4jvh-wgfg
PYSEC-2023-246
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. The HTTP parser in AIOHTTP has numerous problems with header parsing, which could lead to request smuggling. This parser is only used when AIOHTTP_NO_EXTENSIONS is enabled (or not using a prebuilt wheel). These bugs have been addressed in commit `d5c12ba89` which has been included in release version 3.8.6. Users are advised to upgrade. There are no known workarounds for these issues.
3.8.6
Affected by 16 other vulnerabilities.
VCID-pqus-ew4j-k7da
Aliases:
CVE-2024-23334
GHSA-5h86-8mv2-jq9f
PYSEC-2024-24
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. When using aiohttp as a web server and configuring static routes, it is necessary to specify the root path for static files. Additionally, the option 'follow_symlinks' can be used to determine whether to follow symbolic links outside the static root directory. When 'follow_symlinks' is set to True, there is no validation to check if reading a file is within the root directory. This can lead to directory traversal vulnerabilities, resulting in unauthorized access to arbitrary files on the system, even when symlinks are not present. Disabling follow_symlinks and using a reverse proxy are encouraged mitigations. Version 3.9.2 fixes this issue.
3.9.2
Affected by 12 other vulnerabilities.
VCID-qrus-4szm-c3bj
Aliases:
CVE-2025-69224
GHSA-69f9-5gxw-wvc2
AIOHTTP's unicode processing of header values could cause parsing discrepancies ### Summary The Python HTTP parser may allow a request smuggling attack with the presence of non-ASCII characters. ### Impact If a pure Python version of aiohttp is installed (i.e. without the usual C extensions) or AIOHTTP_NO_EXTENSIONS is enabled, then an attacker may be able to execute a request smuggling attack to bypass certain firewalls or proxy protections. ------ Patch: https://github.com/aio-libs/aiohttp/commit/32677f2adfd907420c078dda6b79225c6f4ebce0
3.13.3
Affected by 10 other vulnerabilities.
VCID-sjws-ddnq-fke2
Aliases:
CVE-2025-69223
GHSA-6mq8-rvhq-8wgg
AIOHTTP's HTTP Parser auto_decompress feature is vulnerable to zip bomb ### Summary A zip bomb can be used to execute a DoS against the aiohttp server. ### Impact An attacker may be able to send a compressed request that when decompressed by aiohttp could exhaust the host's memory. ------ Patch: https://github.com/aio-libs/aiohttp/commit/2b920c39002cee0ec5b402581779bbaaf7c9138a
3.13.3
Affected by 10 other vulnerabilities.
VCID-t2aj-cszz-tyd7
Aliases:
CVE-2023-47641
GHSA-xx9p-xxvh-7g8j
PYSEC-2023-247
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. Affected versions of aiohttp have a security vulnerability regarding the inconsistent interpretation of the http protocol. HTTP/1.1 is a persistent protocol, if both Content-Length(CL) and Transfer-Encoding(TE) header values are present it can lead to incorrect interpretation of two entities that parse the HTTP and we can poison other sockets with this incorrect interpretation. A possible Proof-of-Concept (POC) would be a configuration with a reverse proxy(frontend) that accepts both CL and TE headers and aiohttp as backend. As aiohttp parses anything with chunked, we can pass a chunked123 as TE, the frontend entity will ignore this header and will parse Content-Length. The impact of this vulnerability is that it is possible to bypass any proxy rule, poisoning sockets to other users like passing Authentication Headers, also if it is present an Open Redirect an attacker could combine it to redirect random users to another website and log the request. This vulnerability has been addressed in release 3.8.0 of aiohttp. Users are advised to upgrade. There are no known workarounds for this vulnerability.
3.8.0
Affected by 19 other vulnerabilities.
VCID-t9gx-etxx-vkgb
Aliases:
CVE-2025-69227
GHSA-jj3x-wxrx-4x23
AIOHTTP vulnerable to DoS when bypassing asserts ### Summary When assert statements are bypassed, an infinite loop can occur, resulting in a DoS attack when processing a POST body. ### Impact If optimisations are enabled (`-O` or `PYTHONOPTIMIZE=1`), and the application includes a handler that uses the `Request.post()` method, then an attacker may be able to execute a DoS attack with a specially crafted message. ------ Patch: https://github.com/aio-libs/aiohttp/commit/bc1319ec3cbff9438a758951a30907b072561259
3.13.3
Affected by 10 other vulnerabilities.
VCID-tn28-662n-vug8
Aliases:
CVE-2024-27306
GHSA-7gpw-8wmc-pm8g
aiohttp Cross-site Scripting vulnerability on index pages for static file handling ### Summary A XSS vulnerability exists on index pages for static file handling. ### Details When using `web.static(..., show_index=True)`, the resulting index pages do not escape file names. If users can upload files with arbitrary filenames to the static directory, the server is vulnerable to XSS attacks. ### Workaround We have always recommended using a reverse proxy server (e.g. nginx) for serving static files. Users following the recommendation are unaffected. Other users can disable `show_index` if unable to upgrade. ----- Patch: https://github.com/aio-libs/aiohttp/pull/8319/files
3.9.4
Affected by 10 other vulnerabilities.
VCID-ttq3-65ny-skdg
Aliases:
CVE-2023-37276
GHSA-45c4-8wx5-qw6w
PYSEC-2023-120
aiohttp.web.Application vulnerable to HTTP request smuggling via llhttp HTTP request parser ### Impact aiohttp v3.8.4 and earlier are [bundled with llhttp v6.0.6](https://github.com/aio-libs/aiohttp/blob/v3.8.4/.gitmodules) which is vulnerable to CVE-2023-30589. The vulnerable code is used by aiohttp for its HTTP request parser when available which is the default case when installing from a wheel. This vulnerability only affects users of aiohttp as an HTTP server (ie `aiohttp.Application`), you are not affected by this vulnerability if you are using aiohttp as an HTTP client library (ie `aiohttp.ClientSession`). ### Reproducer ```python from aiohttp import web async def example(request: web.Request): headers = dict(request.headers) body = await request.content.read() return web.Response(text=f"headers: {headers} body: {body}") app = web.Application() app.add_routes([web.post('/', example)]) web.run_app(app) ``` Sending a crafted HTTP request will cause the server to misinterpret one of the HTTP header values leading to HTTP request smuggling. ```console $ printf "POST / HTTP/1.1\r\nHost: localhost:8080\r\nX-Abc: \rxTransfer-Encoding: chunked\r\n\r\n1\r\nA\r\n0\r\n\r\n" \ | nc localhost 8080 Expected output: headers: {'Host': 'localhost:8080', 'X-Abc': '\rxTransfer-Encoding: chunked'} body: b'' Actual output (note that 'Transfer-Encoding: chunked' is an HTTP header now and body is treated differently) headers: {'Host': 'localhost:8080', 'X-Abc': '', 'Transfer-Encoding': 'chunked'} body: b'A' ``` ### Patches Upgrade to the latest version of aiohttp to resolve this vulnerability. It has been fixed in v3.8.5: [`pip install aiohttp >= 3.8.5`](https://pypi.org/project/aiohttp/3.8.5/) ### Workarounds If you aren't able to upgrade you can reinstall aiohttp using `AIOHTTP_NO_EXTENSIONS=1` as an environment variable to disable the llhttp HTTP request parser implementation. The pure Python implementation isn't vulnerable to request smuggling: ```console $ python -m pip uninstall --yes aiohttp $ AIOHTTP_NO_EXTENSIONS=1 python -m pip install --no-binary=aiohttp --no-cache aiohttp ``` ### References * https://nvd.nist.gov/vuln/detail/CVE-2023-30589 * https://hackerone.com/reports/2001873
3.8.5
Affected by 18 other vulnerabilities.
4.0.0a0
Affected by 0 other vulnerabilities.
VCID-ue33-na1g-rqa7
Aliases:
CVE-2023-49082
GHSA-qvrw-v9rv-5rjx
PYSEC-2023-251
aiohttp is an asynchronous HTTP client/server framework for asyncio and Python. Improper validation makes it possible for an attacker to modify the HTTP request (e.g. insert a new header) or even create a new HTTP request if the attacker controls the HTTP method. The vulnerability occurs only if the attacker can control the HTTP method (GET, POST etc.) of the request. If the attacker can control the HTTP version of the request it will be able to modify the request (request smuggling). This issue has been patched in version 3.9.0.
3.9.0
Affected by 14 other vulnerabilities.
VCID-vqvz-jfqh-jkaz
Aliases:
CVE-2025-69226
GHSA-54jq-c3m8-4m76
AIOHTTP vulnerable to brute-force leak of internal static file path components ### Summary Path normalization for static files prevents path traversal, but opens up the ability for an attacker to ascertain the existence of absolute path components. ### Impact If an application uses `web.static()` (not recommended for production deployments), it may be possible for an attacker to ascertain the existence of path components. ------ Patch: https://github.com/aio-libs/aiohttp/commit/f2a86fd5ac0383000d1715afddfa704413f0711e
3.13.3
Affected by 10 other vulnerabilities.
VCID-wrsz-1761-ybeq
Aliases:
CVE-2018-1000519
GHSA-fpwp-69xv-c67f
PYSEC-2018-80
aio-libs aiohttp-session contains a Session Fixation vulnerability in load_session function for RedisStorage (see: https://github.com/aio-libs/aiohttp-session/blob/master/aiohttp_session/redis_storage.py#L42) that can result in Session Hijacking. This attack appear to be exploitable via Any method that allows setting session cookies (?session=<>, or meta tags or script tags with Set-Cookie).
2.4.0
Affected by 0 other vulnerabilities.
3.0.0b0
Affected by 21 other vulnerabilities.
VCID-zf8d-kxf1-sqds
Aliases:
GHSA-pjjw-qhg8-p2p9
GMS-2023-5095
aiohttp has vulnerable dependency that is vulnerable to request smuggling ### Summary llhttp 8.1.1 is vulnerable to two request smuggling vulnerabilities. Details have not been disclosed yet, so refer to llhttp for future information. The issue is resolved by using llhttp 9+ (which is included in aiohttp 3.8.6+).
3.8.6
Affected by 16 other vulnerabilities.
VCID-zm3a-mf2z-xfcm
Aliases:
CVE-2025-69230
GHSA-fh55-r93g-j68g
AIOHTTP Vulnerable to Cookie Parser Warning Storm ### Summary Reading multiple invalid cookies can lead to a logging storm. ### Impact If the ``cookies`` attribute is accessed in an application, then an attacker may be able to trigger a storm of warning-level logs using a specially crafted Cookie header. ---- Patch: https://github.com/aio-libs/aiohttp/commit/64629a0834f94e46d9881f4e99c41a137e1f3326
3.13.3
Affected by 10 other vulnerabilities.
VCID-zrgm-47ph-x3g3
Aliases:
CVE-2024-52304
GHSA-8495-4g3g-x7pr
aiohttp allows request smuggling due to incorrect parsing of chunk extensions ### Summary The Python parser parses newlines in chunk extensions incorrectly which can lead to request smuggling vulnerabilities under certain conditions. ### Impact If a pure Python version of aiohttp is installed (i.e. without the usual C extensions) or `AIOHTTP_NO_EXTENSIONS` is enabled, then an attacker may be able to execute a request smuggling attack to bypass certain firewalls or proxy protections. ----- Patch: https://github.com/aio-libs/aiohttp/commit/259edc369075de63e6f3a4eaade058c62af0df71
3.10.11
Affected by 9 other vulnerabilities.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-17T00:05:54.328014+00:00 GitLab Importer Affected by VCID-t9gx-etxx-vkgb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69227.yml 38.4.0
2026-04-17T00:05:52.364966+00:00 GitLab Importer Affected by VCID-d3pa-kwgz-vuag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69228.yml 38.4.0
2026-04-17T00:05:50.636753+00:00 GitLab Importer Affected by VCID-peyu-fxyx-ayde https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69229.yml 38.4.0
2026-04-17T00:05:47.063645+00:00 GitLab Importer Affected by VCID-qrus-4szm-c3bj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69224.yml 38.4.0
2026-04-17T00:05:44.668806+00:00 GitLab Importer Affected by VCID-sjws-ddnq-fke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69223.yml 38.4.0
2026-04-17T00:05:34.908957+00:00 GitLab Importer Affected by VCID-vqvz-jfqh-jkaz https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69226.yml 38.4.0
2026-04-17T00:05:32.037863+00:00 GitLab Importer Affected by VCID-zm3a-mf2z-xfcm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69230.yml 38.4.0
2026-04-17T00:05:29.397771+00:00 GitLab Importer Affected by VCID-ft9z-nd6x-27dz https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69225.yml 38.4.0
2026-04-16T23:33:11.216924+00:00 GitLab Importer Affected by VCID-k122-7d38-2ug5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-53643.yml 38.4.0
2026-04-16T23:14:49.269291+00:00 GitLab Importer Affected by VCID-zrgm-47ph-x3g3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-52304.yml 38.4.0
2026-04-16T22:57:04.296329+00:00 GitLab Importer Affected by VCID-bhkk-2b7c-wfgr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-30251.yml 38.4.0
2026-04-16T22:56:26.505331+00:00 GitLab Importer Affected by VCID-tn28-662n-vug8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-27306.yml 38.4.0
2026-04-16T22:49:00.770467+00:00 GitLab Importer Affected by VCID-jxqg-x9dh-z3hb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-23829.yml 38.4.0
2026-04-16T22:48:52.562505+00:00 GitLab Importer Affected by VCID-pqus-ew4j-k7da https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-23334.yml 38.4.0
2026-04-16T22:44:03.784402+00:00 GitLab Importer Affected by VCID-bcuu-jvzt-6fhn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-49081.yml 38.4.0
2026-04-16T22:43:59.180166+00:00 GitLab Importer Affected by VCID-ue33-na1g-rqa7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-49082.yml 38.4.0
2026-04-16T22:43:57.779158+00:00 GitLab Importer Affected by VCID-zf8d-kxf1-sqds https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/GMS-2023-5095.yml 38.4.0
2026-04-16T22:43:17.635314+00:00 GitLab Importer Affected by VCID-t2aj-cszz-tyd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-47641.yml 38.4.0
2026-04-16T22:43:12.726306+00:00 GitLab Importer Affected by VCID-pmr9-w1fc-93cm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-47627.yml 38.4.0
2026-04-16T22:34:16.784020+00:00 GitLab Importer Affected by VCID-ttq3-65ny-skdg https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-37276.yml 38.4.0
2026-04-16T21:17:54.339841+00:00 GitLab Importer Affected by VCID-88cm-cxp9-ekgn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2021-21330.yml 38.4.0
2026-04-16T20:45:47.221689+00:00 GitLab Importer Affected by VCID-wrsz-1761-ybeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2018-1000519.yml 38.4.0
2026-04-12T01:29:13.674041+00:00 GitLab Importer Affected by VCID-t9gx-etxx-vkgb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69227.yml 38.3.0
2026-04-12T01:29:11.583392+00:00 GitLab Importer Affected by VCID-d3pa-kwgz-vuag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69228.yml 38.3.0
2026-04-12T01:29:09.717245+00:00 GitLab Importer Affected by VCID-peyu-fxyx-ayde https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69229.yml 38.3.0
2026-04-12T01:29:05.991444+00:00 GitLab Importer Affected by VCID-qrus-4szm-c3bj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69224.yml 38.3.0
2026-04-12T01:29:03.642697+00:00 GitLab Importer Affected by VCID-sjws-ddnq-fke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69223.yml 38.3.0
2026-04-12T01:28:53.140682+00:00 GitLab Importer Affected by VCID-vqvz-jfqh-jkaz https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69226.yml 38.3.0
2026-04-12T01:28:50.187549+00:00 GitLab Importer Affected by VCID-zm3a-mf2z-xfcm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69230.yml 38.3.0
2026-04-12T01:28:47.362998+00:00 GitLab Importer Affected by VCID-ft9z-nd6x-27dz https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69225.yml 38.3.0
2026-04-12T00:53:11.393231+00:00 GitLab Importer Affected by VCID-k122-7d38-2ug5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-53643.yml 38.3.0
2026-04-12T00:33:24.357038+00:00 GitLab Importer Affected by VCID-zrgm-47ph-x3g3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-52304.yml 38.3.0
2026-04-12T00:15:18.713231+00:00 GitLab Importer Affected by VCID-bhkk-2b7c-wfgr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-30251.yml 38.3.0
2026-04-12T00:14:53.578779+00:00 GitLab Importer Affected by VCID-tn28-662n-vug8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-27306.yml 38.3.0
2026-04-12T00:08:53.006504+00:00 GitLab Importer Affected by VCID-jxqg-x9dh-z3hb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-23829.yml 38.3.0
2026-04-12T00:08:44.007367+00:00 GitLab Importer Affected by VCID-pqus-ew4j-k7da https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-23334.yml 38.3.0
2026-04-12T00:03:40.129430+00:00 GitLab Importer Affected by VCID-bcuu-jvzt-6fhn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-49081.yml 38.3.0
2026-04-12T00:03:35.190150+00:00 GitLab Importer Affected by VCID-ue33-na1g-rqa7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-49082.yml 38.3.0
2026-04-12T00:03:33.690003+00:00 GitLab Importer Affected by VCID-zf8d-kxf1-sqds https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/GMS-2023-5095.yml 38.3.0
2026-04-12T00:02:52.221884+00:00 GitLab Importer Affected by VCID-t2aj-cszz-tyd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-47641.yml 38.3.0
2026-04-12T00:02:46.852441+00:00 GitLab Importer Affected by VCID-pmr9-w1fc-93cm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-47627.yml 38.3.0
2026-04-11T23:53:19.961863+00:00 GitLab Importer Affected by VCID-ttq3-65ny-skdg https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-37276.yml 38.3.0
2026-04-11T22:30:04.730485+00:00 GitLab Importer Affected by VCID-88cm-cxp9-ekgn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2021-21330.yml 38.3.0
2026-04-11T21:56:33.736640+00:00 GitLab Importer Affected by VCID-wrsz-1761-ybeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2018-1000519.yml 38.3.0
2026-04-03T01:37:56.559114+00:00 GitLab Importer Affected by VCID-t9gx-etxx-vkgb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69227.yml 38.1.0
2026-04-03T01:37:54.548676+00:00 GitLab Importer Affected by VCID-d3pa-kwgz-vuag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69228.yml 38.1.0
2026-04-03T01:37:52.740380+00:00 GitLab Importer Affected by VCID-peyu-fxyx-ayde https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69229.yml 38.1.0
2026-04-03T01:37:49.152074+00:00 GitLab Importer Affected by VCID-qrus-4szm-c3bj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69224.yml 38.1.0
2026-04-03T01:37:46.382168+00:00 GitLab Importer Affected by VCID-sjws-ddnq-fke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69223.yml 38.1.0
2026-04-03T01:37:35.354093+00:00 GitLab Importer Affected by VCID-vqvz-jfqh-jkaz https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69226.yml 38.1.0
2026-04-03T01:37:32.803487+00:00 GitLab Importer Affected by VCID-zm3a-mf2z-xfcm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69230.yml 38.1.0
2026-04-03T01:37:30.039062+00:00 GitLab Importer Affected by VCID-ft9z-nd6x-27dz https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-69225.yml 38.1.0
2026-04-03T01:01:20.356164+00:00 GitLab Importer Affected by VCID-k122-7d38-2ug5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2025-53643.yml 38.1.0
2026-04-03T00:41:07.632380+00:00 GitLab Importer Affected by VCID-zrgm-47ph-x3g3 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-52304.yml 38.1.0
2026-04-03T00:22:07.453350+00:00 GitLab Importer Affected by VCID-bhkk-2b7c-wfgr https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-30251.yml 38.1.0
2026-04-03T00:21:24.900612+00:00 GitLab Importer Affected by VCID-tn28-662n-vug8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-27306.yml 38.1.0
2026-04-03T00:13:32.548228+00:00 GitLab Importer Affected by VCID-jxqg-x9dh-z3hb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-23829.yml 38.1.0
2026-04-03T00:13:22.169188+00:00 GitLab Importer Affected by VCID-pqus-ew4j-k7da https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2024-23334.yml 38.1.0
2026-04-03T00:08:20.769372+00:00 GitLab Importer Affected by VCID-bcuu-jvzt-6fhn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-49081.yml 38.1.0
2026-04-03T00:08:15.806148+00:00 GitLab Importer Affected by VCID-ue33-na1g-rqa7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-49082.yml 38.1.0
2026-04-03T00:08:14.376482+00:00 GitLab Importer Affected by VCID-zf8d-kxf1-sqds https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/GMS-2023-5095.yml 38.1.0
2026-04-03T00:05:51.674930+00:00 GitLab Importer Affected by VCID-t2aj-cszz-tyd7 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-47641.yml 38.1.0
2026-04-03T00:05:46.555479+00:00 GitLab Importer Affected by VCID-pmr9-w1fc-93cm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-47627.yml 38.1.0
2026-04-02T23:56:25.772469+00:00 GitLab Importer Affected by VCID-ttq3-65ny-skdg https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2023-37276.yml 38.1.0
2026-04-02T22:41:34.152991+00:00 GitLab Importer Affected by VCID-88cm-cxp9-ekgn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2021-21330.yml 38.1.0
2026-04-02T22:09:57.353505+00:00 GitLab Importer Affected by VCID-wrsz-1761-ybeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2018-1000519.yml 38.1.0
2026-04-01T16:59:06.795344+00:00 GitLab Importer Affected by VCID-88cm-cxp9-ekgn https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2021-21330.yml 38.0.0
2026-04-01T16:27:15.941271+00:00 GitLab Importer Affected by VCID-wrsz-1761-ybeq https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/aiohttp/CVE-2018-1000519.yml 38.0.0
2026-04-01T15:15:50.693518+00:00 PyPI Importer Affected by VCID-jxqg-x9dh-z3hb https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:15:49.822644+00:00 PyPI Importer Affected by VCID-pqus-ew4j-k7da https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:15:26.156564+00:00 PyPI Importer Affected by VCID-bcuu-jvzt-6fhn https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:15:25.312268+00:00 PyPI Importer Affected by VCID-ue33-na1g-rqa7 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:15:21.907605+00:00 PyPI Importer Affected by VCID-pmr9-w1fc-93cm https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:15:21.092052+00:00 PyPI Importer Affected by VCID-t2aj-cszz-tyd7 https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:14:26.952227+00:00 PyPI Importer Affected by VCID-ttq3-65ny-skdg https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T15:03:26.731973+00:00 PyPI Importer Affected by VCID-88cm-cxp9-ekgn https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 38.0.0
2026-04-01T12:49:15.726841+00:00 Pypa Importer Affected by VCID-pqus-ew4j-k7da https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2024-24.yaml 38.0.0
2026-04-01T12:49:15.448450+00:00 Pypa Importer Affected by VCID-jxqg-x9dh-z3hb https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2024-26.yaml 38.0.0
2026-04-01T12:49:02.087634+00:00 Pypa Importer Affected by VCID-bcuu-jvzt-6fhn https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2023-250.yaml 38.0.0
2026-04-01T12:49:01.621919+00:00 Pypa Importer Affected by VCID-ue33-na1g-rqa7 https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2023-251.yaml 38.0.0
2026-04-01T12:49:00.202732+00:00 Pypa Importer Affected by VCID-pmr9-w1fc-93cm https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2023-246.yaml 38.0.0
2026-04-01T12:48:59.772023+00:00 Pypa Importer Affected by VCID-t2aj-cszz-tyd7 https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2023-247.yaml 38.0.0
2026-04-01T12:48:30.188598+00:00 Pypa Importer Affected by VCID-ttq3-65ny-skdg https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2023-120.yaml 38.0.0
2026-04-01T12:43:18.921522+00:00 Pypa Importer Affected by VCID-88cm-cxp9-ekgn https://github.com/pypa/advisory-database/blob/main/vulns/aiohttp/PYSEC-2021-76.yaml 38.0.0