Staging Environment: Content and features may be unstable or change without notice.
Search for packages
Package details: pkg:deb/debian/libxstream-java@1.4.21-1?distro=trixie
purl pkg:deb/debian/libxstream-java@1.4.21-1?distro=trixie
Vulnerabilities affecting this package (0)
Vulnerability Summary Fixed by
This package is not known to be affected by vulnerabilities.
Vulnerabilities fixed by this package (36)
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-2t1b-135u-euem 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) CVE-2020-26217
GHSA-mw36-7c6c-q4q2
VCID-6mz4-fu3s-vycx 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) CVE-2021-21350
GHSA-43gc-mjxg-gvrq
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-9442-1vwr-5fbt 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) CVE-2022-41966
GHSA-j563-grx4-pjpv
VCID-bdv1-cuyk-sqc1 Deserialization of Untrusted Data and Code Injection in xstream It was found that xstream API version 1.4.10 before 1.4.11 introduced a regression for a previous deserialization flaw. If the security framework has not been initialized, it may allow a remote attacker to run arbitrary shell commands when unmarshalling XML or any supported format. e.g. JSON. (regression of CVE-2013-7285) CVE-2019-10173
GHSA-hf23-9pf7-388p
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-fcg2-x3s5-wudk 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. CVE-2024-47072
GHSA-hfq9-hggm-c56q
VCID-hsja-ryzy-7bbx 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) CVE-2020-26258
GHSA-4cch-wxpw-8p28
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-nn7p-d7hz-53d5 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. CVE-2017-7957
GHSA-7hwc-46rm-65jh
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-nrf7-heu6-vfdc 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) CVE-2021-21344
GHSA-59jw-jqf4-3wq3
VCID-qh44-75jb-wbhf 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) CVE-2021-21345
GHSA-hwpc-8xqv-jvj4
VCID-qvbb-jhkk-2udw 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) CVE-2021-29505
GHSA-7chv-rrw6-w6fc
VCID-qwp5-wae9-cffb 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) CVE-2021-21348
GHSA-56p8-3fh9-4cvq
VCID-re5g-6kjz-q7e8 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) CVE-2021-21351
GHSA-hrcp-8f3q-4w2c
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-sqb5-brnu-vfbk 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) CVE-2021-21343
GHSA-74cv-f58x-f9wf
VCID-u5yy-xx6z-dfh6 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) CVE-2021-21349
GHSA-f6hm-88x3-mfjv
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-vn1d-9uf5-gbce 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) CVE-2020-26259
GHSA-jfvx-7wrx-43fh
VCID-vpxs-6wcf-ckh9 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) CVE-2021-21346
GHSA-4hrm-m67v-5cxr
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-xdpy-sx55-b3ac 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) CVE-2021-21347
GHSA-qpfq-ph7r-qv6f
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-y8ub-2kad-kqbs 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. CVE-2013-7285
GHSA-f554-x222-wgf7
VCID-yb4j-92y9-nfb5 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. CVE-2021-43859
GHSA-rmr5-cpv2-vgjf
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
VCID-zm9c-xw64-5qcc 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) CVE-2021-21341
GHSA-2p3x-qw9c-25hh
VCID-zmh2-t17w-wue1 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) CVE-2021-21342
GHSA-hvv8-336g-rx3m
VCID-znut-tkpq-b7cu 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. CVE-2016-3674
GHSA-rgh3-987h-wpmw

Date Actor Action Vulnerability Source VulnerableCode Version
2026-04-16T13:31:58.460830+00:00 Debian Importer Fixing VCID-12bx-r37t-3ygm https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T13:31:07.780650+00:00 Debian Importer Fixing VCID-zm9c-xw64-5qcc https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T13:15:51.917179+00:00 Debian Importer Fixing VCID-znut-tkpq-b7cu https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T13:04:59.520194+00:00 Debian Importer Fixing VCID-sqb5-brnu-vfbk https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:57:41.658857+00:00 Debian Importer Fixing VCID-8gha-n6ke-nucu https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:28:02.078536+00:00 Debian Importer Fixing VCID-qvbb-jhkk-2udw https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:27:38.309450+00:00 Debian Importer Fixing VCID-vn1d-9uf5-gbce https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:26:26.925369+00:00 Debian Importer Fixing VCID-xsr8-3cke-33ck https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:18:40.633545+00:00 Debian Importer Fixing VCID-qh44-75jb-wbhf https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T12:12:52.322635+00:00 Debian Importer Fixing VCID-zmh2-t17w-wue1 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:59:09.900149+00:00 Debian Importer Fixing VCID-bdv1-cuyk-sqc1 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:53:21.765449+00:00 Debian Importer Fixing VCID-2t1b-135u-euem https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:49:39.207432+00:00 Debian Importer Fixing VCID-u5yy-xx6z-dfh6 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:47:53.926163+00:00 Debian Importer Fixing VCID-c5tu-31kw-mfcf https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:40:56.345634+00:00 Debian Importer Fixing VCID-yuwe-6pp1-bke2 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:40:56.304976+00:00 Debian Importer Fixing VCID-dxpe-qmxq-ykax https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:33:49.526048+00:00 Debian Importer Fixing VCID-vpxs-6wcf-ckh9 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:29:57.753981+00:00 Debian Importer Fixing VCID-re5g-6kjz-q7e8 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:17:31.484300+00:00 Debian Importer Fixing VCID-7ma6-2uv1-sbef https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T11:15:19.868391+00:00 Debian Importer Fixing VCID-fcg2-x3s5-wudk https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:53:51.404225+00:00 Debian Importer Fixing VCID-eeye-wfxf-x7cc https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:49:32.956488+00:00 Debian Importer Fixing VCID-npjx-vkrd-9bae https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:43:56.413448+00:00 Debian Importer Fixing VCID-nrf7-heu6-vfdc https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:32:05.402909+00:00 Debian Importer Fixing VCID-v7za-zjfx-mqek https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:27:48.492307+00:00 Debian Importer Fixing VCID-xdpy-sx55-b3ac https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:19:39.713944+00:00 Debian Importer Fixing VCID-6mz4-fu3s-vycx https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T10:06:39.374746+00:00 Debian Importer Fixing VCID-na6t-mkxt-3qbw https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:55:45.213466+00:00 Debian Importer Fixing VCID-yb4j-92y9-nfb5 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:49:34.914947+00:00 Debian Importer Fixing VCID-hsja-ryzy-7bbx https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:47:12.368882+00:00 Debian Importer Fixing VCID-y8ub-2kad-kqbs https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:18:19.651265+00:00 Debian Importer Fixing VCID-wehr-d623-akaj https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T09:12:53.602456+00:00 Debian Importer Fixing VCID-nn7p-d7hz-53d5 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:56:56.523205+00:00 Debian Importer Fixing VCID-rfc1-r1gr-wffp https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:44:22.546647+00:00 Debian Importer Fixing VCID-f779-wcjk-kfc1 https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:43:43.171187+00:00 Debian Importer Fixing VCID-qwp5-wae9-cffb https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-16T08:41:51.146717+00:00 Debian Importer Fixing VCID-9442-1vwr-5fbt https://security-tracker.debian.org/tracker/data/json 38.4.0
2026-04-13T09:20:28.865097+00:00 Debian Importer Fixing VCID-12bx-r37t-3ygm https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T09:19:49.614082+00:00 Debian Importer Fixing VCID-zm9c-xw64-5qcc https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T09:08:04.762547+00:00 Debian Importer Fixing VCID-znut-tkpq-b7cu https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:59:43.368117+00:00 Debian Importer Fixing VCID-sqb5-brnu-vfbk https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:54:11.836558+00:00 Debian Importer Fixing VCID-8gha-n6ke-nucu https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:32:04.893938+00:00 Debian Importer Fixing VCID-qvbb-jhkk-2udw https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:31:46.920618+00:00 Debian Importer Fixing VCID-vn1d-9uf5-gbce https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:30:55.035265+00:00 Debian Importer Fixing VCID-xsr8-3cke-33ck https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:25:14.612920+00:00 Debian Importer Fixing VCID-qh44-75jb-wbhf https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:21:18.373760+00:00 Debian Importer Fixing VCID-zmh2-t17w-wue1 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:11:02.328234+00:00 Debian Importer Fixing VCID-bdv1-cuyk-sqc1 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:06:59.196432+00:00 Debian Importer Fixing VCID-2t1b-135u-euem https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:04:16.126806+00:00 Debian Importer Fixing VCID-u5yy-xx6z-dfh6 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T08:02:51.066425+00:00 Debian Importer Fixing VCID-c5tu-31kw-mfcf https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:57:34.472460+00:00 Debian Importer Fixing VCID-yuwe-6pp1-bke2 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:57:34.432460+00:00 Debian Importer Fixing VCID-dxpe-qmxq-ykax https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:52:59.182853+00:00 Debian Importer Fixing VCID-vpxs-6wcf-ckh9 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:50:14.101682+00:00 Debian Importer Fixing VCID-re5g-6kjz-q7e8 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:40:55.200436+00:00 Debian Importer Fixing VCID-7ma6-2uv1-sbef https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:39:18.225059+00:00 Debian Importer Fixing VCID-fcg2-x3s5-wudk https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:23:06.083108+00:00 Debian Importer Fixing VCID-eeye-wfxf-x7cc https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:19:43.726690+00:00 Debian Importer Fixing VCID-npjx-vkrd-9bae https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:15:26.382310+00:00 Debian Importer Fixing VCID-nrf7-heu6-vfdc https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:06:41.525457+00:00 Debian Importer Fixing VCID-v7za-zjfx-mqek https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T07:03:35.875671+00:00 Debian Importer Fixing VCID-xdpy-sx55-b3ac https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:57:09.824258+00:00 Debian Importer Fixing VCID-6mz4-fu3s-vycx https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:47:19.594572+00:00 Debian Importer Fixing VCID-na6t-mkxt-3qbw https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:38:48.380333+00:00 Debian Importer Fixing VCID-yb4j-92y9-nfb5 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:33:57.799952+00:00 Debian Importer Fixing VCID-hsja-ryzy-7bbx https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-13T06:32:13.307450+00:00 Debian Importer Fixing VCID-y8ub-2kad-kqbs https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:13:04.428351+00:00 Debian Importer Fixing VCID-wehr-d623-akaj https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:09:53.584679+00:00 Debian Importer Fixing VCID-nn7p-d7hz-53d5 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T18:00:20.745046+00:00 Debian Importer Fixing VCID-rfc1-r1gr-wffp https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:52:16.103784+00:00 Debian Importer Fixing VCID-f779-wcjk-kfc1 https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:51:52.605074+00:00 Debian Importer Fixing VCID-qwp5-wae9-cffb https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-11T17:50:41.429163+00:00 Debian Importer Fixing VCID-9442-1vwr-5fbt https://security-tracker.debian.org/tracker/data/json 38.3.0
2026-04-03T07:30:13.353974+00:00 Debian Importer Fixing VCID-fcg2-x3s5-wudk https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.312822+00:00 Debian Importer Fixing VCID-9442-1vwr-5fbt https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.262588+00:00 Debian Importer Fixing VCID-yb4j-92y9-nfb5 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.220466+00:00 Debian Importer Fixing VCID-f779-wcjk-kfc1 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.173631+00:00 Debian Importer Fixing VCID-c5tu-31kw-mfcf https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.126560+00:00 Debian Importer Fixing VCID-v7za-zjfx-mqek https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.079125+00:00 Debian Importer Fixing VCID-rfc1-r1gr-wffp https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:13.030657+00:00 Debian Importer Fixing VCID-12bx-r37t-3ygm https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.983457+00:00 Debian Importer Fixing VCID-xsr8-3cke-33ck https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.936609+00:00 Debian Importer Fixing VCID-8gha-n6ke-nucu https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.889325+00:00 Debian Importer Fixing VCID-7ma6-2uv1-sbef https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.841382+00:00 Debian Importer Fixing VCID-eeye-wfxf-x7cc https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.793677+00:00 Debian Importer Fixing VCID-dxpe-qmxq-ykax https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.745994+00:00 Debian Importer Fixing VCID-na6t-mkxt-3qbw https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.697476+00:00 Debian Importer Fixing VCID-npjx-vkrd-9bae https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.649564+00:00 Debian Importer Fixing VCID-wehr-d623-akaj https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.601673+00:00 Debian Importer Fixing VCID-yuwe-6pp1-bke2 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.551288+00:00 Debian Importer Fixing VCID-qvbb-jhkk-2udw https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.509779+00:00 Debian Importer Fixing VCID-re5g-6kjz-q7e8 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.470191+00:00 Debian Importer Fixing VCID-6mz4-fu3s-vycx https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.430480+00:00 Debian Importer Fixing VCID-u5yy-xx6z-dfh6 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.390372+00:00 Debian Importer Fixing VCID-qwp5-wae9-cffb https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.350234+00:00 Debian Importer Fixing VCID-xdpy-sx55-b3ac https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.310236+00:00 Debian Importer Fixing VCID-vpxs-6wcf-ckh9 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.270110+00:00 Debian Importer Fixing VCID-qh44-75jb-wbhf https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.230697+00:00 Debian Importer Fixing VCID-nrf7-heu6-vfdc https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.191026+00:00 Debian Importer Fixing VCID-sqb5-brnu-vfbk https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.151642+00:00 Debian Importer Fixing VCID-zmh2-t17w-wue1 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.112366+00:00 Debian Importer Fixing VCID-zm9c-xw64-5qcc https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.071129+00:00 Debian Importer Fixing VCID-vn1d-9uf5-gbce https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:12.030512+00:00 Debian Importer Fixing VCID-hsja-ryzy-7bbx https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:11.988298+00:00 Debian Importer Fixing VCID-2t1b-135u-euem https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:11.942502+00:00 Debian Importer Fixing VCID-bdv1-cuyk-sqc1 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:11.907232+00:00 Debian Importer Fixing VCID-nn7p-d7hz-53d5 https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:11.865076+00:00 Debian Importer Fixing VCID-znut-tkpq-b7cu https://security-tracker.debian.org/tracker/data/json 38.1.0
2026-04-03T07:30:11.822382+00:00 Debian Importer Fixing VCID-y8ub-2kad-kqbs https://security-tracker.debian.org/tracker/data/json 38.1.0