Search for packages
Package details: pkg:pypi/twisted@13.0.0
purl pkg:pypi/twisted@13.0.0
Next non-vulnerable version 24.7.0rc1
Latest non-vulnerable version 24.7.0rc1
Risk 4.5
Vulnerabilities affecting this package (14)
Vulnerability Summary Fixed by
VCID-54jv-na1n-aaac
Aliases:
CVE-2019-12387
GHSA-6cc5-2vg4-cc7m
PYSEC-2019-128
PYSEC-2019-58
In Twisted before 19.2.1, twisted.web did not validate or sanitize URIs or HTTP methods, allowing an attacker to inject invalid characters such as CRLF.
19.2.1
Affected by 11 other vulnerabilities.
VCID-9v14-s7y4-aaaa
Aliases:
CVE-2014-7143
GHSA-3c45-wgjp-7v9r
PYSEC-2019-212
Python Twisted 14.0 trustRoot is not respected in HTTP client
14.0.1
Affected by 13 other vulnerabilities.
VCID-atn1-v3d1-aaag
Aliases:
CVE-2020-10109
GHSA-p5xh-vx83-mxcj
PYSEC-2020-260
In Twisted Web through 19.10.0, there was an HTTP request splitting vulnerability. When presented with a content-length and a chunked encoding header, the content-length took precedence and the remainder of the request body was interpreted as a pipelined request.
20.3.0rc1
Affected by 9 other vulnerabilities.
20.3.0
Affected by 6 other vulnerabilities.
VCID-c8g2-tksq-aaab
Aliases:
CVE-2022-39348
GHSA-vg46-2rrj-3647
Twisted vulnerable to NameVirtualHost Host header injection
22.10.0rc1
Affected by 3 other vulnerabilities.
22.10.0
Affected by 3 other vulnerabilities.
VCID-j9j7-9v69-aaas
Aliases:
CVE-2024-41671
GHSA-c8m8-j448-xjx7
twisted.web has disordered HTTP pipeline response ### Summary The HTTP 1.0 and 1.1 server provided by twisted.web could process pipelined HTTP requests out-of-order, possibly resulting in information disclosure. ### PoC 0. Start a fresh Debian container: ```sh docker run --workdir /repro --rm -it debian:bookworm-slim ``` 1. Install twisted and its dependencies: ```sh apt -y update && apt -y install ncat git python3 python3-pip \ && git clone --recurse-submodules https://github.com/twisted/twisted \ && cd twisted \ && pip3 install --break-system-packages . ``` 2. Run a twisted.web HTTP server that echos received requests' methods. e.g., the following: ```python from twisted.web import server, resource from twisted.internet import reactor class TheResource(resource.Resource): isLeaf = True def render_GET(self, request) -> bytes: return b"GET" def render_POST(self, request) -> bytes: return b"POST" site = server.Site(TheResource()) reactor.listenTCP(80, site) reactor.run() ``` 3. Send it a POST request with a chunked message body, pipelined with another POST request, wait a second, then send a GET request on the same connection: ```sh (printf 'POST / HTTP/1.1\r\nTransfer-Encoding: chunked\r\n\r\n0\r\n\r\nPOST / HTTP/1.1\r\nContent-Length: 0\r\n\r\n'; sleep 1; printf 'GET / HTTP/1.1\r\n\r\n'; sleep 1) | nc localhost 80 ``` 4. Observe that the responses arrive out of order: ``` HTTP/1.1 200 OK Server: TwistedWeb/24.3.0.post0 Date: Tue, 09 Jul 2024 06:19:41 GMT Content-Length: 5 Content-Type: text/html POST HTTP/1.1 200 OK Server: TwistedWeb/24.3.0.post0 Date: Tue, 09 Jul 2024 06:19:42 GMT Content-Length: 4 Content-Type: text/html GET HTTP/1.1 200 OK Server: TwistedWeb/24.3.0.post0 Date: Tue, 09 Jul 2024 06:19:42 GMT Content-Length: 5 Content-Type: text/html POST ``` ### Impact See [GHSA-xc8x-vp79-p3wm](https://github.com/twisted/twisted/security/advisories/GHSA-xc8x-vp79-p3wm). Further, for instances of twisted.web HTTP servers deployed behind reverse proxies that implement connection pooling, it may be possible for remote attackers to receive responses intended for other clients of the twisted.web server.
24.7.0rc1
Affected by 0 other vulnerabilities.
VCID-m52d-p5ms-aaak
Aliases:
GHSA-8r99-h8j2-rw64
GMS-2022-5173
Twisted vulnerable to HTTP Request Smuggling Attacks
20.3.0
Affected by 6 other vulnerabilities.
VCID-m7xg-ermr-aaae
Aliases:
CVE-2023-46137
GHSA-xc8x-vp79-p3wm
PYSEC-2023-224
twisted.web has disordered HTTP pipeline response
22.10.0rc1
Affected by 3 other vulnerabilities.
23.10.0rc1
Affected by 2 other vulnerabilities.
VCID-q7nj-ndhs-aaaf
Aliases:
CVE-2020-10108
GHSA-h96w-mmrf-2h6v
PYSEC-2020-259
In Twisted Web through 19.10.0, there was an HTTP request splitting vulnerability. When presented with two content-length headers, it ignored the first header. When the second content-length value was set to zero, the request body was interpreted as a pipelined request.
20.3.0rc1
Affected by 9 other vulnerabilities.
20.3.0
Affected by 6 other vulnerabilities.
VCID-q9z9-b3dx-aaah
Aliases:
CVE-2024-41810
GHSA-cf56-g6w6-pqq2
PYSEC-2024-75
Twisted vulnerable to HTML injection in HTTP redirect body ### Summary The `twisted.web.util.redirectTo` function contains an HTML injection vulnerability. If application code allows an attacker to control the redirect URL this vulnerability may result in Reflected Cross-Site Scripting (XSS) in the redirect response HTML body. ### Details Twisted’s `redirectTo` function generates an `HTTP 302 Redirect` response. The response contains an HTML body, built for exceptional cases where the browser doesn’t properly handle the redirect, allowing the user to click a link, navigating them to the specified destination. The function reflects the destination URL in the HTML body without any output encoding. ```python # https://github.com/twisted/twisted/blob/trunk/src/twisted/web/_template_util.py#L88 def redirectTo(URL: bytes, request: IRequest) -> bytes: # ---snip--- content = b""" <html> <head> <meta http-equiv=\"refresh\" content=\"0;URL=%(url)s\"> </head> <body bgcolor=\"#FFFFFF\" text=\"#000000\"> <a href=\"%(url)s\">click here</a> </body> </html> """ % { b"url": URL } return content ``` If an attacker has full or partial control over redirect location due to an application bug, also known as an “Open Redirect”, they may inject arbitrary HTML into the response’s body, ultimately leading to an XSS attack. It’s worth noting that the issue is known to maintainers and tracked with GitHub [Issue#9839](https://github.com/twisted/twisted/issues/9839). The issue description, however, does not make any mention of exploitability and simply states: “…Browsers don't seem to actually render that page…” ### PoC The issue can be reproduced by running the following Twisted-based HTTP server locally: ```python from twisted.web import server, resource from twisted.internet import reactor from twisted.web.util import redirectTo class Simple(resource.Resource): isLeaf = True def render_GET(self, request): url = request.args[b'url'][0] # <-- open redirect return redirectTo(url, request) site = server.Site(Simple()) reactor.listenTCP(9009, site) reactor.run() ``` Once running, navigate to the following URL: `http://127.0.0.1:9009?url=ws://example.com/"><script>alert(document.location)</script>`, and verify that the “alert” dialog was displayed. **Note**: Due to the different ways browsers validate the redirect Location header, this attack is possible only in **Firefox**. All other tested browsers will display an error message to the user and will not render the HTML body. ### Impact If successfully exploited, the issue will allow malicious JavaScript to run in the context of the victim's session. This will in turn lead to unauthorized access/modification to victim's account and information associated with it, or allow for unauthorized operations to be performed within the context of the victim's session.
24.7.0rc1
Affected by 0 other vulnerabilities.
VCID-rmb8-9sp1-aaac
Aliases:
CVE-2016-1000111
GHSA-3gqj-cmxr-p4x2
PYSEC-2020-214
Twisted before 16.3.1 does not attempt to address RFC 3875 section 4.1.18 namespace conflicts and therefore does not protect CGI applications from the presence of untrusted client data in the HTTP_PROXY environment variable, which might allow remote attackers to redirect a CGI application's outbound HTTP traffic to an arbitrary proxy server via a crafted Proxy header in an HTTP request, aka an "httpoxy" issue.
16.3.1
Affected by 12 other vulnerabilities.
VCID-shy4-bwc3-aaar
Aliases:
CVE-2022-21712
GHSA-92x2-jw7w-xvvx
PYSEC-2022-27
twisted is an event-driven networking engine written in Python. In affected versions twisted exposes cookies and authorization headers when following cross-origin redirects. This issue is present in the `twited.web.RedirectAgent` and `twisted.web. BrowserLikeRedirectAgent` functions. Users are advised to upgrade. There are no known workarounds.
22.1.0
Affected by 6 other vulnerabilities.
22.1
Affected by 0 other vulnerabilities.
VCID-sy9d-ubrb-aaak
Aliases:
CVE-2019-12855
GHSA-65rm-h285-5cc5
PYSEC-2019-129
PYSEC-2019-59
In words.protocols.jabber.xmlstream in Twisted through 19.2.1, XMPP support did not verify certificates when used with TLS, allowing an attacker to MITM connections.
19.7.0rc1
Affected by 10 other vulnerabilities.
19.7.0
Affected by 10 other vulnerabilities.
VCID-udmg-vnpc-aaag
Aliases:
CVE-2022-24801
GHSA-c2jg-hw38-jrqq
PYSEC-2022-195
Twisted is an event-based framework for internet applications, supporting Python 3.6+. Prior to version 22.4.0rc1, the Twisted Web HTTP 1.1 server, located in the `twisted.web.http` module, parsed several HTTP request constructs more leniently than permitted by RFC 7230. This non-conformant parsing can lead to desync if requests pass through multiple HTTP parsers, potentially resulting in HTTP request smuggling. Users who may be affected use Twisted Web's HTTP 1.1 server and/or proxy and also pass requests through a different HTTP server and/or proxy. The Twisted Web client is not affected. The HTTP 2.0 server uses a different parser, so it is not affected. The issue has been addressed in Twisted 22.4.0rc1. Two workarounds are available: Ensure any vulnerabilities in upstream proxies have been addressed, such as by upgrading them; or filter malformed requests by other means, such as configuration of an upstream proxy.
22.4.0
Affected by 4 other vulnerabilities.
VCID-yqut-y2a8-aaag
Aliases:
GHSA-32gv-6cf3-wcmq
GMS-2022-410
HTTP/2 DoS Attacks: Ping, Reset, and Settings Floods
19.10.0
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
2025-06-20T17:05:45.014055+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 36.1.3
2025-06-20T17:05:44.586197+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 36.1.3
2025-06-20T16:46:53.030311+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 36.1.3
2025-06-20T16:46:43.598205+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 36.1.3
2025-06-20T16:12:07.839444+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 36.1.3
2025-06-20T16:12:07.331285+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 36.1.3
2025-06-20T16:08:40.619937+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 36.1.3
2025-06-20T16:08:36.913431+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 36.1.3
2025-06-20T15:35:58.231312+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 36.1.3
2025-06-20T15:35:57.019925+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 36.1.3
2025-06-20T15:34:01.863417+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 36.1.3
2025-06-20T15:34:00.324722+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 36.1.3
2025-06-20T15:28:05.814052+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 36.1.3
2025-06-20T15:28:01.232630+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 36.1.3
2025-06-20T14:35:39.910230+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 36.1.3
2025-06-20T14:35:37.358849+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 36.1.3
2025-06-20T14:35:37.180083+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 36.1.3
2025-06-20T14:35:32.626330+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 36.1.3
2025-06-20T14:35:27.965520+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 36.1.3
2025-06-20T14:35:25.378255+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 36.1.3
2025-06-20T14:27:58.103726+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 36.1.3
2025-06-20T14:27:57.937660+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 36.1.3
2025-06-20T14:27:30.638659+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 36.1.3
2025-06-20T14:27:30.453691+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 36.1.3
2025-06-03T23:41:59.851387+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 36.1.0
2025-06-03T23:41:59.473773+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 36.1.0
2025-06-03T23:24:44.765505+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 36.1.0
2025-06-03T23:24:36.590302+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 36.1.0
2025-06-03T22:52:11.461078+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 36.1.0
2025-06-03T22:52:10.831256+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 36.1.0
2025-06-03T22:48:42.223540+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 36.1.0
2025-06-03T22:48:38.791549+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 36.1.0
2025-06-03T22:16:29.924358+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 36.1.0
2025-06-03T22:16:28.758343+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 36.1.0
2025-06-03T22:14:42.073679+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 36.1.0
2025-06-03T22:14:40.591321+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 36.1.0
2025-06-03T22:09:17.874017+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 36.1.0
2025-06-03T22:09:14.891233+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 36.1.0
2025-06-03T21:19:27.330696+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 36.1.0
2025-06-03T21:19:24.748167+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 36.1.0
2025-06-03T21:19:24.576628+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 36.1.0
2025-06-03T21:19:20.129803+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 36.1.0
2025-06-03T21:19:15.598995+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 36.1.0
2025-06-03T21:19:13.045903+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 36.1.0
2025-06-03T21:11:54.392292+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 36.1.0
2025-06-03T21:11:54.233064+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 36.1.0
2025-06-03T21:11:24.721308+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 36.1.0
2025-06-03T21:11:24.544866+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 36.1.0
2025-06-02T23:40:13.385898+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 36.1.2
2025-06-02T23:40:12.983670+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 36.1.2
2025-06-02T23:22:13.020800+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 36.1.2
2025-06-02T23:22:03.543000+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 36.1.2
2025-06-02T22:48:08.445262+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 36.1.2
2025-06-02T22:48:07.976993+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 36.1.2
2025-06-02T22:38:13.159129+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 36.1.2
2025-06-02T22:38:09.441109+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 36.1.2
2025-06-02T22:04:51.470124+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 36.1.2
2025-06-02T22:04:50.210032+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 36.1.2
2025-06-02T22:02:47.505786+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 36.1.2
2025-06-02T22:02:45.959580+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 36.1.2
2025-06-02T21:56:33.613955+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 36.1.2
2025-06-02T21:56:30.140098+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 36.1.2
2025-06-02T21:00:46.896605+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 36.1.2
2025-06-02T21:00:44.313682+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 36.1.2
2025-06-02T21:00:44.126041+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 36.1.2
2025-06-02T21:00:39.453243+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 36.1.2
2025-06-02T21:00:33.704419+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 36.1.2
2025-06-02T21:00:30.533762+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 36.1.2
2025-06-02T20:52:31.061803+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 36.1.2
2025-06-02T20:52:30.878928+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 36.1.2
2025-06-02T20:52:01.363845+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 36.1.2
2025-06-02T20:52:01.150541+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 36.1.2
2025-04-03T22:19:25.158369+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 36.0.0
2025-04-03T22:19:24.195756+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 36.0.0
2025-04-03T21:42:49.654308+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 36.0.0
2025-04-03T21:42:28.429651+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 36.0.0
2025-04-03T20:31:38.096930+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 36.0.0
2025-04-03T20:31:36.855649+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 36.0.0
2025-04-03T20:27:27.676840+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 36.0.0
2025-04-03T20:27:20.418110+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 36.0.0
2025-04-03T19:29:32.471821+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 36.0.0
2025-04-03T19:29:29.789933+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 36.0.0
2025-04-03T19:25:24.769676+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 36.0.0
2025-04-03T19:25:22.215221+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 36.0.0
2025-04-03T19:13:21.211076+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 36.0.0
2025-04-03T19:13:14.982680+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 36.0.0
2025-04-03T17:33:05.091861+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 36.0.0
2025-04-03T17:33:01.203232+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 36.0.0
2025-04-03T17:33:00.725384+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 36.0.0
2025-04-03T17:32:53.977384+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 36.0.0
2025-04-03T17:32:47.501194+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 36.0.0
2025-04-03T17:32:42.953046+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 36.0.0
2025-04-03T17:18:52.955634+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 36.0.0
2025-04-03T17:18:52.469122+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 36.0.0
2025-04-03T17:18:03.732333+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 36.0.0
2025-04-03T17:18:03.221021+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 36.0.0
2025-02-18T05:42:59.542151+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 35.1.0
2025-02-18T05:42:59.054140+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 35.1.0
2025-02-18T04:35:21.753574+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 35.1.0
2025-02-18T04:35:21.288683+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 35.1.0
2025-02-18T04:04:38.553469+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 35.1.0
2025-02-18T04:04:30.057517+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 35.1.0
2025-02-18T03:39:44.401477+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 35.1.0
2025-02-18T03:39:43.361220+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 35.1.0
2025-02-18T02:57:27.244278+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 35.1.0
2025-02-18T02:57:26.213976+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 35.1.0
2025-02-18T02:42:28.846012+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 35.1.0
2025-02-18T02:42:28.312555+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 35.1.0
2025-02-18T02:33:03.371654+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 35.1.0
2025-02-18T02:33:02.963656+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 35.1.0
2025-02-17T23:29:23.976977+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 35.1.0
2025-02-17T23:29:23.517550+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 35.1.0
2025-02-17T23:29:23.057767+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 35.1.0
2025-02-17T23:29:22.172640+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 35.1.0
2025-02-17T23:18:42.047260+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 35.1.0
2025-02-17T23:18:41.213780+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 35.1.0
2025-02-17T23:18:05.183930+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 35.1.0
2025-02-17T23:18:04.290511+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 35.1.0
2025-02-17T22:26:22.515113+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 35.1.0
2025-02-17T22:26:22.185517+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 35.1.0
2024-11-21T02:02:07.990692+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 35.0.0
2024-11-21T01:31:55.338457+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 35.0.0
2024-11-21T01:13:06.225208+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 35.0.0
2024-11-21T01:12:59.392541+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 35.0.0
2024-11-21T00:58:51.124206+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 35.0.0
2024-11-21T00:38:08.610602+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 35.0.0
2024-11-21T00:32:37.348712+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 35.0.0
2024-11-21T00:27:49.543065+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 35.0.0
2024-11-20T22:36:13.260019+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 35.0.0
2024-11-20T22:36:12.783273+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 35.0.0
2024-11-20T22:31:59.828129+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 35.0.0
2024-11-20T22:31:44.317590+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 35.0.0
2024-11-20T21:56:04.777007+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 35.0.0
2024-11-19T01:52:09.997363+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 34.3.2
2024-11-19T01:11:04.035598+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 34.3.2
2024-11-19T01:01:37.154990+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 34.3.2
2024-11-19T01:01:30.446217+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 34.3.2
2024-11-19T00:47:24.430405+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 34.3.2
2024-11-19T00:23:50.591837+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 34.3.2
2024-11-19T00:17:54.562370+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 34.3.2
2024-11-19T00:14:54.872226+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 34.3.2
2024-11-18T22:27:40.147975+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 34.3.2
2024-11-18T22:27:39.681579+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 34.3.2
2024-11-18T22:23:53.902987+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 34.3.2
2024-11-18T22:23:40.207567+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 34.3.2
2024-11-18T21:53:23.755080+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 34.3.2
2024-10-08T02:25:55.583577+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 34.0.2
2024-10-08T01:46:55.033670+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 34.0.2
2024-10-08T01:39:18.476682+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 34.0.2
2024-10-08T01:39:11.311297+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 34.0.2
2024-10-08T01:19:27.424769+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 34.0.2
2024-10-08T01:06:36.333834+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 34.0.2
2024-10-08T00:54:37.202654+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 34.0.2
2024-10-08T00:52:12.552432+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 34.0.2
2024-10-07T23:28:14.792237+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 34.0.2
2024-10-07T23:28:14.395169+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 34.0.2
2024-10-07T23:24:12.740175+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 34.0.2
2024-10-07T23:23:56.448079+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 34.0.2
2024-10-07T22:53:26.657150+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 34.0.2
2024-10-07T22:19:31.072435+00:00 GHSA Importer Affected by VCID-q9z9-b3dx-aaah https://github.com/advisories/GHSA-cf56-g6w6-pqq2 34.0.2
2024-10-07T22:19:22.796868+00:00 GHSA Importer Affected by VCID-j9j7-9v69-aaas https://github.com/advisories/GHSA-c8m8-j448-xjx7 34.0.2
2024-10-07T21:45:40.490325+00:00 GHSA Importer Affected by VCID-m7xg-ermr-aaae https://github.com/advisories/GHSA-xc8x-vp79-p3wm 34.0.2
2024-10-07T20:52:30.929489+00:00 GHSA Importer Affected by VCID-c8g2-tksq-aaab https://github.com/advisories/GHSA-vg46-2rrj-3647 34.0.2
2024-10-07T20:21:28.385089+00:00 GHSA Importer Affected by VCID-udmg-vnpc-aaag https://github.com/advisories/GHSA-c2jg-hw38-jrqq 34.0.2
2024-10-07T20:05:14.284578+00:00 GHSA Importer Affected by VCID-shy4-bwc3-aaar https://github.com/advisories/GHSA-92x2-jw7w-xvvx 34.0.2
2024-10-07T18:15:03.376884+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag https://github.com/advisories/GHSA-p5xh-vx83-mxcj 34.0.2
2024-10-07T18:15:02.960208+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf https://github.com/advisories/GHSA-h96w-mmrf-2h6v 34.0.2
2024-10-07T17:59:46.877166+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak https://github.com/advisories/GHSA-65rm-h285-5cc5 34.0.2
2024-10-07T17:59:16.370520+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac https://github.com/advisories/GHSA-6cc5-2vg4-cc7m 34.0.2
2024-10-07T16:59:13.839617+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac https://github.com/advisories/GHSA-3gqj-cmxr-p4x2 34.0.2
2024-10-07T16:11:06.716179+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak https://github.com/advisories/GHSA-8r99-h8j2-rw64 34.0.2
2024-10-07T16:03:32.314852+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag https://github.com/advisories/GHSA-32gv-6cf3-wcmq 34.0.2
2024-09-23T02:24:14.108517+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 34.0.1
2024-09-23T01:48:37.789005+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 34.0.1
2024-09-23T01:42:43.127096+00:00 GitLab Importer Affected by VCID-q9z9-b3dx-aaah https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41810.yml 34.0.1
2024-09-23T01:42:37.233066+00:00 GitLab Importer Affected by VCID-j9j7-9v69-aaas https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2024-41671.yml 34.0.1
2024-09-23T01:25:04.291469+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 34.0.1
2024-09-23T01:14:11.297832+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 34.0.1
2024-09-23T01:02:50.212104+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 34.0.1
2024-09-23T01:00:47.400087+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 34.0.1
2024-09-22T23:42:19.132093+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 34.0.1
2024-09-22T23:42:18.734022+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 34.0.1
2024-09-22T23:38:25.738042+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 34.0.1
2024-09-22T23:38:10.841791+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 34.0.1
2024-09-22T23:08:50.338942+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 34.0.1
2024-09-22T22:45:35.647271+00:00 GHSA Importer Affected by VCID-q9z9-b3dx-aaah https://github.com/advisories/GHSA-cf56-g6w6-pqq2 34.0.1
2024-09-22T22:45:29.197783+00:00 GHSA Importer Affected by VCID-j9j7-9v69-aaas https://github.com/advisories/GHSA-c8m8-j448-xjx7 34.0.1
2024-09-22T22:15:07.223705+00:00 GHSA Importer Affected by VCID-m7xg-ermr-aaae https://github.com/advisories/GHSA-xc8x-vp79-p3wm 34.0.1
2024-09-22T21:29:47.566809+00:00 GHSA Importer Affected by VCID-c8g2-tksq-aaab https://github.com/advisories/GHSA-vg46-2rrj-3647 34.0.1
2024-09-22T21:03:02.281118+00:00 GHSA Importer Affected by VCID-udmg-vnpc-aaag https://github.com/advisories/GHSA-c2jg-hw38-jrqq 34.0.1
2024-09-22T20:49:19.324571+00:00 GHSA Importer Affected by VCID-shy4-bwc3-aaar https://github.com/advisories/GHSA-92x2-jw7w-xvvx 34.0.1
2024-09-22T18:57:45.970039+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag https://github.com/advisories/GHSA-p5xh-vx83-mxcj 34.0.1
2024-09-22T18:57:45.471159+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf https://github.com/advisories/GHSA-h96w-mmrf-2h6v 34.0.1
2024-09-22T18:37:09.436707+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak https://github.com/advisories/GHSA-65rm-h285-5cc5 34.0.1
2024-09-22T18:36:36.009875+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac https://github.com/advisories/GHSA-6cc5-2vg4-cc7m 34.0.1
2024-09-22T17:23:34.973055+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac https://github.com/advisories/GHSA-3gqj-cmxr-p4x2 34.0.1
2024-09-22T16:36:13.635721+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak https://github.com/advisories/GHSA-8r99-h8j2-rw64 34.0.1
2024-09-22T16:29:02.631624+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag https://github.com/advisories/GHSA-32gv-6cf3-wcmq 34.0.1
2024-09-18T12:29:11.584773+00:00 Pypa Importer Affected by VCID-q9z9-b3dx-aaah https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2024-75.yaml 34.0.1
2024-09-18T12:28:44.162098+00:00 Pypa Importer Affected by VCID-m7xg-ermr-aaae https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2023-224.yaml 34.0.1
2024-09-18T12:27:14.588689+00:00 Pypa Importer Affected by VCID-udmg-vnpc-aaag https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2022-195.yaml 34.0.1
2024-09-18T12:25:30.676997+00:00 Pypa Importer Affected by VCID-shy4-bwc3-aaar https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2022-27.yaml 34.0.1
2024-09-18T12:07:58.970371+00:00 Pypa Importer Affected by VCID-atn1-v3d1-aaag https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2020-260.yaml 34.0.1
2024-09-18T12:07:58.600154+00:00 Pypa Importer Affected by VCID-q7nj-ndhs-aaaf https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2020-259.yaml 34.0.1
2024-09-18T12:07:39.199630+00:00 Pypa Importer Affected by VCID-sy9d-ubrb-aaak https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2019-129.yaml 34.0.1
2024-09-18T12:07:37.735198+00:00 Pypa Importer Affected by VCID-54jv-na1n-aaac https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2019-128.yaml 34.0.1
2024-09-18T12:07:01.171196+00:00 Pypa Importer Affected by VCID-rmb8-9sp1-aaac https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2020-214.yaml 34.0.1
2024-09-18T12:06:58.133660+00:00 Pypa Importer Affected by VCID-9v14-s7y4-aaaa https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2019-212.yaml 34.0.1
2024-09-17T23:19:46.017563+00:00 PyPI Importer Affected by VCID-q9z9-b3dx-aaah https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T23:18:06.020169+00:00 PyPI Importer Affected by VCID-m7xg-ermr-aaae https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T23:15:38.415773+00:00 PyPI Importer Affected by VCID-shy4-bwc3-aaar https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T23:15:06.783245+00:00 PyPI Importer Affected by VCID-udmg-vnpc-aaag https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T22:56:00.428935+00:00 PyPI Importer Affected by VCID-atn1-v3d1-aaag https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T22:55:59.844466+00:00 PyPI Importer Affected by VCID-q7nj-ndhs-aaaf https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T22:55:31.239136+00:00 PyPI Importer Affected by VCID-rmb8-9sp1-aaac https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T22:53:00.020707+00:00 PyPI Importer Affected by VCID-9v14-s7y4-aaaa https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T22:52:35.272192+00:00 PyPI Importer Affected by VCID-sy9d-ubrb-aaak https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-09-17T22:52:34.875908+00:00 PyPI Importer Affected by VCID-54jv-na1n-aaac https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.1
2024-05-17T20:53:34.776836+00:00 GHSA Importer Affected by VCID-m7xg-ermr-aaae https://github.com/advisories/GHSA-xc8x-vp79-p3wm 34.0.0rc4
2024-05-17T20:53:34.244676+00:00 GHSA Importer Affected by VCID-m7xg-ermr-aaae None 34.0.0rc4
2024-04-24T04:52:16.857149+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 34.0.0rc4
2024-04-24T04:52:16.377494+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 34.0.0rc4
2024-04-24T04:08:25.778831+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 34.0.0rc4
2024-04-24T04:08:25.342498+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 34.0.0rc4
2024-04-24T03:55:09.725732+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 34.0.0rc4
2024-04-24T03:55:09.228360+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 34.0.0rc4
2024-04-24T03:31:41.889052+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 34.0.0rc4
2024-04-24T03:31:41.391719+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 34.0.0rc4
2024-04-24T03:22:03.326606+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 34.0.0rc4
2024-04-24T03:22:02.851323+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 34.0.0rc4
2024-04-24T03:17:34.686450+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 34.0.0rc4
2024-04-24T03:17:34.258808+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 34.0.0rc4
2024-04-24T01:42:07.286433+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 34.0.0rc4
2024-04-24T01:42:06.883091+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 34.0.0rc4
2024-04-24T01:42:06.483882+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 34.0.0rc4
2024-04-24T01:42:06.066454+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 34.0.0rc4
2024-04-24T01:34:45.142200+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 34.0.0rc4
2024-04-24T01:34:44.727601+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 34.0.0rc4
2024-04-24T01:34:16.519358+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 34.0.0rc4
2024-04-24T01:34:16.109570+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 34.0.0rc4
2024-04-24T01:02:37.562285+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 34.0.0rc4
2024-04-24T01:02:37.295898+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 34.0.0rc4
2024-04-23T23:35:12.265800+00:00 GHSA Importer Affected by VCID-c8g2-tksq-aaab https://github.com/advisories/GHSA-vg46-2rrj-3647 34.0.0rc4
2024-04-23T23:35:10.862668+00:00 GHSA Importer Affected by VCID-c8g2-tksq-aaab None 34.0.0rc4
2024-04-23T22:42:10.127000+00:00 GHSA Importer Affected by VCID-udmg-vnpc-aaag None 34.0.0rc4
2024-04-23T22:42:09.638076+00:00 GHSA Importer Affected by VCID-udmg-vnpc-aaag https://github.com/advisories/GHSA-c2jg-hw38-jrqq 34.0.0rc4
2024-04-23T22:17:59.204870+00:00 GHSA Importer Affected by VCID-shy4-bwc3-aaar https://github.com/advisories/GHSA-92x2-jw7w-xvvx 34.0.0rc4
2024-04-23T22:17:57.586930+00:00 GHSA Importer Affected by VCID-shy4-bwc3-aaar None 34.0.0rc4
2024-04-23T19:54:43.429368+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag https://github.com/advisories/GHSA-p5xh-vx83-mxcj 34.0.0rc4
2024-04-23T19:54:42.561022+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag None 34.0.0rc4
2024-04-23T19:54:42.115072+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf https://github.com/advisories/GHSA-h96w-mmrf-2h6v 34.0.0rc4
2024-04-23T19:54:40.890903+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf None 34.0.0rc4
2024-04-23T19:32:26.672183+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak https://github.com/advisories/GHSA-65rm-h285-5cc5 34.0.0rc4
2024-04-23T19:32:26.264232+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak None 34.0.0rc4
2024-04-23T19:31:14.367152+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac https://github.com/advisories/GHSA-6cc5-2vg4-cc7m 34.0.0rc4
2024-04-23T19:31:13.949668+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac None 34.0.0rc4
2024-04-23T18:16:59.035290+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac https://github.com/advisories/GHSA-3gqj-cmxr-p4x2 34.0.0rc4
2024-04-23T18:16:58.492326+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac None 34.0.0rc4
2024-04-23T17:21:12.309921+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak https://github.com/advisories/GHSA-8r99-h8j2-rw64 34.0.0rc4
2024-04-23T17:21:11.505338+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak None 34.0.0rc4
2024-04-23T17:11:21.147371+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag https://github.com/advisories/GHSA-32gv-6cf3-wcmq 34.0.0rc4
2024-04-23T17:11:20.362910+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag None 34.0.0rc4
2024-01-10T07:26:06.603089+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 34.0.0rc2
2024-01-10T07:26:06.165568+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 34.0.0rc2
2024-01-10T06:44:16.196522+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 34.0.0rc2
2024-01-10T06:44:15.773908+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 34.0.0rc2
2024-01-10T06:35:48.168942+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 34.0.0rc2
2024-01-10T06:35:47.678537+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 34.0.0rc2
2024-01-10T06:12:43.305551+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 34.0.0rc2
2024-01-10T06:12:42.809555+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 34.0.0rc2
2024-01-10T06:02:07.036895+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 34.0.0rc2
2024-01-10T06:02:06.555877+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 34.0.0rc2
2024-01-10T05:57:30.028254+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 34.0.0rc2
2024-01-10T05:57:29.600789+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 34.0.0rc2
2024-01-10T04:13:09.348162+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 34.0.0rc2
2024-01-10T04:13:08.943241+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 34.0.0rc2
2024-01-10T04:13:08.539136+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 34.0.0rc2
2024-01-10T04:13:08.129468+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 34.0.0rc2
2024-01-10T04:05:22.275016+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 34.0.0rc2
2024-01-10T04:05:21.884307+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 34.0.0rc2
2024-01-10T04:04:51.226966+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 34.0.0rc2
2024-01-10T04:04:50.835146+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 34.0.0rc2
2024-01-10T03:27:15.883127+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 34.0.0rc2
2024-01-10T03:27:15.620857+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 34.0.0rc2
2024-01-10T03:01:10.598621+00:00 GHSA Importer Affected by VCID-m7xg-ermr-aaae https://github.com/advisories/GHSA-xc8x-vp79-p3wm 34.0.0rc2
2024-01-10T03:01:10.080769+00:00 GHSA Importer Affected by VCID-m7xg-ermr-aaae None 34.0.0rc2
2024-01-10T01:36:03.330272+00:00 GHSA Importer Affected by VCID-c8g2-tksq-aaab https://github.com/advisories/GHSA-vg46-2rrj-3647 34.0.0rc2
2024-01-10T01:36:01.618240+00:00 GHSA Importer Affected by VCID-c8g2-tksq-aaab None 34.0.0rc2
2024-01-10T00:39:17.624698+00:00 GHSA Importer Affected by VCID-udmg-vnpc-aaag None 34.0.0rc2
2024-01-10T00:39:17.106270+00:00 GHSA Importer Affected by VCID-udmg-vnpc-aaag https://github.com/advisories/GHSA-c2jg-hw38-jrqq 34.0.0rc2
2024-01-10T00:15:04.034470+00:00 GHSA Importer Affected by VCID-shy4-bwc3-aaar https://github.com/advisories/GHSA-92x2-jw7w-xvvx 34.0.0rc2
2024-01-10T00:15:02.374943+00:00 GHSA Importer Affected by VCID-shy4-bwc3-aaar None 34.0.0rc2
2024-01-09T21:45:33.594916+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag https://github.com/advisories/GHSA-p5xh-vx83-mxcj 34.0.0rc2
2024-01-09T21:45:32.754160+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag None 34.0.0rc2
2024-01-09T21:45:32.311159+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf https://github.com/advisories/GHSA-h96w-mmrf-2h6v 34.0.0rc2
2024-01-09T21:45:31.075082+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf None 34.0.0rc2
2024-01-09T21:24:47.834358+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak https://github.com/advisories/GHSA-65rm-h285-5cc5 34.0.0rc2
2024-01-09T21:24:47.355496+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak None 34.0.0rc2
2024-01-09T21:23:25.290984+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac https://github.com/advisories/GHSA-6cc5-2vg4-cc7m 34.0.0rc2
2024-01-09T21:23:24.782592+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac None 34.0.0rc2
2024-01-09T20:08:29.056179+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac https://github.com/advisories/GHSA-3gqj-cmxr-p4x2 34.0.0rc2
2024-01-09T20:08:28.524923+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac None 34.0.0rc2
2024-01-09T19:14:04.291864+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak https://github.com/advisories/GHSA-8r99-h8j2-rw64 34.0.0rc2
2024-01-09T19:14:03.464141+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak None 34.0.0rc2
2024-01-09T19:00:11.131322+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag https://github.com/advisories/GHSA-32gv-6cf3-wcmq 34.0.0rc2
2024-01-09T19:00:10.324704+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag None 34.0.0rc2
2024-01-04T00:11:44.978704+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak None 34.0.0rc1
2024-01-04T00:11:44.547103+00:00 GitLab Importer Affected by VCID-m52d-p5ms-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-5173.yml 34.0.0rc1
2024-01-03T23:30:49.540230+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag None 34.0.0rc1
2024-01-03T23:30:49.122984+00:00 GitLab Importer Affected by VCID-yqut-y2a8-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/GMS-2022-410.yml 34.0.0rc1
2024-01-03T23:22:13.722028+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae None 34.0.0rc1
2024-01-03T23:22:13.221681+00:00 GitLab Importer Affected by VCID-m7xg-ermr-aaae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2023-46137.yml 34.0.0rc1
2024-01-03T22:59:46.324784+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab None 34.0.0rc1
2024-01-03T22:59:45.828338+00:00 GitLab Importer Affected by VCID-c8g2-tksq-aaab https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-39348.yml 34.0.0rc1
2024-01-03T22:49:45.534891+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-24801.yml 34.0.0rc1
2024-01-03T22:49:45.059878+00:00 GitLab Importer Affected by VCID-udmg-vnpc-aaag None 34.0.0rc1
2024-01-03T22:45:25.046825+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2022-21712.yml 34.0.0rc1
2024-01-03T22:45:24.619792+00:00 GitLab Importer Affected by VCID-shy4-bwc3-aaar None 34.0.0rc1
2024-01-03T20:56:42.835041+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10109.yml 34.0.0rc1
2024-01-03T20:56:42.428813+00:00 GitLab Importer Affected by VCID-atn1-v3d1-aaag None 34.0.0rc1
2024-01-03T20:56:42.016765+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf None 34.0.0rc1
2024-01-03T20:56:41.596280+00:00 GitLab Importer Affected by VCID-q7nj-ndhs-aaaf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2020-10108.yml 34.0.0rc1
2024-01-03T20:47:54.016896+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak None 34.0.0rc1
2024-01-03T20:47:53.617835+00:00 GitLab Importer Affected by VCID-sy9d-ubrb-aaak https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12855.yml 34.0.0rc1
2024-01-03T20:47:25.290440+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac None 34.0.0rc1
2024-01-03T20:47:24.881571+00:00 GitLab Importer Affected by VCID-54jv-na1n-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2019-12387.yml 34.0.0rc1
2024-01-03T20:04:12.974706+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/pypi/Twisted/CVE-2016-1000111.yml 34.0.0rc1
2024-01-03T20:04:12.706938+00:00 GitLab Importer Affected by VCID-rmb8-9sp1-aaac None 34.0.0rc1
2024-01-03T18:54:23.601332+00:00 PyPI Importer Affected by VCID-m7xg-ermr-aaae https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:52:13.960783+00:00 PyPI Importer Affected by VCID-shy4-bwc3-aaar https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:51:49.861802+00:00 PyPI Importer Affected by VCID-udmg-vnpc-aaag https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:38:24.602649+00:00 PyPI Importer Affected by VCID-q7nj-ndhs-aaaf https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:38:16.584293+00:00 PyPI Importer Affected by VCID-atn1-v3d1-aaag https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:37:58.462885+00:00 PyPI Importer Affected by VCID-rmb8-9sp1-aaac https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:35:51.297488+00:00 PyPI Importer Affected by VCID-9v14-s7y4-aaaa https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:35:29.772492+00:00 PyPI Importer Affected by VCID-sy9d-ubrb-aaak https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:35:29.326063+00:00 PyPI Importer Affected by VCID-54jv-na1n-aaac https://osv-vulnerabilities.storage.googleapis.com/PyPI/all.zip 34.0.0rc1
2024-01-03T18:10:16.520148+00:00 Pypa Importer Affected by VCID-udmg-vnpc-aaag https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2022-195.yaml 34.0.0rc1
2024-01-03T18:10:16.152277+00:00 Pypa Importer Affected by VCID-54jv-na1n-aaac https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2019-128.yaml 34.0.0rc1
2024-01-03T18:10:15.739737+00:00 Pypa Importer Affected by VCID-atn1-v3d1-aaag https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2020-260.yaml 34.0.0rc1
2024-01-03T18:10:15.234841+00:00 Pypa Importer Affected by VCID-m7xg-ermr-aaae https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2023-224.yaml 34.0.0rc1
2024-01-03T18:10:14.862330+00:00 Pypa Importer Affected by VCID-sy9d-ubrb-aaak https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2019-129.yaml 34.0.0rc1
2024-01-03T18:10:14.422809+00:00 Pypa Importer Affected by VCID-q7nj-ndhs-aaaf https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2020-259.yaml 34.0.0rc1
2024-01-03T18:10:13.982150+00:00 Pypa Importer Affected by VCID-shy4-bwc3-aaar https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2022-27.yaml 34.0.0rc1
2024-01-03T18:10:13.907786+00:00 Pypa Importer Affected by VCID-9v14-s7y4-aaaa https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2019-212.yaml 34.0.0rc1
2024-01-03T18:10:13.671249+00:00 Pypa Importer Affected by VCID-rmb8-9sp1-aaac https://github.com/pypa/advisory-database/blob/main/vulns/twisted/PYSEC-2020-214.yaml 34.0.0rc1
2024-01-03T16:33:55.557273+00:00 GHSA Importer Affected by VCID-atn1-v3d1-aaag None 34.0.0rc1
2024-01-03T16:33:54.346242+00:00 GHSA Importer Affected by VCID-q7nj-ndhs-aaaf None 34.0.0rc1
2024-01-03T16:21:36.763896+00:00 GHSA Importer Affected by VCID-sy9d-ubrb-aaak None 34.0.0rc1
2024-01-03T16:20:52.726949+00:00 GHSA Importer Affected by VCID-54jv-na1n-aaac None 34.0.0rc1
2024-01-03T15:33:28.449205+00:00 GHSA Importer Affected by VCID-rmb8-9sp1-aaac None 34.0.0rc1
2024-01-03T15:01:21.489922+00:00 GHSA Importer Affected by VCID-m52d-p5ms-aaak None 34.0.0rc1
2024-01-03T14:54:14.944268+00:00 GHSA Importer Affected by VCID-yqut-y2a8-aaag None 34.0.0rc1