Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:maven/com.thoughtworks.xstream/xstream@1.4.18
purl pkg:maven/com.thoughtworks.xstream/xstream@1.4.18
Next non-vulnerable version 1.4.21
Latest non-vulnerable version 1.4.21
Risk 4.0
Vulnerabilities affecting this package (6)
Vulnerability Summary Fixed by
VCID-9442-1vwr-5fbt
Aliases:
CVE-2022-41966
GHSA-j563-grx4-pjpv
XStream can cause Denial of Service via stack overflow ### Impact The vulnerability may allow a remote attacker to terminate the application with a stack overflow error resulting in a denial of service only by manipulating the processed input stream. ### Patches XStream 1.4.20 handles the stack overflow and raises an InputManipulationException instead. ### Workarounds The attack uses the hash code implementation for collections and maps to force recursive hash calculation causing a stack overflow. Following types of the Java runtime are affected: - java.util.HashMap - java.util.HashSet - java.util.Hashtable - java.util.LinkedHashMap - java.util.LinkedHashSet - Other third party collection implementations that use their element's hash code may also be affected A simple solution is to catch the StackOverflowError in the client code calling XStream. If your object graph does not use referenced elements at all, you may simply set the NO_REFERENCE mode: ```Java XStream xstream = new XStream(); xstream.setMode(XStream.NO_REFERENCES); ``` If your object graph contains neither a Hashtable, HashMap nor a HashSet (or one of the linked variants of it) then you can use the security framework to deny the usage of these types: ```Java XStream xstream = new XStream(); xstream.denyTypes(new Class[]{ java.util.HashMap.class, java.util.HashSet.class, java.util.Hashtable.class, java.util.LinkedHashMap.class, java.util.LinkedHashSet.class }); ``` Unfortunately these types are very common. If you only use HashMap or HashSet and your XML refers these only as default map or set, you may additionally change the default implementation of java.util.Map and java.util.Set at unmarshalling time:: ```Java xstream.addDefaultImplementation(java.util.TreeMap.class, java.util.Map.class); xstream.addDefaultImplementation(java.util.TreeSet.class, java.util.Set.class); ``` However, this implies that your application does not care about the implementation of the map and all elements are comparable. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2022-41966](https://x-stream.github.io/CVE-2022-41966.html). ### For more information If you have any questions or comments about this advisory: * Open an issue in [XStream](https://github.com/x-stream/xstream/issues) * Contact us at [XStream Google Group](https://groups.google.com/group/xstream-user)
1.4.20
Affected by 1 other vulnerability.
VCID-exrn-u19r-wfd8
Aliases:
GHSA-3mq5-fq9h-gj7j
GMS-2022-9109
Duplicate Advisory: Denial of Service due to parser crash ## Duplicate Advisory This advisory has been withdrawn because it is a duplicate of [GHSA-f8cc-g7j8-xxpm](https://github.com/advisories/GHSA-f8cc-g7j8-xxpm). This link is maintained to preserve external references. ## Original Description Those using Xstream to seralize XML data may be vulnerable to Denial of Service attacks (DOS). If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow. This effect may support a denial of service attack.
1.4.20
Affected by 1 other vulnerability.
VCID-fcg2-x3s5-wudk
Aliases:
CVE-2024-47072
GHSA-hfq9-hggm-c56q
XStream is vulnerable to a Denial of Service attack due to stack overflow from a manipulated binary input stream ### Impact The vulnerability may allow a remote attacker to terminate the application with a stack overflow error resulting in a denial of service only by manipulating the processed input stream when XStream is configured to use the BinaryStreamDriver. ### Patches XStream 1.4.21 detects the manipulation in the binary input stream causing the the stack overflow and raises an InputManipulationException instead. ### Workarounds The only solution is to catch the StackOverflowError in the client code calling XStream if XStream is configured to use the BinaryStreamDriver. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2024-47072](https://x-stream.github.io/CVE-2024-47072.html). ### Credits Alexis Challande of Trail Of Bits found and reported the issue to XStream and provided the required information to reproduce it.
1.4.21
Affected by 0 other vulnerabilities.
VCID-hqzr-vc5w-9ff5
Aliases:
CVE-2022-40152
GHSA-3f7h-mf4q-vrm4
Denial of Service due to parser crash Those using FasterXML/woodstox to seralize XML data may be vulnerable to Denial of Service attacks (DOS). If the parser is running on user supplied input, an attacker may supply content that causes the parser to crash by stackoverflow. This effect may support a denial of service attack. This vulnerability is only relevant for users making use of the DTD parsing functionality.
1.4.20
Affected by 1 other vulnerability.
VCID-mfub-hwcq-pqbt
Aliases:
CVE-2022-40151
GHSA-f8cc-g7j8-xxpm
XStream can cause a Denial of Service by injecting deeply nested objects raising a stack overflow ### Impact The vulnerability may allow a remote attacker to terminate the application with a stack overflow error resulting in a denial of service only by manipulating the processed input stream. ### Patches XStream 1.4.20 handles the stack overflow and raises an InputManipulationException instead. ### Workarounds The only solution is to catch the StackOverflowError in the client code calling XStream. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2022-40151](https://x-stream.github.io/CVE-2022-40151.html). ### Credits The vulnerability was discovered and reported by Henry Lin of the Google OSS-Fuzz team. ### For more information If you have any questions or comments about this advisory: * Open an issue in [XStream](https://github.com/x-stream/xstream/issues) * Contact us at [XStream Google Group](https://groups.google.com/group/xstream-user)
1.4.20
Affected by 1 other vulnerability.
VCID-yb4j-92y9-nfb5
Aliases:
CVE-2021-43859
GHSA-rmr5-cpv2-vgjf
Denial of Service by injecting highly recursive collections or maps in XStream The vulnerability may allow a remote attacker to allocate 100% CPU time on the target system depending on CPU type or parallel execution of such a payload resulting in a denial of service only by manipulating the processed input stream.
1.4.19
Affected by 5 other vulnerabilities.
Vulnerabilities fixed by this package (14)
Vulnerability Summary Aliases
VCID-12bx-r37t-3ygm Server-Side Request Forgery (SSRF) XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to request data from internal resources that are not publicly available only by manipulating the processed input stream with a Java runtime to Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39150
GHSA-cxfm-5m4g-x7xp
VCID-7ma6-2uv1-sbef Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39147
GHSA-h7v4-7xg3-hxcc
VCID-8gha-n6ke-nucu Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39148
GHSA-qrx8-8545-4wg2
VCID-c5tu-31kw-mfcf Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. if using the version out of the box with Java runtime to 8 or with JavaFX installed. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39153
GHSA-2q8x-2p7f-574v
VCID-dxpe-qmxq-ykax Unrestricted Upload of File with Dangerous Type XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with a allow list limited to the minimal required types are not impacted. CVE-2021-39145
GHSA-8jrj-525p-826v
VCID-eeye-wfxf-x7cc Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with a allow list limited to the minimal required types are not impacted. CVE-2021-39146
GHSA-p8pq-r894-fm8f
VCID-f779-wcjk-kfc1 Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39154
GHSA-6w62-hx7r-mw68
VCID-na6t-mkxt-3qbw XStream is vulnerable to a Remote Command Execution attack XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker has sufficient rights to execute commands of the host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with a allow list limited to the minimal required types are not impacted. CVE-2021-39144
GHSA-j9h8-phrw-h4fh
VCID-npjx-vkrd-9bae Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39141
GHSA-g5w6-mrj7-75h2
VCID-rfc1-r1gr-wffp Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39151
GHSA-hph2-m3g5-xxv4
VCID-v7za-zjfx-mqek Server-Side Request Forgery (SSRF) XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to request data from internal resources that are not publicly available only by manipulating the processed input stream with a Java runtime. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39152
GHSA-xw4p-crpj-vjx2
VCID-wehr-d623-akaj Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to allocate % CPU time on the target system depending on CPU type or parallel execution of such a payload resulting in a denial of service only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39140
GHSA-6wf9-jmg9-vxcc
VCID-xsr8-3cke-33ck Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again. This vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39149
GHSA-3ccq-5vw3-2p6x
VCID-yuwe-6pp1-bke2 Deserialization of Untrusted Data XStream is a simple library to serialize objects to XML and back again.However, this scenario can be adjusted easily to an external Xalan that works regardless of the version of the Java runtime. Users who followed the recommendation to setup XStream's security framework with an allow list limited to the minimal required types are not impacted. CVE-2021-39139
GHSA-64xx-cq4q-mf44

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T23:13:41.689953+00:00 GitLab Importer Affected by VCID-fcg2-x3s5-wudk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2024-47072.yml 38.4.0
2026-04-16T22:18:50.200174+00:00 GitLab Importer Affected by VCID-9442-1vwr-5fbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-41966.yml 38.4.0
2026-04-16T22:10:20.449984+00:00 GitLab Importer Affected by VCID-exrn-u19r-wfd8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/GMS-2022-9109.yml 38.4.0
2026-04-16T22:10:10.779642+00:00 GitLab Importer Affected by VCID-hqzr-vc5w-9ff5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40152.yml 38.4.0
2026-04-16T22:09:27.780548+00:00 GitLab Importer Affected by VCID-mfub-hwcq-pqbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40151.yml 38.4.0
2026-04-16T21:38:21.322634+00:00 GitLab Importer Affected by VCID-yb4j-92y9-nfb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-43859.yml 38.4.0
2026-04-16T21:29:13.689623+00:00 GitLab Importer Fixing VCID-na6t-mkxt-3qbw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39144.yml 38.4.0
2026-04-16T21:28:41.184946+00:00 GitLab Importer Fixing VCID-v7za-zjfx-mqek https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39152.yml 38.4.0
2026-04-16T21:28:40.332894+00:00 GitLab Importer Fixing VCID-dxpe-qmxq-ykax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39145.yml 38.4.0
2026-04-16T21:28:39.327931+00:00 GitLab Importer Fixing VCID-npjx-vkrd-9bae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39141.yml 38.4.0
2026-04-16T21:28:39.070063+00:00 GitLab Importer Fixing VCID-f779-wcjk-kfc1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39154.yml 38.4.0
2026-04-16T21:28:38.825798+00:00 GitLab Importer Fixing VCID-c5tu-31kw-mfcf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39153.yml 38.4.0
2026-04-16T21:28:38.424848+00:00 GitLab Importer Fixing VCID-wehr-d623-akaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39140.yml 38.4.0
2026-04-16T21:28:38.186971+00:00 GitLab Importer Fixing VCID-xsr8-3cke-33ck https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39149.yml 38.4.0
2026-04-16T21:28:37.940910+00:00 GitLab Importer Fixing VCID-8gha-n6ke-nucu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39148.yml 38.4.0
2026-04-16T21:28:37.714124+00:00 GitLab Importer Fixing VCID-rfc1-r1gr-wffp https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39151.yml 38.4.0
2026-04-16T21:28:37.469420+00:00 GitLab Importer Fixing VCID-12bx-r37t-3ygm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39150.yml 38.4.0
2026-04-16T21:28:37.225092+00:00 GitLab Importer Fixing VCID-eeye-wfxf-x7cc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39146.yml 38.4.0
2026-04-16T21:28:35.981900+00:00 GitLab Importer Fixing VCID-yuwe-6pp1-bke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39139.yml 38.4.0
2026-04-16T21:28:34.735608+00:00 GitLab Importer Fixing VCID-7ma6-2uv1-sbef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39147.yml 38.4.0
2026-04-12T00:32:13.722756+00:00 GitLab Importer Affected by VCID-fcg2-x3s5-wudk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2024-47072.yml 38.3.0
2026-04-11T23:36:32.274756+00:00 GitLab Importer Affected by VCID-9442-1vwr-5fbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-41966.yml 38.3.0
2026-04-11T23:26:53.784773+00:00 GitLab Importer Affected by VCID-exrn-u19r-wfd8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/GMS-2022-9109.yml 38.3.0
2026-04-11T23:26:43.323610+00:00 GitLab Importer Affected by VCID-hqzr-vc5w-9ff5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40152.yml 38.3.0
2026-04-11T23:25:57.577020+00:00 GitLab Importer Affected by VCID-mfub-hwcq-pqbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40151.yml 38.3.0
2026-04-11T22:52:58.221401+00:00 GitLab Importer Affected by VCID-yb4j-92y9-nfb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-43859.yml 38.3.0
2026-04-11T22:42:14.786011+00:00 GitLab Importer Fixing VCID-na6t-mkxt-3qbw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39144.yml 38.3.0
2026-04-11T22:41:40.279128+00:00 GitLab Importer Fixing VCID-v7za-zjfx-mqek https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39152.yml 38.3.0
2026-04-11T22:41:39.388103+00:00 GitLab Importer Fixing VCID-dxpe-qmxq-ykax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39145.yml 38.3.0
2026-04-11T22:41:38.384701+00:00 GitLab Importer Fixing VCID-npjx-vkrd-9bae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39141.yml 38.3.0
2026-04-11T22:41:38.128257+00:00 GitLab Importer Fixing VCID-f779-wcjk-kfc1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39154.yml 38.3.0
2026-04-11T22:41:37.865184+00:00 GitLab Importer Fixing VCID-c5tu-31kw-mfcf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39153.yml 38.3.0
2026-04-11T22:41:37.559052+00:00 GitLab Importer Fixing VCID-wehr-d623-akaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39140.yml 38.3.0
2026-04-11T22:41:37.308697+00:00 GitLab Importer Fixing VCID-xsr8-3cke-33ck https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39149.yml 38.3.0
2026-04-11T22:41:37.065308+00:00 GitLab Importer Fixing VCID-8gha-n6ke-nucu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39148.yml 38.3.0
2026-04-11T22:41:36.803964+00:00 GitLab Importer Fixing VCID-rfc1-r1gr-wffp https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39151.yml 38.3.0
2026-04-11T22:41:36.551060+00:00 GitLab Importer Fixing VCID-12bx-r37t-3ygm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39150.yml 38.3.0
2026-04-11T22:41:36.305939+00:00 GitLab Importer Fixing VCID-eeye-wfxf-x7cc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39146.yml 38.3.0
2026-04-11T22:41:34.938418+00:00 GitLab Importer Fixing VCID-yuwe-6pp1-bke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39139.yml 38.3.0
2026-04-11T22:41:33.558007+00:00 GitLab Importer Fixing VCID-7ma6-2uv1-sbef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39147.yml 38.3.0
2026-04-05T02:23:06.128307+00:00 GitLab Importer Affected by VCID-exrn-u19r-wfd8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/GMS-2022-9109.yml 38.1.0
2026-04-03T00:39:57.305291+00:00 GitLab Importer Affected by VCID-fcg2-x3s5-wudk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2024-47072.yml 38.1.0
2026-04-02T23:41:02.157518+00:00 GitLab Importer Affected by VCID-9442-1vwr-5fbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-41966.yml 38.1.0
2026-04-02T23:32:47.956174+00:00 GitLab Importer Affected by VCID-hqzr-vc5w-9ff5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40152.yml 38.1.0
2026-04-02T23:32:09.413451+00:00 GitLab Importer Affected by VCID-mfub-hwcq-pqbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40151.yml 38.1.0
2026-04-02T23:02:20.365224+00:00 GitLab Importer Affected by VCID-yb4j-92y9-nfb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-43859.yml 38.1.0
2026-04-02T22:52:33.357967+00:00 GitLab Importer Fixing VCID-na6t-mkxt-3qbw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39144.yml 38.1.0
2026-04-02T22:52:04.686671+00:00 GitLab Importer Fixing VCID-v7za-zjfx-mqek https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39152.yml 38.1.0
2026-04-02T22:52:03.893204+00:00 GitLab Importer Fixing VCID-dxpe-qmxq-ykax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39145.yml 38.1.0
2026-04-02T22:52:02.975306+00:00 GitLab Importer Fixing VCID-npjx-vkrd-9bae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39141.yml 38.1.0
2026-04-02T22:52:02.751729+00:00 GitLab Importer Fixing VCID-f779-wcjk-kfc1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39154.yml 38.1.0
2026-04-02T22:52:02.529980+00:00 GitLab Importer Fixing VCID-c5tu-31kw-mfcf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39153.yml 38.1.0
2026-04-02T22:52:02.239495+00:00 GitLab Importer Fixing VCID-wehr-d623-akaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39140.yml 38.1.0
2026-04-02T22:52:01.991206+00:00 GitLab Importer Fixing VCID-xsr8-3cke-33ck https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39149.yml 38.1.0
2026-04-02T22:52:01.768016+00:00 GitLab Importer Fixing VCID-8gha-n6ke-nucu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39148.yml 38.1.0
2026-04-02T22:52:01.543858+00:00 GitLab Importer Fixing VCID-rfc1-r1gr-wffp https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39151.yml 38.1.0
2026-04-02T22:52:01.318969+00:00 GitLab Importer Fixing VCID-12bx-r37t-3ygm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39150.yml 38.1.0
2026-04-02T22:52:01.082327+00:00 GitLab Importer Fixing VCID-eeye-wfxf-x7cc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39146.yml 38.1.0
2026-04-02T22:51:59.907271+00:00 GitLab Importer Fixing VCID-yuwe-6pp1-bke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39139.yml 38.1.0
2026-04-02T22:51:58.722923+00:00 GitLab Importer Fixing VCID-7ma6-2uv1-sbef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39147.yml 38.1.0
2026-04-02T16:57:57.596258+00:00 GHSA Importer Fixing VCID-yuwe-6pp1-bke2 https://github.com/advisories/GHSA-64xx-cq4q-mf44 38.1.0
2026-04-02T16:57:57.557375+00:00 GHSA Importer Fixing VCID-wehr-d623-akaj https://github.com/advisories/GHSA-6wf9-jmg9-vxcc 38.1.0
2026-04-02T16:57:57.519527+00:00 GHSA Importer Fixing VCID-npjx-vkrd-9bae https://github.com/advisories/GHSA-g5w6-mrj7-75h2 38.1.0
2026-04-02T16:57:57.479037+00:00 GHSA Importer Fixing VCID-na6t-mkxt-3qbw https://github.com/advisories/GHSA-j9h8-phrw-h4fh 38.1.0
2026-04-02T16:57:57.439196+00:00 GHSA Importer Fixing VCID-dxpe-qmxq-ykax https://github.com/advisories/GHSA-8jrj-525p-826v 38.1.0
2026-04-02T16:57:57.400397+00:00 GHSA Importer Fixing VCID-eeye-wfxf-x7cc https://github.com/advisories/GHSA-p8pq-r894-fm8f 38.1.0
2026-04-02T16:57:57.362370+00:00 GHSA Importer Fixing VCID-7ma6-2uv1-sbef https://github.com/advisories/GHSA-h7v4-7xg3-hxcc 38.1.0
2026-04-02T16:57:57.324002+00:00 GHSA Importer Fixing VCID-8gha-n6ke-nucu https://github.com/advisories/GHSA-qrx8-8545-4wg2 38.1.0
2026-04-02T16:57:57.284985+00:00 GHSA Importer Fixing VCID-xsr8-3cke-33ck https://github.com/advisories/GHSA-3ccq-5vw3-2p6x 38.1.0
2026-04-02T16:57:57.245989+00:00 GHSA Importer Fixing VCID-12bx-r37t-3ygm https://github.com/advisories/GHSA-cxfm-5m4g-x7xp 38.1.0
2026-04-02T16:57:57.206015+00:00 GHSA Importer Fixing VCID-rfc1-r1gr-wffp https://github.com/advisories/GHSA-hph2-m3g5-xxv4 38.1.0
2026-04-02T16:57:57.166089+00:00 GHSA Importer Fixing VCID-v7za-zjfx-mqek https://github.com/advisories/GHSA-xw4p-crpj-vjx2 38.1.0
2026-04-02T16:57:57.127512+00:00 GHSA Importer Fixing VCID-c5tu-31kw-mfcf https://github.com/advisories/GHSA-2q8x-2p7f-574v 38.1.0
2026-04-02T16:57:57.088102+00:00 GHSA Importer Fixing VCID-f779-wcjk-kfc1 https://github.com/advisories/GHSA-6w62-hx7r-mw68 38.1.0
2026-04-01T18:03:37.008816+00:00 GitLab Importer Affected by VCID-9442-1vwr-5fbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-41966.yml 38.0.0
2026-04-01T17:54:30.393479+00:00 GitLab Importer Affected by VCID-hqzr-vc5w-9ff5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40152.yml 38.0.0
2026-04-01T17:53:50.843863+00:00 GitLab Importer Affected by VCID-mfub-hwcq-pqbt https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2022-40151.yml 38.0.0
2026-04-01T17:21:10.789649+00:00 GitLab Importer Affected by VCID-yb4j-92y9-nfb5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-43859.yml 38.0.0
2026-04-01T13:01:47.988111+00:00 GithubOSV Importer Fixing VCID-na6t-mkxt-3qbw https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-j9h8-phrw-h4fh/GHSA-j9h8-phrw-h4fh.json 38.0.0
2026-04-01T13:01:42.983971+00:00 GithubOSV Importer Fixing VCID-f779-wcjk-kfc1 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-6w62-hx7r-mw68/GHSA-6w62-hx7r-mw68.json 38.0.0
2026-04-01T13:01:39.374554+00:00 GithubOSV Importer Fixing VCID-12bx-r37t-3ygm https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-cxfm-5m4g-x7xp/GHSA-cxfm-5m4g-x7xp.json 38.0.0
2026-04-01T13:01:39.306440+00:00 GithubOSV Importer Fixing VCID-xsr8-3cke-33ck https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-3ccq-5vw3-2p6x/GHSA-3ccq-5vw3-2p6x.json 38.0.0
2026-04-01T13:01:36.120962+00:00 GithubOSV Importer Fixing VCID-8gha-n6ke-nucu https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-qrx8-8545-4wg2/GHSA-qrx8-8545-4wg2.json 38.0.0
2026-04-01T13:01:35.134263+00:00 GithubOSV Importer Fixing VCID-rfc1-r1gr-wffp https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-hph2-m3g5-xxv4/GHSA-hph2-m3g5-xxv4.json 38.0.0
2026-04-01T13:01:34.515457+00:00 GithubOSV Importer Fixing VCID-c5tu-31kw-mfcf https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-2q8x-2p7f-574v/GHSA-2q8x-2p7f-574v.json 38.0.0
2026-04-01T13:01:34.364160+00:00 GithubOSV Importer Fixing VCID-eeye-wfxf-x7cc https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-p8pq-r894-fm8f/GHSA-p8pq-r894-fm8f.json 38.0.0
2026-04-01T13:01:33.732504+00:00 GithubOSV Importer Fixing VCID-npjx-vkrd-9bae https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-g5w6-mrj7-75h2/GHSA-g5w6-mrj7-75h2.json 38.0.0
2026-04-01T13:01:30.845023+00:00 GithubOSV Importer Fixing VCID-7ma6-2uv1-sbef https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-h7v4-7xg3-hxcc/GHSA-h7v4-7xg3-hxcc.json 38.0.0
2026-04-01T13:01:27.453264+00:00 GithubOSV Importer Fixing VCID-dxpe-qmxq-ykax https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-8jrj-525p-826v/GHSA-8jrj-525p-826v.json 38.0.0
2026-04-01T13:01:27.096691+00:00 GithubOSV Importer Fixing VCID-v7za-zjfx-mqek https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-xw4p-crpj-vjx2/GHSA-xw4p-crpj-vjx2.json 38.0.0
2026-04-01T13:01:22.688073+00:00 GithubOSV Importer Fixing VCID-yuwe-6pp1-bke2 https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-64xx-cq4q-mf44/GHSA-64xx-cq4q-mf44.json 38.0.0
2026-04-01T13:01:20.673528+00:00 GithubOSV Importer Fixing VCID-wehr-d623-akaj https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2021/08/GHSA-6wf9-jmg9-vxcc/GHSA-6wf9-jmg9-vxcc.json 38.0.0
2026-04-01T12:48:43.909706+00:00 GitLab Importer Fixing VCID-na6t-mkxt-3qbw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39144.yml 38.0.0
2026-04-01T12:48:40.840408+00:00 GitLab Importer Fixing VCID-v7za-zjfx-mqek https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39152.yml 38.0.0
2026-04-01T12:48:40.780294+00:00 GitLab Importer Fixing VCID-dxpe-qmxq-ykax https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39145.yml 38.0.0
2026-04-01T12:48:40.711949+00:00 GitLab Importer Fixing VCID-npjx-vkrd-9bae https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39141.yml 38.0.0
2026-04-01T12:48:40.694957+00:00 GitLab Importer Fixing VCID-f779-wcjk-kfc1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39154.yml 38.0.0
2026-04-01T12:48:40.681476+00:00 GitLab Importer Fixing VCID-c5tu-31kw-mfcf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39153.yml 38.0.0
2026-04-01T12:48:40.652200+00:00 GitLab Importer Fixing VCID-wehr-d623-akaj https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39140.yml 38.0.0
2026-04-01T12:48:40.638767+00:00 GitLab Importer Fixing VCID-xsr8-3cke-33ck https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39149.yml 38.0.0
2026-04-01T12:48:40.624473+00:00 GitLab Importer Fixing VCID-8gha-n6ke-nucu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39148.yml 38.0.0
2026-04-01T12:48:40.609768+00:00 GitLab Importer Fixing VCID-rfc1-r1gr-wffp https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39151.yml 38.0.0
2026-04-01T12:48:40.591464+00:00 GitLab Importer Fixing VCID-12bx-r37t-3ygm https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39150.yml 38.0.0
2026-04-01T12:48:40.576969+00:00 GitLab Importer Fixing VCID-eeye-wfxf-x7cc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39146.yml 38.0.0
2026-04-01T12:48:40.547499+00:00 GitLab Importer Fixing VCID-yuwe-6pp1-bke2 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39139.yml 38.0.0
2026-04-01T12:48:40.514148+00:00 GitLab Importer Fixing VCID-7ma6-2uv1-sbef https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-39147.yml 38.0.0