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.2
purl pkg:maven/com.thoughtworks.xstream/xstream@1.4.2
Next non-vulnerable version 1.4.21
Latest non-vulnerable version 1.4.21
Risk 10.0
Vulnerabilities affecting this package (38)
Vulnerability Summary Fixed by
VCID-12bx-r37t-3ygm
Aliases:
CVE-2021-39150
GHSA-cxfm-5m4g-x7xp
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-2t1b-135u-euem
Aliases:
CVE-2020-26217
GHSA-mw36-7c6c-q4q2
XStream can be used for Remote Code Execution ### Impact The vulnerability may allow a remote attacker to run arbitrary shell commands only by manipulating the processed input stream. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.14. ### Workarounds No user is affected, who followed the recommendation to setup XStream's Security Framework with a whitelist! Anyone relying on XStream's default blacklist can immediately switch to a whilelist for the allowed types to avoid the vulnerability. Users of XStream 1.4.13 or below who still want to use XStream default blacklist can use a workaround depending on their version in use. Users of XStream 1.4.13 can simply add two lines to XStream's setup code: ```Java xstream.denyTypes(new String[]{ "javax.imageio.ImageIO$ContainsFilter" }); xstream.denyTypes(new Class[]{ java.lang.ProcessBuilder.class }); ``` Users of XStream 1.4.12 to 1.4.7 who want to use XStream with a black list will have to setup such a list from scratch and deny at least the following types: _javax.imageio.ImageIO$ContainsFilter_, _java.beans.EventHandler_, _java.lang.ProcessBuilder_, _java.lang.Void_ and _void_. ```Java xstream.denyTypes(new String[]{ "javax.imageio.ImageIO$ContainsFilter" }); xstream.denyTypes(new Class[]{ java.lang.ProcessBuilder.class, java.beans.EventHandler.class, java.lang.ProcessBuilder.class, java.lang.Void.class, void.class }); ``` Users of XStream 1.4.6 or below can register an own converter to prevent the unmarshalling of the currently know critical types of the Java runtime. It is in fact an updated version of the workaround for CVE-2013-7285: ```Java xstream.registerConverter(new Converter() { public boolean canConvert(Class type) { return type != null && (type == java.beans.EventHandler.class || type == java.lang.ProcessBuilder.class || type == java.lang.Void.class || void.class || type.getName().equals("javax.imageio.ImageIO$ContainsFilter") || Proxy.isProxy(type)); } public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { throw new ConversionException("Unsupported type due to security reasons."); } public void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context) { throw new ConversionException("Unsupported type due to security reasons."); } }, XStream.PRIORITY_LOW); ``` ### Credits Chen L found and reported the issue to XStream and provided the required information to reproduce it. He was supported by Zhihong Tian and Hui Lu, both from Guangzhou University. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2020-26217](https://x-stream.github.io/CVE-2020-26217.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.14-java7
Affected by 34 other vulnerabilities.
VCID-6mz4-fu3s-vycx
Aliases:
CVE-2021-21350
GHSA-43gc-mjxg-gvrq
XStream is vulnerable to an Arbitrary Code Execution attack ### Impact The vulnerability may allow a remote attacker to execute arbitrary code only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21350](https://x-stream.github.io/CVE-2021-21350.html). ### Credits The vulnerability was discovered and reported by threedr3am. ### 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.16
Affected by 21 other vulnerabilities.
VCID-7ma6-2uv1-sbef
Aliases:
CVE-2021-39147
GHSA-h7v4-7xg3-hxcc
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-8gha-n6ke-nucu
Aliases:
CVE-2021-39148
GHSA-qrx8-8545-4wg2
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.
1.4.18
Affected by 6 other vulnerabilities.
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-c5tu-31kw-mfcf
Aliases:
CVE-2021-39153
GHSA-2q8x-2p7f-574v
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-dxpe-qmxq-ykax
Aliases:
CVE-2021-39145
GHSA-8jrj-525p-826v
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-eeye-wfxf-x7cc
Aliases:
CVE-2021-39146
GHSA-p8pq-r894-fm8f
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.
1.4.18
Affected by 6 other vulnerabilities.
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-f779-wcjk-kfc1
Aliases:
CVE-2021-39154
GHSA-6w62-hx7r-mw68
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.
1.4.18
Affected by 6 other vulnerabilities.
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-hsja-ryzy-7bbx
Aliases:
CVE-2020-26258
GHSA-4cch-wxpw-8p28
Server-Side Forgery Request can be activated unmarshalling with XStream ### Impact The vulnerability may allow a remote attacker to request data from internal resources that are not publicly available only by manipulating the processed input stream. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.15. ### Workarounds The reported vulnerability does not exist running Java 15 or higher. No user is affected, who followed the recommendation to setup XStream's Security Framework with a whitelist! Anyone relying on XStream's default blacklist can immediately switch to a whilelist for the allowed types to avoid the vulnerability. Users of XStream 1.4.14 or below who still insist to use XStream default blacklist - despite that clear recommendation - can use a workaround depending on their version in use. Users of XStream 1.4.14 can simply add two lines to XStream's setup code: ```Java xstream.denyTypes(new String[]{ "jdk.nashorn.internal.objects.NativeString" }); xstream.denyTypesByRegExp(new String[]{ ".*\\.ReadAllStream\\$FileStream" }); ``` Users of XStream 1.4.14 to 1.4.13 can simply add three lines to XStream's setup code: ```Java xstream.denyTypes(new String[]{ "javax.imageio.ImageIO$ContainsFilter", "jdk.nashorn.internal.objects.NativeString" }); xstream.denyTypes(new Class[]{ java.lang.ProcessBuilder.class }); xstream.denyTypesByRegExp(new String[]{ ".*\\.ReadAllStream\\$FileStream" }); ``` Users of XStream 1.4.12 to 1.4.7 who want to use XStream with a black list will have to setup such a list from scratch and deny at least the following types: _javax.imageio.ImageIO$ContainsFilter_, _java.beans.EventHandler_, _java.lang.ProcessBuilder_, _jdk.nashorn.internal.objects.NativeString.class_, _java.lang.Void_ and _void_ and deny several types by name pattern. ```Java xstream.denyTypes(new String[]{ "javax.imageio.ImageIO$ContainsFilter", "jdk.nashorn.internal.objects.NativeString" }); xstream.denyTypes(new Class[]{ java.lang.ProcessBuilder.class, "jdk.nashorn.internal.objects.NativeString", java.beans.EventHandler.class, java.lang.ProcessBuilder.class, java.lang.Void.class, void.class }); xstream.denyTypesByRegExp(new String[]{ ".*\\$LazyIterator", "javax\\.crypto\\..*", ".*\\.ReadAllStream\\$FileStream" }); ``` Users of XStream 1.4.6 or below can register an own converter to prevent the unmarshalling of the currently know critical types of the Java runtime. It is in fact an updated version of the workaround for CVE-2013-7285: ```Java xstream.registerConverter(new Converter() { public boolean canConvert(Class type) { return type != null && (type == java.beans.EventHandler.class || type == java.lang.ProcessBuilder.class || type.getName().equals("javax.imageio.ImageIO$ContainsFilter") || type.getName().equals("jdk.nashorn.internal.objects.NativeString") || type == java.lang.Void.class || void.class || Proxy.isProxy(type)) || type.getName().startsWith("javax.crypto.") || type.getName().endsWith("$LazyIterator") || type.getName().endsWith(".ReadAllStream$FileStream")); } public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { throw new ConversionException("Unsupported type due to security reasons."); } public void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context) { throw new ConversionException("Unsupported type due to security reasons."); } }, XStream.PRIORITY_LOW); ``` ### 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.15
Affected by 32 other vulnerabilities.
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-na6t-mkxt-3qbw
Aliases:
CVE-2021-39144
GHSA-j9h8-phrw-h4fh
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-nn7p-d7hz-53d5
Aliases:
CVE-2017-7957
GHSA-7hwc-46rm-65jh
XStream through 1.4.9, when a certain denyTypes workaround is not used, mishandles attempts to create an instance of the primitive type 'void' during unmarshalling, leading to a remote application crash, as demonstrated by an xstream.fromXML("<void/>") call.
1.4.10
Affected by 37 other vulnerabilities.
VCID-npjx-vkrd-9bae
Aliases:
CVE-2021-39141
GHSA-g5w6-mrj7-75h2
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-nrf7-heu6-vfdc
Aliases:
CVE-2021-21344
GHSA-59jw-jqf4-3wq3
XStream is vulnerable to an Arbitrary Code Execution attack ### Impact The vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21344](https://x-stream.github.io/CVE-2021-21344.html). ### Credits 钟潦贵 (Liaogui Zhong) found and reported the issue to XStream and provided the required information to reproduce it. ### 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.16
Affected by 21 other vulnerabilities.
VCID-qh44-75jb-wbhf
Aliases:
CVE-2021-21345
GHSA-hwpc-8xqv-jvj4
XStream is vulnerable to a Remote Command Execution attack ### Impact The vulnerability may allow a remote attacker has sufficient rights to execute commands of the host only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21345](https://x-stream.github.io/CVE-2021-21345.html). ### Credits 钟潦贵 (Liaogui Zhong) found and reported the issue to XStream and provided the required information to reproduce it. ### 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.16
Affected by 21 other vulnerabilities.
VCID-qvbb-jhkk-2udw
Aliases:
CVE-2021-29505
GHSA-7chv-rrw6-w6fc
XStream is vulnerable to a Remote Command Execution attack ### Impact The vulnerability may allow a remote attacker has sufficient rights to execute commands of the host only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the Security Framework, you will have to use at least version 1.4.17. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-29505](https://x-stream.github.io/CVE-2021-29505.html). ### Credits V3geB1rd, white hat hacker from Tencent Security Response Center found and reported the issue to XStream and provided the required information to reproduce it. ### 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) * Email us at [XStream Google Group](https://groups.google.com/group/xstream-user)
1.4.17
Affected by 20 other vulnerabilities.
VCID-qwp5-wae9-cffb
Aliases:
CVE-2021-21348
GHSA-56p8-3fh9-4cvq
XStream is vulnerable to an attack using Regular Expression for a Denial of Service (ReDos) ### Impact The vulnerability may allow a remote attacker to occupy a thread that consumes maximum CPU time and will never return. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21348](https://x-stream.github.io/CVE-2021-21348.html). ### Credits The vulnerability was discovered and reported by threedr3am. ### 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.16
Affected by 21 other vulnerabilities.
VCID-re5g-6kjz-q7e8
Aliases:
CVE-2021-21351
GHSA-hrcp-8f3q-4w2c
XStream is vulnerable to an Arbitrary Code Execution attack ### Impact The vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21351](https://x-stream.github.io/CVE-2021-21351.html). ### Credits wh1t3p1g G5-RD6@IIE found and reported the issue to XStream and provided the required information to reproduce it. ### 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.16
Affected by 21 other vulnerabilities.
VCID-rfc1-r1gr-wffp
Aliases:
CVE-2021-39151
GHSA-hph2-m3g5-xxv4
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-sqb5-brnu-vfbk
Aliases:
CVE-2021-21343
GHSA-74cv-f58x-f9wf
XStream is vulnerable to an Arbitrary File Deletion on the local host when unmarshalling as long as the executing process has sufficient rights ### Impact The processed stream at unmarshalling time contains type information to recreate the formerly written objects. XStream creates therefore new instances based on these type information. An attacker can manipulate the processed input stream and replace or inject objects, that result in the deletion of a file on the local host. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21343](https://x-stream.github.io/CVE-2021-21343.html). ### Credits 钟潦贵 (Liaogui Zhong) found and reported the issue to XStream and provided the required information to reproduce it. ### 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.16
Affected by 21 other vulnerabilities.
VCID-u5yy-xx6z-dfh6
Aliases:
CVE-2021-21349
GHSA-f6hm-88x3-mfjv
A Server-Side Forgery Request can be activated unmarshalling with XStream to access data streams from an arbitrary URL referencing a resource in an intranet or the local host ### Impact The vulnerability may allow a remote attacker to request data from internal resources that are not publicly available only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21349](https://x-stream.github.io/CVE-2021-21349.html). ### Credits The vulnerability was discovered and reported by threedr3am. ### 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.16
Affected by 21 other vulnerabilities.
VCID-v7za-zjfx-mqek
Aliases:
CVE-2021-39152
GHSA-xw4p-crpj-vjx2
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-vn1d-9uf5-gbce
Aliases:
CVE-2020-26259
GHSA-jfvx-7wrx-43fh
XStream vulnerable to an Arbitrary File Deletion on the local host when unmarshalling ### Impact The vulnerability may allow a remote attacker to delete arbitrary know files on the host as log as the executing process has sufficient rights only by manipulating the processed input stream. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.15. ### Workarounds The reported vulnerability does only exist with a JAX-WS runtime on the classpath. No user is affected, who followed the recommendation to setup XStream's Security Framework with a whitelist! Anyone relying on XStream's default blacklist can immediately switch to a whilelist for the allowed types to avoid the vulnerability. Users of XStream 1.4.14 or below who still insist to use XStream default blacklist - despite that clear recommendation - can use a workaround depending on their version in use. Users of XStream 1.4.14 can simply add two lines to XStream's setup code: ```Java xstream.denyTypes(new String[]{ "jdk.nashorn.internal.objects.NativeString" }); xstream.denyTypesByRegExp(new String[]{ ".*\\.ReadAllStream\\$FileStream" }); ``` Users of XStream 1.4.14 to 1.4.13 can simply add three lines to XStream's setup code: ```Java xstream.denyTypes(new String[]{ "javax.imageio.ImageIO$ContainsFilter", "jdk.nashorn.internal.objects.NativeString" }); xstream.denyTypes(new Class[]{ java.lang.ProcessBuilder.class }); xstream.denyTypesByRegExp(new String[]{ ".*\\.ReadAllStream\\$FileStream" }); ``` Users of XStream 1.4.12 to 1.4.7 who want to use XStream with a black list will have to setup such a list from scratch and deny at least the following types: _javax.imageio.ImageIO$ContainsFilter_, _java.beans.EventHandler_, _java.lang.ProcessBuilder_, _jdk.nashorn.internal.objects.NativeString.class_, _java.lang.Void_ and _void_ and deny several types by name pattern. ```Java xstream.denyTypes(new String[]{ "javax.imageio.ImageIO$ContainsFilter", "jdk.nashorn.internal.objects.NativeString" }); xstream.denyTypes(new Class[]{ java.lang.ProcessBuilder.class, "jdk.nashorn.internal.objects.NativeString", java.beans.EventHandler.class, java.lang.ProcessBuilder.class, java.lang.Void.class, void.class }); xstream.denyTypesByRegExp(new String[]{ ".*\\$LazyIterator", "javax\\.crypto\\..*", ".*\\.ReadAllStream\\$FileStream" }); ``` Users of XStream 1.4.6 or below can register an own converter to prevent the unmarshalling of the currently know critical types of the Java runtime. It is in fact an updated version of the workaround for CVE-2013-7285: ```Java xstream.registerConverter(new Converter() { public boolean canConvert(Class type) { return type != null && (type == java.beans.EventHandler.class || type == java.lang.ProcessBuilder.class || type.getName().equals("javax.imageio.ImageIO$ContainsFilter") || type.getName().equals("jdk.nashorn.internal.objects.NativeString") || type == java.lang.Void.class || void.class || Proxy.isProxy(type)) || type.getName().startsWith("javax.crypto.") || type.getName().endsWith("$LazyIterator") || type.getName().endsWith(".ReadAllStream$FileStream")); } public Object unmarshal(HierarchicalStreamReader reader, UnmarshallingContext context) { throw new ConversionException("Unsupported type due to security reasons."); } public void marshal(Object source, HierarchicalStreamWriter writer, MarshallingContext context) { throw new ConversionException("Unsupported type due to security reasons."); } }, XStream.PRIORITY_LOW); ``` ### 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.15
Affected by 32 other vulnerabilities.
VCID-vpxs-6wcf-ckh9
Aliases:
CVE-2021-21346
GHSA-4hrm-m67v-5cxr
XStream is vulnerable to an Arbitrary Code Execution attack ### Impact The vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21346](https://x-stream.github.io/CVE-2021-21346.html). ### Credits wh1t3p1g G5-RD6@IIE found and reported the issue to XStream and provided the required information to reproduce it. ### 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.16
Affected by 21 other vulnerabilities.
VCID-wehr-d623-akaj
Aliases:
CVE-2021-39140
GHSA-6wf9-jmg9-vxcc
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-xdpy-sx55-b3ac
Aliases:
CVE-2021-21347
GHSA-qpfq-ph7r-qv6f
XStream is vulnerable to an Arbitrary Code Execution attack ### Impact The vulnerability may allow a remote attacker to load and execute arbitrary code from a remote host only by manipulating the processed input stream. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21347](https://x-stream.github.io/CVE-2021-21347.html). ### Credits The vulnerability was discovered and reported by threedr3am. ### 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.16
Affected by 21 other vulnerabilities.
VCID-xsr8-3cke-33ck
Aliases:
CVE-2021-39149
GHSA-3ccq-5vw3-2p6x
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-y8ub-2kad-kqbs
Aliases:
CVE-2013-7285
GHSA-f554-x222-wgf7
Xstream API versions up to 1.4.6 and version 1.4.10, if the security framework has not been initialized, may allow a remote attacker to run arbitrary shell commands by manipulating the processed input stream when unmarshaling XML or any supported format. e.g. JSON.
1.4.7
Affected by 37 other vulnerabilities.
1.4.11
Affected by 35 other vulnerabilities.
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.
VCID-yuwe-6pp1-bke2
Aliases:
CVE-2021-39139
GHSA-64xx-cq4q-mf44
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.
1.4.18
Affected by 6 other vulnerabilities.
VCID-zm9c-xw64-5qcc
Aliases:
CVE-2021-21341
GHSA-2p3x-qw9c-25hh
XStream can cause a Denial of Service. ### Impact 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. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16. ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21341](https://x-stream.github.io/CVE-2021-21341.html). ### Credits The vulnerability was discovered and reported by threedr3am. ### 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.16
Affected by 21 other vulnerabilities.
VCID-zmh2-t17w-wue1
Aliases:
CVE-2021-21342
GHSA-hvv8-336g-rx3m
A Server-Side Forgery Request can be activated unmarshalling with XStream to access data streams from an arbitrary URL referencing a resource in an intranet or the local host ### Impact The processed stream at unmarshalling time contains type information to recreate the formerly written objects. XStream creates therefore new instances based on these type information. An attacker can manipulate the processed input stream and replace or inject objects, that result in a server-side forgery request. No user is affected, who followed the recommendation to setup XStream's security framework with a whitelist limited to the minimal required types. ### Patches If you rely on XStream's default blacklist of the [Security Framework](https://x-stream.github.io/security.html#framework), you will have to use at least version 1.4.16 ### Workarounds See [workarounds](https://x-stream.github.io/security.html#workaround) for the different versions covering all CVEs. ### References See full information about the nature of the vulnerability and the steps to reproduce it in XStream's documentation for [CVE-2021-21342](https://x-stream.github.io/CVE-2021-21342.html). ### Credits 钟潦贵 (Liaogui Zhong) found and reported the issue to XStream and provided the required information to reproduce it. ### 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.16
Affected by 21 other vulnerabilities.
VCID-znut-tkpq-b7cu
Aliases:
CVE-2016-3674
GHSA-rgh3-987h-wpmw
Multiple XML external entity (XXE) vulnerabilities in the (1) Dom4JDriver, (2) DomDriver, (3) JDomDriver, (4) JDom2Driver, (5) SjsxpDriver, (6) StandardStaxDriver, and (7) WstxDriver drivers in XStream before 1.4.9 allow remote attackers to read arbitrary files via a crafted XML document.
1.4.9
Affected by 36 other vulnerabilities.
Vulnerabilities fixed by this package (0)
Vulnerability Summary Aliases
This package is not known to fix vulnerabilities.

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T23:13:41.608060+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.118080+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.368717+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.698923+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.698237+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.292312+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.611981+00:00 GitLab Importer Affected by 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.100659+00:00 GitLab Importer Affected by 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.245721+00:00 GitLab Importer Affected by 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.236496+00:00 GitLab Importer Affected by 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:38.986777+00:00 GitLab Importer Affected by 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.743602+00:00 GitLab Importer Affected by 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.342752+00:00 GitLab Importer Affected by 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.099944+00:00 GitLab Importer Affected by 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.860823+00:00 GitLab Importer Affected by 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.630326+00:00 GitLab Importer Affected by 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.387523+00:00 GitLab Importer Affected by 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.140978+00:00 GitLab Importer Affected by 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.901191+00:00 GitLab Importer Affected by 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.655868+00:00 GitLab Importer Affected by 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-16T21:23:16.772383+00:00 GitLab Importer Affected by VCID-qvbb-jhkk-2udw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-29505.yml 38.4.0
2026-04-16T21:19:26.765299+00:00 GitLab Importer Affected by VCID-6mz4-fu3s-vycx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21350.yml 38.4.0
2026-04-16T21:19:24.653997+00:00 GitLab Importer Affected by VCID-zmh2-t17w-wue1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21342.yml 38.4.0
2026-04-16T21:19:23.484387+00:00 GitLab Importer Affected by VCID-sqb5-brnu-vfbk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21343.yml 38.4.0
2026-04-16T21:19:23.254513+00:00 GitLab Importer Affected by VCID-re5g-6kjz-q7e8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21351.yml 38.4.0
2026-04-16T21:19:22.413725+00:00 GitLab Importer Affected by VCID-xdpy-sx55-b3ac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21347.yml 38.4.0
2026-04-16T21:19:22.191005+00:00 GitLab Importer Affected by VCID-u5yy-xx6z-dfh6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21349.yml 38.4.0
2026-04-16T21:19:20.928742+00:00 GitLab Importer Affected by VCID-qh44-75jb-wbhf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21345.yml 38.4.0
2026-04-16T21:19:20.697846+00:00 GitLab Importer Affected by VCID-qwp5-wae9-cffb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21348.yml 38.4.0
2026-04-16T21:19:17.252212+00:00 GitLab Importer Affected by VCID-vpxs-6wcf-ckh9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21346.yml 38.4.0
2026-04-16T21:19:17.017077+00:00 GitLab Importer Affected by VCID-nrf7-heu6-vfdc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21344.yml 38.4.0
2026-04-16T21:19:16.196395+00:00 GitLab Importer Affected by VCID-zm9c-xw64-5qcc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21341.yml 38.4.0
2026-04-16T21:15:21.885177+00:00 GitLab Importer Affected by VCID-hsja-ryzy-7bbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26258.yml 38.4.0
2026-04-16T21:15:16.312738+00:00 GitLab Importer Affected by VCID-vn1d-9uf5-gbce https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26259.yml 38.4.0
2026-04-16T21:14:05.029389+00:00 GitLab Importer Affected by VCID-2t1b-135u-euem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26217.yml 38.4.0
2026-04-16T21:05:01.101844+00:00 GitLab Importer Affected by VCID-nn7p-d7hz-53d5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2017-7957.yml 38.4.0
2026-04-16T21:04:59.515030+00:00 GitLab Importer Affected by VCID-znut-tkpq-b7cu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2016-3674.yml 38.4.0
2026-04-16T20:54:20.465826+00:00 GitLab Importer Affected by VCID-y8ub-2kad-kqbs https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2013-7285.yml 38.4.0
2026-04-12T00:32:13.634122+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.178689+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.696754+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.238644+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.496062+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.133723+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.692382+00:00 GitLab Importer Affected by 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.181883+00:00 GitLab Importer Affected by 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.295729+00:00 GitLab Importer Affected by 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.293680+00:00 GitLab Importer Affected by 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.030696+00:00 GitLab Importer Affected by 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.769660+00:00 GitLab Importer Affected by 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.466518+00:00 GitLab Importer Affected by 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.219101+00:00 GitLab Importer Affected by 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:36.970698+00:00 GitLab Importer Affected by 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.712452+00:00 GitLab Importer Affected by 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.465059+00:00 GitLab Importer Affected by 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.212576+00:00 GitLab Importer Affected by 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.841440+00:00 GitLab Importer Affected by 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.465377+00:00 GitLab Importer Affected by 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-11T22:35:56.895742+00:00 GitLab Importer Affected by VCID-qvbb-jhkk-2udw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-29505.yml 38.3.0
2026-04-11T22:31:45.244783+00:00 GitLab Importer Affected by VCID-6mz4-fu3s-vycx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21350.yml 38.3.0
2026-04-11T22:31:42.953245+00:00 GitLab Importer Affected by VCID-zmh2-t17w-wue1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21342.yml 38.3.0
2026-04-11T22:31:41.715835+00:00 GitLab Importer Affected by VCID-sqb5-brnu-vfbk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21343.yml 38.3.0
2026-04-11T22:31:41.468046+00:00 GitLab Importer Affected by VCID-re5g-6kjz-q7e8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21351.yml 38.3.0
2026-04-11T22:31:40.550004+00:00 GitLab Importer Affected by VCID-xdpy-sx55-b3ac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21347.yml 38.3.0
2026-04-11T22:31:40.309058+00:00 GitLab Importer Affected by VCID-u5yy-xx6z-dfh6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21349.yml 38.3.0
2026-04-11T22:31:38.920785+00:00 GitLab Importer Affected by VCID-qh44-75jb-wbhf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21345.yml 38.3.0
2026-04-11T22:31:38.692353+00:00 GitLab Importer Affected by VCID-qwp5-wae9-cffb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21348.yml 38.3.0
2026-04-11T22:31:34.850235+00:00 GitLab Importer Affected by VCID-vpxs-6wcf-ckh9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21346.yml 38.3.0
2026-04-11T22:31:34.612724+00:00 GitLab Importer Affected by VCID-nrf7-heu6-vfdc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21344.yml 38.3.0
2026-04-11T22:31:33.726436+00:00 GitLab Importer Affected by VCID-zm9c-xw64-5qcc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21341.yml 38.3.0
2026-04-11T22:27:29.621926+00:00 GitLab Importer Affected by VCID-hsja-ryzy-7bbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26258.yml 38.3.0
2026-04-11T22:27:24.427641+00:00 GitLab Importer Affected by VCID-vn1d-9uf5-gbce https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26259.yml 38.3.0
2026-04-11T22:26:09.849386+00:00 GitLab Importer Affected by VCID-2t1b-135u-euem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26217.yml 38.3.0
2026-04-11T22:16:28.145134+00:00 GitLab Importer Affected by VCID-nn7p-d7hz-53d5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2017-7957.yml 38.3.0
2026-04-11T22:16:26.666592+00:00 GitLab Importer Affected by VCID-znut-tkpq-b7cu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2016-3674.yml 38.3.0
2026-04-11T22:05:18.213352+00:00 GitLab Importer Affected by VCID-y8ub-2kad-kqbs https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2013-7285.yml 38.3.0
2026-04-05T02:23:06.034165+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.216713+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.080681+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.879191+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.335733+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.287685+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.279794+00:00 GitLab Importer Affected by 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.609758+00:00 GitLab Importer Affected by 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.816854+00:00 GitLab Importer Affected by 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.897884+00:00 GitLab Importer Affected by 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.674913+00:00 GitLab Importer Affected by 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.452604+00:00 GitLab Importer Affected by 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.162537+00:00 GitLab Importer Affected by 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.913997+00:00 GitLab Importer Affected by 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.690297+00:00 GitLab Importer Affected by 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.465956+00:00 GitLab Importer Affected by 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.241652+00:00 GitLab Importer Affected by 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.005608+00:00 GitLab Importer Affected by 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.830555+00:00 GitLab Importer Affected by 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.645740+00:00 GitLab Importer Affected by 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-02T22:46:58.968324+00:00 GitLab Importer Affected by VCID-qvbb-jhkk-2udw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-29505.yml 38.1.0
2026-04-02T22:43:05.586802+00:00 GitLab Importer Affected by VCID-6mz4-fu3s-vycx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21350.yml 38.1.0
2026-04-02T22:43:03.455758+00:00 GitLab Importer Affected by VCID-zmh2-t17w-wue1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21342.yml 38.1.0
2026-04-02T22:43:02.319495+00:00 GitLab Importer Affected by VCID-sqb5-brnu-vfbk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21343.yml 38.1.0
2026-04-02T22:43:02.093192+00:00 GitLab Importer Affected by VCID-re5g-6kjz-q7e8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21351.yml 38.1.0
2026-04-02T22:43:01.254206+00:00 GitLab Importer Affected by VCID-xdpy-sx55-b3ac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21347.yml 38.1.0
2026-04-02T22:43:00.997877+00:00 GitLab Importer Affected by VCID-u5yy-xx6z-dfh6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21349.yml 38.1.0
2026-04-02T22:42:59.775800+00:00 GitLab Importer Affected by VCID-qh44-75jb-wbhf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21345.yml 38.1.0
2026-04-02T22:42:59.549103+00:00 GitLab Importer Affected by VCID-qwp5-wae9-cffb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21348.yml 38.1.0
2026-04-02T22:42:55.923243+00:00 GitLab Importer Affected by VCID-vpxs-6wcf-ckh9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21346.yml 38.1.0
2026-04-02T22:42:55.707555+00:00 GitLab Importer Affected by VCID-nrf7-heu6-vfdc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21344.yml 38.1.0
2026-04-02T22:42:54.897783+00:00 GitLab Importer Affected by VCID-zm9c-xw64-5qcc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21341.yml 38.1.0
2026-04-02T22:39:09.504666+00:00 GitLab Importer Affected by VCID-hsja-ryzy-7bbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26258.yml 38.1.0
2026-04-02T22:39:04.674384+00:00 GitLab Importer Affected by VCID-vn1d-9uf5-gbce https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26259.yml 38.1.0
2026-04-02T22:37:55.435773+00:00 GitLab Importer Affected by VCID-2t1b-135u-euem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26217.yml 38.1.0
2026-04-02T22:28:38.002892+00:00 GitLab Importer Affected by VCID-nn7p-d7hz-53d5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2017-7957.yml 38.1.0
2026-04-02T22:28:36.461423+00:00 GitLab Importer Affected by VCID-znut-tkpq-b7cu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2016-3674.yml 38.1.0
2026-04-02T22:18:10.812022+00:00 GitLab Importer Affected by VCID-y8ub-2kad-kqbs https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2013-7285.yml 38.1.0
2026-04-01T18:03:36.920976+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.306574+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.756099+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.704421+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-01T17:10:42.926655+00:00 GitLab Importer Affected by 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-01T17:10:13.174137+00:00 GitLab Importer Affected by 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-01T17:10:12.299240+00:00 GitLab Importer Affected by 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-01T17:10:11.329284+00:00 GitLab Importer Affected by 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-01T17:10:11.076236+00:00 GitLab Importer Affected by 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-01T17:10:10.835377+00:00 GitLab Importer Affected by 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-01T17:10:10.412303+00:00 GitLab Importer Affected by 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-01T17:10:10.162843+00:00 GitLab Importer Affected by 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-01T17:10:09.907742+00:00 GitLab Importer Affected by 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-01T17:10:09.663655+00:00 GitLab Importer Affected by 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-01T17:10:09.418309+00:00 GitLab Importer Affected by 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-01T17:10:09.171241+00:00 GitLab Importer Affected by 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-01T17:10:07.816990+00:00 GitLab Importer Affected by 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-01T17:10:06.503468+00:00 GitLab Importer Affected by 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
2026-04-01T17:04:53.404885+00:00 GitLab Importer Affected by VCID-qvbb-jhkk-2udw https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-29505.yml 38.0.0
2026-04-01T17:00:48.207849+00:00 GitLab Importer Affected by VCID-6mz4-fu3s-vycx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21350.yml 38.0.0
2026-04-01T17:00:45.933353+00:00 GitLab Importer Affected by VCID-zmh2-t17w-wue1 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21342.yml 38.0.0
2026-04-01T17:00:44.726413+00:00 GitLab Importer Affected by VCID-sqb5-brnu-vfbk https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21343.yml 38.0.0
2026-04-01T17:00:44.483381+00:00 GitLab Importer Affected by VCID-re5g-6kjz-q7e8 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21351.yml 38.0.0
2026-04-01T17:00:43.581906+00:00 GitLab Importer Affected by VCID-xdpy-sx55-b3ac https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21347.yml 38.0.0
2026-04-01T17:00:43.348323+00:00 GitLab Importer Affected by VCID-u5yy-xx6z-dfh6 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21349.yml 38.0.0
2026-04-01T17:00:42.001842+00:00 GitLab Importer Affected by VCID-qh44-75jb-wbhf https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21345.yml 38.0.0
2026-04-01T17:00:41.768165+00:00 GitLab Importer Affected by VCID-qwp5-wae9-cffb https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21348.yml 38.0.0
2026-04-01T17:00:37.984594+00:00 GitLab Importer Affected by VCID-vpxs-6wcf-ckh9 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21346.yml 38.0.0
2026-04-01T17:00:37.728962+00:00 GitLab Importer Affected by VCID-nrf7-heu6-vfdc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21344.yml 38.0.0
2026-04-01T17:00:36.842050+00:00 GitLab Importer Affected by VCID-zm9c-xw64-5qcc https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2021-21341.yml 38.0.0
2026-04-01T16:56:35.899520+00:00 GitLab Importer Affected by VCID-hsja-ryzy-7bbx https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26258.yml 38.0.0
2026-04-01T16:56:31.188697+00:00 GitLab Importer Affected by VCID-vn1d-9uf5-gbce https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26259.yml 38.0.0
2026-04-01T16:55:18.091076+00:00 GitLab Importer Affected by VCID-2t1b-135u-euem https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2020-26217.yml 38.0.0
2026-04-01T16:46:35.504013+00:00 GitLab Importer Affected by VCID-nn7p-d7hz-53d5 https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2017-7957.yml 38.0.0
2026-04-01T16:46:33.843501+00:00 GitLab Importer Affected by VCID-znut-tkpq-b7cu https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2016-3674.yml 38.0.0
2026-04-01T16:35:50.907259+00:00 GitLab Importer Affected by VCID-y8ub-2kad-kqbs https://gitlab.com/gitlab-org/advisories-community/-/blob/main/maven/com.thoughtworks.xstream/xstream/CVE-2013-7285.yml 38.0.0