Action not permitted
Modal body text goes here.
Modal Title
Modal Body
CVE-2025-40040 (GCVE-0-2025-40040)
Vulnerability from cvelistv5 – Published: 2025-10-28 11:48 – Updated: 2026-05-11 21:41
VLAI
EPSS
Title
mm/ksm: fix flag-dropping behavior in ksm_madvise
Summary
In the Linux kernel, the following vulnerability has been resolved:
mm/ksm: fix flag-dropping behavior in ksm_madvise
syzkaller discovered the following crash: (kernel BUG)
[ 44.607039] ------------[ cut here ]------------
[ 44.607422] kernel BUG at mm/userfaultfd.c:2067!
[ 44.608148] Oops: invalid opcode: 0000 [#1] SMP DEBUG_PAGEALLOC KASAN NOPTI
[ 44.608814] CPU: 1 UID: 0 PID: 2475 Comm: reproducer Not tainted 6.16.0-rc6 #1 PREEMPT(none)
[ 44.609635] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014
[ 44.610695] RIP: 0010:userfaultfd_release_all+0x3a8/0x460
<snip other registers, drop unreliable trace>
[ 44.617726] Call Trace:
[ 44.617926] <TASK>
[ 44.619284] userfaultfd_release+0xef/0x1b0
[ 44.620976] __fput+0x3f9/0xb60
[ 44.621240] fput_close_sync+0x110/0x210
[ 44.622222] __x64_sys_close+0x8f/0x120
[ 44.622530] do_syscall_64+0x5b/0x2f0
[ 44.622840] entry_SYSCALL_64_after_hwframe+0x76/0x7e
[ 44.623244] RIP: 0033:0x7f365bb3f227
Kernel panics because it detects UFFD inconsistency during
userfaultfd_release_all(). Specifically, a VMA which has a valid pointer
to vma->vm_userfaultfd_ctx, but no UFFD flags in vma->vm_flags.
The inconsistency is caused in ksm_madvise(): when user calls madvise()
with MADV_UNMEARGEABLE on a VMA that is registered for UFFD in MINOR mode,
it accidentally clears all flags stored in the upper 32 bits of
vma->vm_flags.
Assuming x86_64 kernel build, unsigned long is 64-bit and unsigned int and
int are 32-bit wide. This setup causes the following mishap during the &=
~VM_MERGEABLE assignment.
VM_MERGEABLE is a 32-bit constant of type unsigned int, 0x8000'0000.
After ~ is applied, it becomes 0x7fff'ffff unsigned int, which is then
promoted to unsigned long before the & operation. This promotion fills
upper 32 bits with leading 0s, as we're doing unsigned conversion (and
even for a signed conversion, this wouldn't help as the leading bit is 0).
& operation thus ends up AND-ing vm_flags with 0x0000'0000'7fff'ffff
instead of intended 0xffff'ffff'7fff'ffff and hence accidentally clears
the upper 32-bits of its value.
Fix it by changing `VM_MERGEABLE` constant to unsigned long, using the
BIT() macro.
Note: other VM_* flags are not affected: This only happens to the
VM_MERGEABLE flag, as the other VM_* flags are all constants of type int
and after ~ operation, they end up with leading 1 and are thus converted
to unsigned long with leading 1s.
Note 2:
After commit 31defc3b01d9 ("userfaultfd: remove (VM_)BUG_ON()s"), this is
no longer a kernel BUG, but a WARNING at the same place:
[ 45.595973] WARNING: CPU: 1 PID: 2474 at mm/userfaultfd.c:2067
but the root-cause (flag-drop) remains the same.
[akpm@linux-foundation.org: rust bindgen wasn't able to handle BIT(), from Miguel]
Severity
5.5 (Medium)
Assigner
References
8 references
Impacted products
2 products
| Vendor | Product | Version | |
|---|---|---|---|
| Linux | Linux |
Affected:
63c17fb8e5a46a16e10e82005748837fd11a2024 , < 850f1ea245bdc0ce6a3fd36bfb80d8cf9647cb71
(git)
Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < 788e5385d0ff69cdba1cabccb9dab8d9647b9239 (git) Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < b69f19244c2b6475c8a6eb72f0fb0d53509e48cd (git) Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < 41cb9fd904fe0c39d52e82dd84dc3c96b7aa9693 (git) Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < 92b82e232b8d8b116ac6e57aeae7a6033db92c60 (git) Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < ac50c6e0a8f91a02b681af81abb2362fbb67cc18 (git) Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < 76385629f45740b7888f8fcd83bde955b10f61fe (git) Affected: 63c17fb8e5a46a16e10e82005748837fd11a2024 , < f04aad36a07cc17b7a5d5b9a2d386ce6fae63e93 (git) |
|
| Linux | Linux |
Affected:
4.6
Unaffected: 0 , < 4.6 (semver) Unaffected: 5.4.302 , ≤ 5.4.* (semver) Unaffected: 5.10.247 , ≤ 5.10.* (semver) Unaffected: 5.15.197 , ≤ 5.15.* (semver) Unaffected: 6.1.158 , ≤ 6.1.* (semver) Unaffected: 6.6.114 , ≤ 6.6.* (semver) Unaffected: 6.12.55 , ≤ 6.12.* (semver) Unaffected: 6.17.3 , ≤ 6.17.* (semver) Unaffected: 6.18 , ≤ * (original_commit_for_fix) |
{
"containers": {
"cna": {
"affected": [
{
"defaultStatus": "unaffected",
"product": "Linux",
"programFiles": [
"include/linux/mm.h",
"rust/bindings/bindings_helper.h"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"lessThan": "850f1ea245bdc0ce6a3fd36bfb80d8cf9647cb71",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "788e5385d0ff69cdba1cabccb9dab8d9647b9239",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "b69f19244c2b6475c8a6eb72f0fb0d53509e48cd",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "41cb9fd904fe0c39d52e82dd84dc3c96b7aa9693",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "92b82e232b8d8b116ac6e57aeae7a6033db92c60",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "ac50c6e0a8f91a02b681af81abb2362fbb67cc18",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "76385629f45740b7888f8fcd83bde955b10f61fe",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
},
{
"lessThan": "f04aad36a07cc17b7a5d5b9a2d386ce6fae63e93",
"status": "affected",
"version": "63c17fb8e5a46a16e10e82005748837fd11a2024",
"versionType": "git"
}
]
},
{
"defaultStatus": "affected",
"product": "Linux",
"programFiles": [
"include/linux/mm.h",
"rust/bindings/bindings_helper.h"
],
"repo": "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git",
"vendor": "Linux",
"versions": [
{
"status": "affected",
"version": "4.6"
},
{
"lessThan": "4.6",
"status": "unaffected",
"version": "0",
"versionType": "semver"
},
{
"lessThanOrEqual": "5.4.*",
"status": "unaffected",
"version": "5.4.302",
"versionType": "semver"
},
{
"lessThanOrEqual": "5.10.*",
"status": "unaffected",
"version": "5.10.247",
"versionType": "semver"
},
{
"lessThanOrEqual": "5.15.*",
"status": "unaffected",
"version": "5.15.197",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.1.*",
"status": "unaffected",
"version": "6.1.158",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.6.*",
"status": "unaffected",
"version": "6.6.114",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.12.*",
"status": "unaffected",
"version": "6.12.55",
"versionType": "semver"
},
{
"lessThanOrEqual": "6.17.*",
"status": "unaffected",
"version": "6.17.3",
"versionType": "semver"
},
{
"lessThanOrEqual": "*",
"status": "unaffected",
"version": "6.18",
"versionType": "original_commit_for_fix"
}
]
}
],
"cpeApplicability": [
{
"nodes": [
{
"cpeMatch": [
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "5.4.302",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "5.10.247",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "5.15.197",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.1.158",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.6.114",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.12.55",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.17.3",
"versionStartIncluding": "4.6",
"vulnerable": true
},
{
"criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*",
"versionEndExcluding": "6.18",
"versionStartIncluding": "4.6",
"vulnerable": true
}
],
"negate": false,
"operator": "OR"
}
]
}
],
"descriptions": [
{
"lang": "en",
"value": "In the Linux kernel, the following vulnerability has been resolved:\n\nmm/ksm: fix flag-dropping behavior in ksm_madvise\n\nsyzkaller discovered the following crash: (kernel BUG)\n\n[ 44.607039] ------------[ cut here ]------------\n[ 44.607422] kernel BUG at mm/userfaultfd.c:2067!\n[ 44.608148] Oops: invalid opcode: 0000 [#1] SMP DEBUG_PAGEALLOC KASAN NOPTI\n[ 44.608814] CPU: 1 UID: 0 PID: 2475 Comm: reproducer Not tainted 6.16.0-rc6 #1 PREEMPT(none)\n[ 44.609635] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014\n[ 44.610695] RIP: 0010:userfaultfd_release_all+0x3a8/0x460\n\n\u003csnip other registers, drop unreliable trace\u003e\n\n[ 44.617726] Call Trace:\n[ 44.617926] \u003cTASK\u003e\n[ 44.619284] userfaultfd_release+0xef/0x1b0\n[ 44.620976] __fput+0x3f9/0xb60\n[ 44.621240] fput_close_sync+0x110/0x210\n[ 44.622222] __x64_sys_close+0x8f/0x120\n[ 44.622530] do_syscall_64+0x5b/0x2f0\n[ 44.622840] entry_SYSCALL_64_after_hwframe+0x76/0x7e\n[ 44.623244] RIP: 0033:0x7f365bb3f227\n\nKernel panics because it detects UFFD inconsistency during\nuserfaultfd_release_all(). Specifically, a VMA which has a valid pointer\nto vma-\u003evm_userfaultfd_ctx, but no UFFD flags in vma-\u003evm_flags.\n\nThe inconsistency is caused in ksm_madvise(): when user calls madvise()\nwith MADV_UNMEARGEABLE on a VMA that is registered for UFFD in MINOR mode,\nit accidentally clears all flags stored in the upper 32 bits of\nvma-\u003evm_flags.\n\nAssuming x86_64 kernel build, unsigned long is 64-bit and unsigned int and\nint are 32-bit wide. This setup causes the following mishap during the \u0026=\n~VM_MERGEABLE assignment.\n\nVM_MERGEABLE is a 32-bit constant of type unsigned int, 0x8000\u00270000. \nAfter ~ is applied, it becomes 0x7fff\u0027ffff unsigned int, which is then\npromoted to unsigned long before the \u0026 operation. This promotion fills\nupper 32 bits with leading 0s, as we\u0027re doing unsigned conversion (and\neven for a signed conversion, this wouldn\u0027t help as the leading bit is 0).\n\u0026 operation thus ends up AND-ing vm_flags with 0x0000\u00270000\u00277fff\u0027ffff\ninstead of intended 0xffff\u0027ffff\u00277fff\u0027ffff and hence accidentally clears\nthe upper 32-bits of its value.\n\nFix it by changing `VM_MERGEABLE` constant to unsigned long, using the\nBIT() macro.\n\nNote: other VM_* flags are not affected: This only happens to the\nVM_MERGEABLE flag, as the other VM_* flags are all constants of type int\nand after ~ operation, they end up with leading 1 and are thus converted\nto unsigned long with leading 1s.\n\nNote 2:\nAfter commit 31defc3b01d9 (\"userfaultfd: remove (VM_)BUG_ON()s\"), this is\nno longer a kernel BUG, but a WARNING at the same place:\n\n[ 45.595973] WARNING: CPU: 1 PID: 2474 at mm/userfaultfd.c:2067\n\nbut the root-cause (flag-drop) remains the same.\n\n[akpm@linux-foundation.org: rust bindgen wasn\u0027t able to handle BIT(), from Miguel]"
}
],
"providerMetadata": {
"dateUpdated": "2026-05-11T21:41:19.151Z",
"orgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"shortName": "Linux"
},
"references": [
{
"url": "https://git.kernel.org/stable/c/850f1ea245bdc0ce6a3fd36bfb80d8cf9647cb71"
},
{
"url": "https://git.kernel.org/stable/c/788e5385d0ff69cdba1cabccb9dab8d9647b9239"
},
{
"url": "https://git.kernel.org/stable/c/b69f19244c2b6475c8a6eb72f0fb0d53509e48cd"
},
{
"url": "https://git.kernel.org/stable/c/41cb9fd904fe0c39d52e82dd84dc3c96b7aa9693"
},
{
"url": "https://git.kernel.org/stable/c/92b82e232b8d8b116ac6e57aeae7a6033db92c60"
},
{
"url": "https://git.kernel.org/stable/c/ac50c6e0a8f91a02b681af81abb2362fbb67cc18"
},
{
"url": "https://git.kernel.org/stable/c/76385629f45740b7888f8fcd83bde955b10f61fe"
},
{
"url": "https://git.kernel.org/stable/c/f04aad36a07cc17b7a5d5b9a2d386ce6fae63e93"
}
],
"title": "mm/ksm: fix flag-dropping behavior in ksm_madvise",
"x_generator": {
"engine": "bippy-1.2.0"
}
}
},
"cveMetadata": {
"assignerOrgId": "416baaa9-dc9f-4396-8d5f-8c081fb06d67",
"assignerShortName": "Linux",
"cveId": "CVE-2025-40040",
"datePublished": "2025-10-28T11:48:20.395Z",
"dateReserved": "2025-04-16T07:20:57.154Z",
"dateUpdated": "2026-05-11T21:41:19.151Z",
"state": "PUBLISHED"
},
"dataType": "CVE_RECORD",
"dataVersion": "5.2",
"vulnerability-lookup:meta": {
"epss": {
"cve": "CVE-2025-40040",
"date": "2026-06-18",
"epss": "0.00316",
"percentile": "0.23117"
},
"nvd": "{\"cve\":{\"id\":\"CVE-2025-40040\",\"sourceIdentifier\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"published\":\"2025-10-28T12:15:37.967\",\"lastModified\":\"2026-02-26T15:51:08.683\",\"vulnStatus\":\"Analyzed\",\"cveTags\":[],\"descriptions\":[{\"lang\":\"en\",\"value\":\"In the Linux kernel, the following vulnerability has been resolved:\\n\\nmm/ksm: fix flag-dropping behavior in ksm_madvise\\n\\nsyzkaller discovered the following crash: (kernel BUG)\\n\\n[ 44.607039] ------------[ cut here ]------------\\n[ 44.607422] kernel BUG at mm/userfaultfd.c:2067!\\n[ 44.608148] Oops: invalid opcode: 0000 [#1] SMP DEBUG_PAGEALLOC KASAN NOPTI\\n[ 44.608814] CPU: 1 UID: 0 PID: 2475 Comm: reproducer Not tainted 6.16.0-rc6 #1 PREEMPT(none)\\n[ 44.609635] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.16.3-0-ga6ed6b701f0a-prebuilt.qemu.org 04/01/2014\\n[ 44.610695] RIP: 0010:userfaultfd_release_all+0x3a8/0x460\\n\\n\u003csnip other registers, drop unreliable trace\u003e\\n\\n[ 44.617726] Call Trace:\\n[ 44.617926] \u003cTASK\u003e\\n[ 44.619284] userfaultfd_release+0xef/0x1b0\\n[ 44.620976] __fput+0x3f9/0xb60\\n[ 44.621240] fput_close_sync+0x110/0x210\\n[ 44.622222] __x64_sys_close+0x8f/0x120\\n[ 44.622530] do_syscall_64+0x5b/0x2f0\\n[ 44.622840] entry_SYSCALL_64_after_hwframe+0x76/0x7e\\n[ 44.623244] RIP: 0033:0x7f365bb3f227\\n\\nKernel panics because it detects UFFD inconsistency during\\nuserfaultfd_release_all(). Specifically, a VMA which has a valid pointer\\nto vma-\u003evm_userfaultfd_ctx, but no UFFD flags in vma-\u003evm_flags.\\n\\nThe inconsistency is caused in ksm_madvise(): when user calls madvise()\\nwith MADV_UNMEARGEABLE on a VMA that is registered for UFFD in MINOR mode,\\nit accidentally clears all flags stored in the upper 32 bits of\\nvma-\u003evm_flags.\\n\\nAssuming x86_64 kernel build, unsigned long is 64-bit and unsigned int and\\nint are 32-bit wide. This setup causes the following mishap during the \u0026=\\n~VM_MERGEABLE assignment.\\n\\nVM_MERGEABLE is a 32-bit constant of type unsigned int, 0x8000\u00270000. \\nAfter ~ is applied, it becomes 0x7fff\u0027ffff unsigned int, which is then\\npromoted to unsigned long before the \u0026 operation. This promotion fills\\nupper 32 bits with leading 0s, as we\u0027re doing unsigned conversion (and\\neven for a signed conversion, this wouldn\u0027t help as the leading bit is 0).\\n\u0026 operation thus ends up AND-ing vm_flags with 0x0000\u00270000\u00277fff\u0027ffff\\ninstead of intended 0xffff\u0027ffff\u00277fff\u0027ffff and hence accidentally clears\\nthe upper 32-bits of its value.\\n\\nFix it by changing `VM_MERGEABLE` constant to unsigned long, using the\\nBIT() macro.\\n\\nNote: other VM_* flags are not affected: This only happens to the\\nVM_MERGEABLE flag, as the other VM_* flags are all constants of type int\\nand after ~ operation, they end up with leading 1 and are thus converted\\nto unsigned long with leading 1s.\\n\\nNote 2:\\nAfter commit 31defc3b01d9 (\\\"userfaultfd: remove (VM_)BUG_ON()s\\\"), this is\\nno longer a kernel BUG, but a WARNING at the same place:\\n\\n[ 45.595973] WARNING: CPU: 1 PID: 2474 at mm/userfaultfd.c:2067\\n\\nbut the root-cause (flag-drop) remains the same.\\n\\n[akpm@linux-foundation.org: rust bindgen wasn\u0027t able to handle BIT(), from Miguel]\"}],\"metrics\":{\"cvssMetricV31\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"cvssData\":{\"version\":\"3.1\",\"vectorString\":\"CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H\",\"baseScore\":5.5,\"baseSeverity\":\"MEDIUM\",\"attackVector\":\"LOCAL\",\"attackComplexity\":\"LOW\",\"privilegesRequired\":\"LOW\",\"userInteraction\":\"NONE\",\"scope\":\"UNCHANGED\",\"confidentialityImpact\":\"NONE\",\"integrityImpact\":\"NONE\",\"availabilityImpact\":\"HIGH\"},\"exploitabilityScore\":1.8,\"impactScore\":3.6}]},\"weaknesses\":[{\"source\":\"nvd@nist.gov\",\"type\":\"Primary\",\"description\":[{\"lang\":\"en\",\"value\":\"NVD-CWE-noinfo\"}]}],\"configurations\":[{\"nodes\":[{\"operator\":\"OR\",\"negate\":false,\"cpeMatch\":[{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"4.6\",\"versionEndExcluding\":\"5.4.302\",\"matchCriteriaId\":\"92D7EAC7-85AD-4A59-982E-28696A9CB495\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.5\",\"versionEndExcluding\":\"5.10.247\",\"matchCriteriaId\":\"FE19816A-13B7-4862-B963-A4DF36CA766A\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.11\",\"versionEndExcluding\":\"5.15.197\",\"matchCriteriaId\":\"06E8A34D-C8D8-461A-B8F8-0E420CC5E116\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"5.16\",\"versionEndExcluding\":\"6.1.158\",\"matchCriteriaId\":\"77B0D8DC-487F-497A-8C89-E7C8F6427586\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.2\",\"versionEndExcluding\":\"6.6.114\",\"matchCriteriaId\":\"4EB737C8-40A2-4187-8371-FFB0D2615B8B\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.7\",\"versionEndExcluding\":\"6.12.55\",\"matchCriteriaId\":\"516AE9B7-F899-4BF2-A81C-BAB0A37671FA\"},{\"vulnerable\":true,\"criteria\":\"cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*\",\"versionStartIncluding\":\"6.13\",\"versionEndExcluding\":\"6.17.3\",\"matchCriteriaId\":\"F55A160F-1578-4C10-ABCB-F90B7E146ED8\"}]}]}],\"references\":[{\"url\":\"https://git.kernel.org/stable/c/41cb9fd904fe0c39d52e82dd84dc3c96b7aa9693\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/76385629f45740b7888f8fcd83bde955b10f61fe\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/788e5385d0ff69cdba1cabccb9dab8d9647b9239\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/850f1ea245bdc0ce6a3fd36bfb80d8cf9647cb71\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/92b82e232b8d8b116ac6e57aeae7a6033db92c60\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/ac50c6e0a8f91a02b681af81abb2362fbb67cc18\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/b69f19244c2b6475c8a6eb72f0fb0d53509e48cd\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]},{\"url\":\"https://git.kernel.org/stable/c/f04aad36a07cc17b7a5d5b9a2d386ce6fae63e93\",\"source\":\"416baaa9-dc9f-4396-8d5f-8c081fb06d67\",\"tags\":[\"Patch\"]}]}}"
}
}
WID-SEC-W-2026-0349
Vulnerability from csaf_certbund - Published: 2026-02-09 23:00 - Updated: 2026-03-16 23:00Summary
Dell Avamar und NetWorker: Mehrere Schwachstellen
Severity
Hoch
Notes
Das BSI ist als Anbieter für die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch dafür verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgfältig im Einzelfall zu prüfen.
Produktbeschreibung: Avamar ist eine Backup und Recovery Lösung von Dell.
Dell NetWorker stellt zentralisiert Backup- und Recovery-Dienste bereit.
Angriff: Ein Angreifer kann mehrere Schwachstellen in Dell Avamar und Dell NetWorker ausnutzen, um Angriffe zu starten, die die Integrität, Vertraulichkeit und Verfügbarkeit von Systemen beeinträchtigen.
Betroffene Betriebssysteme: - Sonstiges
- UNIX
- Windows
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
Affected products
Known affected
21 products
| Product | Identifier | Version | Remediation |
|---|---|---|---|
|
Dell Avamar Virtual Edition <19.10
Dell / Avamar
|
Virtual Edition <19.10 | ||
|
Dell NetWorker Virtual Edition <19.10
Dell / NetWorker
|
Virtual Edition <19.10 | ||
|
Dell Avamar Virtual Edition <19.10-SP1
Dell / Avamar
|
Virtual Edition <19.10-SP1 | ||
|
Dell NetWorker Virtual Edition <19.9
Dell / NetWorker
|
Virtual Edition <19.9 | ||
|
Dell Avamar NDMP Accelerator <19.12
Dell / Avamar
|
NDMP Accelerator <19.12 | ||
|
Dell NetWorker vProxy <19.13.0.3
Dell / NetWorker
|
vProxy <19.13.0.3 | ||
|
Dell Avamar Virtual Edition <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Virtual Edition <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.11
Dell / NetWorker
|
Virtual Edition <19.11 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10-SP1
Dell / Avamar
|
VMware Image Backup Proxy <19.10-SP1 | ||
|
Dell Avamar Virtual Edition <19.12,
Dell / Avamar
|
Virtual Edition <19.12, | ||
|
Dell Avamar VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
VMware Image Backup Proxy <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.9 OS Security Rollup 2025R4 | ||
|
Dell Avamar VMware Image Backup Proxy <19.10
Dell / Avamar
|
VMware Image Backup Proxy <19.10 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10
Dell / Avamar
|
NDMP Accelerator <19.10 | ||
|
Dell Avamar NDMP Accelerator <19.10-SP1
Dell / Avamar
|
NDMP Accelerator <19.10-SP1 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.10-SP1
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.10-SP1 | ||
|
Dell Avamar VMware Image Backup Proxy <19.12
Dell / Avamar
|
VMware Image Backup Proxy <19.12 | ||
|
Dell Avamar Data Store Gen4T / Gen5A <19.12
Dell / Avamar
|
Data Store Gen4T / Gen5A <19.12 | ||
|
Dell Avamar NDMP Accelerator <19.9 OS Security Rollup 2025R4
Dell / Avamar
|
NDMP Accelerator <19.9 OS Security Rollup 2025R4 | ||
|
Dell NetWorker Virtual Edition <19.12 OS Security Rollup 2025R4
Dell / NetWorker
|
Virtual Edition <19.12 OS Security Rollup 2025R4 |
References
4 references
{
"document": {
"aggregate_severity": {
"text": "hoch"
},
"category": "csaf_base",
"csaf_version": "2.0",
"distribution": {
"tlp": {
"label": "WHITE",
"url": "https://www.first.org/tlp/"
}
},
"lang": "de-DE",
"notes": [
{
"category": "legal_disclaimer",
"text": "Das BSI ist als Anbieter f\u00fcr die eigenen, zur Nutzung bereitgestellten Inhalte nach den allgemeinen Gesetzen verantwortlich. Nutzerinnen und Nutzer sind jedoch daf\u00fcr verantwortlich, die Verwendung und/oder die Umsetzung der mit den Inhalten bereitgestellten Informationen sorgf\u00e4ltig im Einzelfall zu pr\u00fcfen."
},
{
"category": "description",
"text": "Avamar ist eine Backup und Recovery L\u00f6sung von Dell.\r\nDell NetWorker stellt zentralisiert Backup- und Recovery-Dienste bereit.",
"title": "Produktbeschreibung"
},
{
"category": "summary",
"text": "Ein Angreifer kann mehrere Schwachstellen in Dell Avamar und Dell NetWorker ausnutzen, um Angriffe zu starten, die die Integrit\u00e4t, Vertraulichkeit und Verf\u00fcgbarkeit von Systemen beeintr\u00e4chtigen.",
"title": "Angriff"
},
{
"category": "general",
"text": "- Sonstiges\n- UNIX\n- Windows",
"title": "Betroffene Betriebssysteme"
}
],
"publisher": {
"category": "other",
"contact_details": "csaf-provider@cert-bund.de",
"name": "Bundesamt f\u00fcr Sicherheit in der Informationstechnik",
"namespace": "https://www.bsi.bund.de"
},
"references": [
{
"category": "self",
"summary": "WID-SEC-W-2026-0349 - CSAF Version",
"url": "https://wid.cert-bund.de/.well-known/csaf/white/2026/wid-sec-w-2026-0349.json"
},
{
"category": "self",
"summary": "WID-SEC-2026-0349 - Portal Version",
"url": "https://wid.cert-bund.de/portal/wid/securityadvisory?name=WID-SEC-2026-0349"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2026-072 vom 2026-02-09",
"url": "https://www.dell.com/support/kbdoc/de-de/000425769/dsa-2026-072-security-update-for-dell-avamar-dell-networker-virtual-edition-nve-and-dell-powerprotect-dp-series-appliance-dell-integrated-data-protection-appliance-idpa-multiple-third-party-vulnerabilities"
},
{
"category": "external",
"summary": "Dell Security Advisory DSA-2026-114 vom 2026-03-17",
"url": "https://www.dell.com/support/kbdoc/000436206"
}
],
"source_lang": "en-US",
"title": "Dell Avamar und NetWorker: Mehrere Schwachstellen",
"tracking": {
"current_release_date": "2026-03-16T23:00:00.000+00:00",
"generator": {
"date": "2026-03-17T09:58:04.322+00:00",
"engine": {
"name": "BSI-WID",
"version": "1.5.0"
}
},
"id": "WID-SEC-W-2026-0349",
"initial_release_date": "2026-02-09T23:00:00.000+00:00",
"revision_history": [
{
"date": "2026-02-09T23:00:00.000+00:00",
"number": "1",
"summary": "Initiale Fassung"
},
{
"date": "2026-03-16T23:00:00.000+00:00",
"number": "2",
"summary": "Neue Updates von Dell aufgenommen"
}
],
"status": "final",
"version": "2"
}
},
"product_tree": {
"branches": [
{
"branches": [
{
"branches": [
{
"category": "product_version_range",
"name": "Data Store Gen4T / Gen5A \u003c19.12",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A \u003c19.12",
"product_id": "T050647"
}
},
{
"category": "product_version",
"name": "Data Store Gen4T / Gen5A 19.12",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A 19.12",
"product_id": "T050647-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:data_store_gen4t__gen5a__19.12"
}
}
},
{
"category": "product_version_range",
"name": "Data Store Gen4T / Gen5A \u003c19.10-SP1",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A \u003c19.10-SP1",
"product_id": "T050648"
}
},
{
"category": "product_version",
"name": "Data Store Gen4T / Gen5A 19.10-SP1",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A 19.10-SP1",
"product_id": "T050648-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:data_store_gen4t__gen5a__19.10-sp1"
}
}
},
{
"category": "product_version_range",
"name": "Data Store Gen4T / Gen5A \u003c19.10",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A \u003c19.10",
"product_id": "T050649"
}
},
{
"category": "product_version",
"name": "Data Store Gen4T / Gen5A 19.10",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A 19.10",
"product_id": "T050649-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:data_store_gen4t__gen5a__19.10"
}
}
},
{
"category": "product_version_range",
"name": "Data Store Gen4T / Gen5A \u003c19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A \u003c19.9 OS Security Rollup 2025R4",
"product_id": "T050650"
}
},
{
"category": "product_version",
"name": "Data Store Gen4T / Gen5A 19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar Data Store Gen4T / Gen5A 19.9 OS Security Rollup 2025R4",
"product_id": "T050650-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:data_store_gen4t__gen5a__19.9_os_security_rollup_2025r4"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.12,",
"product": {
"name": "Dell Avamar Virtual Edition \u003c19.12,",
"product_id": "T050651"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.12,",
"product": {
"name": "Dell Avamar Virtual Edition 19.12,",
"product_id": "T050651-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:virtual_edition__19.12"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.10-SP1",
"product": {
"name": "Dell Avamar Virtual Edition \u003c19.10-SP1",
"product_id": "T050652"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.10-SP1",
"product": {
"name": "Dell Avamar Virtual Edition 19.10-SP1",
"product_id": "T050652-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:virtual_edition__19.10-sp1"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.10",
"product": {
"name": "Dell Avamar Virtual Edition \u003c19.10",
"product_id": "T050653"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.10",
"product": {
"name": "Dell Avamar Virtual Edition 19.10",
"product_id": "T050653-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:virtual_edition__19.10"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar Virtual Edition \u003c19.9 OS Security Rollup 2025R4",
"product_id": "T050654"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar Virtual Edition 19.9 OS Security Rollup 2025R4",
"product_id": "T050654-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:virtual_edition__19.9_os_security_rollup_2025r4"
}
}
},
{
"category": "product_version_range",
"name": "NDMP Accelerator \u003c19.12",
"product": {
"name": "Dell Avamar NDMP Accelerator \u003c19.12",
"product_id": "T050655"
}
},
{
"category": "product_version",
"name": "NDMP Accelerator 19.12",
"product": {
"name": "Dell Avamar NDMP Accelerator 19.12",
"product_id": "T050655-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:ndmp_accelerator__19.12"
}
}
},
{
"category": "product_version_range",
"name": "NDMP Accelerator \u003c19.10-SP1",
"product": {
"name": "Dell Avamar NDMP Accelerator \u003c19.10-SP1",
"product_id": "T050656"
}
},
{
"category": "product_version",
"name": "NDMP Accelerator 19.10-SP1",
"product": {
"name": "Dell Avamar NDMP Accelerator 19.10-SP1",
"product_id": "T050656-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:ndmp_accelerator__19.10-sp1"
}
}
},
{
"category": "product_version_range",
"name": "NDMP Accelerator \u003c19.10",
"product": {
"name": "Dell Avamar NDMP Accelerator \u003c19.10",
"product_id": "T050657"
}
},
{
"category": "product_version",
"name": "NDMP Accelerator 19.10",
"product": {
"name": "Dell Avamar NDMP Accelerator 19.10",
"product_id": "T050657-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:ndmp_accelerator__19.10"
}
}
},
{
"category": "product_version_range",
"name": "NDMP Accelerator \u003c19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar NDMP Accelerator \u003c19.9 OS Security Rollup 2025R4",
"product_id": "T050658"
}
},
{
"category": "product_version",
"name": "NDMP Accelerator 19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar NDMP Accelerator 19.9 OS Security Rollup 2025R4",
"product_id": "T050658-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:ndmp_accelerator__19.9_os_security_rollup_2025r4"
}
}
},
{
"category": "product_version_range",
"name": "VMware Image Backup Proxy \u003c19.12",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy \u003c19.12",
"product_id": "T050659"
}
},
{
"category": "product_version",
"name": "VMware Image Backup Proxy 19.12",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy 19.12",
"product_id": "T050659-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:vmware_image_backup_proxy__19.12"
}
}
},
{
"category": "product_version_range",
"name": "VMware Image Backup Proxy \u003c19.10-SP1",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy \u003c19.10-SP1",
"product_id": "T050660"
}
},
{
"category": "product_version",
"name": "VMware Image Backup Proxy 19.10-SP1",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy 19.10-SP1",
"product_id": "T050660-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:vmware_image_backup_proxy__19.10-sp1"
}
}
},
{
"category": "product_version_range",
"name": "VMware Image Backup Proxy \u003c19.10",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy \u003c19.10",
"product_id": "T050661"
}
},
{
"category": "product_version",
"name": "VMware Image Backup Proxy 19.10",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy 19.10",
"product_id": "T050661-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:vmware_image_backup_proxy__19.10"
}
}
},
{
"category": "product_version_range",
"name": "VMware Image Backup Proxy \u003c19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy \u003c19.9 OS Security Rollup 2025R4",
"product_id": "T050662"
}
},
{
"category": "product_version",
"name": "VMware Image Backup Proxy 19.9 OS Security Rollup 2025R4",
"product": {
"name": "Dell Avamar VMware Image Backup Proxy 19.9 OS Security Rollup 2025R4",
"product_id": "T050662-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:avamar:vmware_image_backup_proxy___19.9_os_security_rollup_2025r4"
}
}
}
],
"category": "product_name",
"name": "Avamar"
},
{
"branches": [
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.9",
"product": {
"name": "Dell NetWorker Virtual Edition \u003c19.9",
"product_id": "T050663"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.9",
"product": {
"name": "Dell NetWorker Virtual Edition 19.9",
"product_id": "T050663-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:virtual_edition__19.9"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.10",
"product": {
"name": "Dell NetWorker Virtual Edition \u003c19.10",
"product_id": "T050664"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.10",
"product": {
"name": "Dell NetWorker Virtual Edition 19.10",
"product_id": "T050664-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:virtual_edition__19.10"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.11",
"product": {
"name": "Dell NetWorker Virtual Edition \u003c19.11",
"product_id": "T050665"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.11",
"product": {
"name": "Dell NetWorker Virtual Edition 19.11",
"product_id": "T050665-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:virtual_edition__19.11"
}
}
},
{
"category": "product_version_range",
"name": "Virtual Edition \u003c19.12 OS Security Rollup 2025R4",
"product": {
"name": "Dell NetWorker Virtual Edition \u003c19.12 OS Security Rollup 2025R4",
"product_id": "T050669"
}
},
{
"category": "product_version",
"name": "Virtual Edition 19.12 OS Security Rollup 2025R4",
"product": {
"name": "Dell NetWorker Virtual Edition 19.12 OS Security Rollup 2025R4",
"product_id": "T050669-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:virtual_edition__19.12_os_security_rollup_2025r4"
}
}
},
{
"category": "product_version_range",
"name": "vProxy \u003c19.13.0.3",
"product": {
"name": "Dell NetWorker vProxy \u003c19.13.0.3",
"product_id": "T051763"
}
},
{
"category": "product_version",
"name": "vProxy 19.13.0.3",
"product": {
"name": "Dell NetWorker vProxy 19.13.0.3",
"product_id": "T051763-fixed",
"product_identification_helper": {
"cpe": "cpe:/a:dell:networker:vproxy__19.13.0.3"
}
}
}
],
"category": "product_name",
"name": "NetWorker"
}
],
"category": "vendor",
"name": "Dell"
}
]
},
"vulnerabilities": [
{
"cve": "CVE-2021-4460",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2021-4460"
},
{
"cve": "CVE-2022-48631",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-48631"
},
{
"cve": "CVE-2022-50233",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50233"
},
{
"cve": "CVE-2022-50235",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50235"
},
{
"cve": "CVE-2022-50236",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50236"
},
{
"cve": "CVE-2022-50242",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50242"
},
{
"cve": "CVE-2022-50244",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50244"
},
{
"cve": "CVE-2022-50249",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50249"
},
{
"cve": "CVE-2022-50252",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50252"
},
{
"cve": "CVE-2022-50253",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50253"
},
{
"cve": "CVE-2022-50257",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50257"
},
{
"cve": "CVE-2022-50258",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50258"
},
{
"cve": "CVE-2022-50265",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50265"
},
{
"cve": "CVE-2022-50266",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50266"
},
{
"cve": "CVE-2022-50271",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50271"
},
{
"cve": "CVE-2022-50272",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50272"
},
{
"cve": "CVE-2022-50278",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50278"
},
{
"cve": "CVE-2022-50280",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50280"
},
{
"cve": "CVE-2022-50282",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50282"
},
{
"cve": "CVE-2022-50285",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50285"
},
{
"cve": "CVE-2022-50288",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50288"
},
{
"cve": "CVE-2022-50289",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50289"
},
{
"cve": "CVE-2022-50291",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50291"
},
{
"cve": "CVE-2022-50293",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50293"
},
{
"cve": "CVE-2022-50294",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50294"
},
{
"cve": "CVE-2022-50297",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50297"
},
{
"cve": "CVE-2022-50299",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50299"
},
{
"cve": "CVE-2022-50304",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50304"
},
{
"cve": "CVE-2022-50311",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50311"
},
{
"cve": "CVE-2022-50312",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50312"
},
{
"cve": "CVE-2022-50321",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50321"
},
{
"cve": "CVE-2022-50327",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50327"
},
{
"cve": "CVE-2022-50330",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50330"
},
{
"cve": "CVE-2022-50344",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50344"
},
{
"cve": "CVE-2022-50346",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50346"
},
{
"cve": "CVE-2022-50349",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50349"
},
{
"cve": "CVE-2022-50350",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50350"
},
{
"cve": "CVE-2022-50351",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50351"
},
{
"cve": "CVE-2022-50352",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50352"
},
{
"cve": "CVE-2022-50356",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50356"
},
{
"cve": "CVE-2022-50359",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50359"
},
{
"cve": "CVE-2022-50364",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50364"
},
{
"cve": "CVE-2022-50365",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50365"
},
{
"cve": "CVE-2022-50367",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50367"
},
{
"cve": "CVE-2022-50368",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50368"
},
{
"cve": "CVE-2022-50372",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50372"
},
{
"cve": "CVE-2022-50375",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50375"
},
{
"cve": "CVE-2022-50381",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50381"
},
{
"cve": "CVE-2022-50385",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50385"
},
{
"cve": "CVE-2022-50386",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50386"
},
{
"cve": "CVE-2022-50389",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50389"
},
{
"cve": "CVE-2022-50394",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50394"
},
{
"cve": "CVE-2022-50395",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50395"
},
{
"cve": "CVE-2022-50396",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50396"
},
{
"cve": "CVE-2022-50401",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50401"
},
{
"cve": "CVE-2022-50402",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50402"
},
{
"cve": "CVE-2022-50405",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50405"
},
{
"cve": "CVE-2022-50406",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50406"
},
{
"cve": "CVE-2022-50408",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50408"
},
{
"cve": "CVE-2022-50409",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50409"
},
{
"cve": "CVE-2022-50410",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50410"
},
{
"cve": "CVE-2022-50411",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50411"
},
{
"cve": "CVE-2022-50414",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50414"
},
{
"cve": "CVE-2022-50419",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50419"
},
{
"cve": "CVE-2022-50422",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50422"
},
{
"cve": "CVE-2022-50423",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50423"
},
{
"cve": "CVE-2022-50432",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50432"
},
{
"cve": "CVE-2022-50434",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50434"
},
{
"cve": "CVE-2022-50435",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50435"
},
{
"cve": "CVE-2022-50440",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50440"
},
{
"cve": "CVE-2022-50443",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50443"
},
{
"cve": "CVE-2022-50456",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50456"
},
{
"cve": "CVE-2022-50459",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50459"
},
{
"cve": "CVE-2022-50460",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50460"
},
{
"cve": "CVE-2022-50470",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50470"
},
{
"cve": "CVE-2022-50481",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50481"
},
{
"cve": "CVE-2022-50485",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50485"
},
{
"cve": "CVE-2022-50493",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50493"
},
{
"cve": "CVE-2022-50494",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50494"
},
{
"cve": "CVE-2022-50496",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50496"
},
{
"cve": "CVE-2022-50501",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50501"
},
{
"cve": "CVE-2022-50504",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50504"
},
{
"cve": "CVE-2022-50505",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50505"
},
{
"cve": "CVE-2022-50509",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50509"
},
{
"cve": "CVE-2022-50516",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50516"
},
{
"cve": "CVE-2022-50532",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50532"
},
{
"cve": "CVE-2022-50534",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50534"
},
{
"cve": "CVE-2022-50536",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50536"
},
{
"cve": "CVE-2022-50537",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50537"
},
{
"cve": "CVE-2022-50542",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50542"
},
{
"cve": "CVE-2022-50544",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50544"
},
{
"cve": "CVE-2022-50545",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50545"
},
{
"cve": "CVE-2022-50549",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50549"
},
{
"cve": "CVE-2022-50551",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50551"
},
{
"cve": "CVE-2022-50563",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50563"
},
{
"cve": "CVE-2022-50564",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50564"
},
{
"cve": "CVE-2022-50569",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50569"
},
{
"cve": "CVE-2022-50571",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50571"
},
{
"cve": "CVE-2022-50578",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50578"
},
{
"cve": "CVE-2022-50581",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2022-50581"
},
{
"cve": "CVE-2023-53147",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53147"
},
{
"cve": "CVE-2023-53148",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53148"
},
{
"cve": "CVE-2023-53149",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53149"
},
{
"cve": "CVE-2023-53150",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53150"
},
{
"cve": "CVE-2023-53151",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53151"
},
{
"cve": "CVE-2023-53153",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53153"
},
{
"cve": "CVE-2023-53165",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53165"
},
{
"cve": "CVE-2023-53174",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53174"
},
{
"cve": "CVE-2023-53176",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53176"
},
{
"cve": "CVE-2023-53178",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53178"
},
{
"cve": "CVE-2023-53183",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53183"
},
{
"cve": "CVE-2023-53185",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53185"
},
{
"cve": "CVE-2023-53188",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53188"
},
{
"cve": "CVE-2023-53189",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53189"
},
{
"cve": "CVE-2023-53191",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53191"
},
{
"cve": "CVE-2023-53199",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53199"
},
{
"cve": "CVE-2023-53201",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53201"
},
{
"cve": "CVE-2023-53204",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53204"
},
{
"cve": "CVE-2023-53213",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53213"
},
{
"cve": "CVE-2023-53215",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53215"
},
{
"cve": "CVE-2023-53226",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53226"
},
{
"cve": "CVE-2023-53229",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53229"
},
{
"cve": "CVE-2023-53245",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53245"
},
{
"cve": "CVE-2023-53246",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53246"
},
{
"cve": "CVE-2023-53248",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53248"
},
{
"cve": "CVE-2023-53250",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53250"
},
{
"cve": "CVE-2023-53254",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53254"
},
{
"cve": "CVE-2023-53265",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53265"
},
{
"cve": "CVE-2023-53270",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53270"
},
{
"cve": "CVE-2023-53271",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53271"
},
{
"cve": "CVE-2023-53272",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53272"
},
{
"cve": "CVE-2023-53277",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53277"
},
{
"cve": "CVE-2023-53280",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53280"
},
{
"cve": "CVE-2023-53282",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53282"
},
{
"cve": "CVE-2023-53288",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53288"
},
{
"cve": "CVE-2023-53289",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53289"
},
{
"cve": "CVE-2023-53292",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53292"
},
{
"cve": "CVE-2023-53295",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53295"
},
{
"cve": "CVE-2023-53298",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53298"
},
{
"cve": "CVE-2023-53299",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53299"
},
{
"cve": "CVE-2023-53302",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53302"
},
{
"cve": "CVE-2023-53305",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53305"
},
{
"cve": "CVE-2023-53307",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53307"
},
{
"cve": "CVE-2023-53308",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53308"
},
{
"cve": "CVE-2023-53309",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53309"
},
{
"cve": "CVE-2023-53313",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53313"
},
{
"cve": "CVE-2023-53317",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53317"
},
{
"cve": "CVE-2023-53321",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53321"
},
{
"cve": "CVE-2023-53322",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53322"
},
{
"cve": "CVE-2023-53326",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53326"
},
{
"cve": "CVE-2023-53331",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53331"
},
{
"cve": "CVE-2023-53332",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53332"
},
{
"cve": "CVE-2023-53333",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53333"
},
{
"cve": "CVE-2023-53335",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53335"
},
{
"cve": "CVE-2023-53338",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53338"
},
{
"cve": "CVE-2023-53339",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53339"
},
{
"cve": "CVE-2023-53344",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53344"
},
{
"cve": "CVE-2023-53348",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53348"
},
{
"cve": "CVE-2023-53357",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53357"
},
{
"cve": "CVE-2023-53365",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53365"
},
{
"cve": "CVE-2023-53368",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53368"
},
{
"cve": "CVE-2023-53369",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53369"
},
{
"cve": "CVE-2023-53373",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53373"
},
{
"cve": "CVE-2023-53380",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53380"
},
{
"cve": "CVE-2023-53384",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53384"
},
{
"cve": "CVE-2023-53393",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53393"
},
{
"cve": "CVE-2023-53395",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53395"
},
{
"cve": "CVE-2023-53397",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53397"
},
{
"cve": "CVE-2023-53400",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53400"
},
{
"cve": "CVE-2023-53427",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53427"
},
{
"cve": "CVE-2023-53431",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53431"
},
{
"cve": "CVE-2023-53433",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53433"
},
{
"cve": "CVE-2023-53436",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53436"
},
{
"cve": "CVE-2023-53438",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53438"
},
{
"cve": "CVE-2023-53441",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53441"
},
{
"cve": "CVE-2023-53446",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53446"
},
{
"cve": "CVE-2023-53451",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53451"
},
{
"cve": "CVE-2023-53456",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53456"
},
{
"cve": "CVE-2023-53476",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53476"
},
{
"cve": "CVE-2023-53477",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53477"
},
{
"cve": "CVE-2023-53484",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53484"
},
{
"cve": "CVE-2023-53499",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53499"
},
{
"cve": "CVE-2023-53506",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53506"
},
{
"cve": "CVE-2023-53512",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53512"
},
{
"cve": "CVE-2023-53517",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53517"
},
{
"cve": "CVE-2023-53519",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53519"
},
{
"cve": "CVE-2023-53521",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53521"
},
{
"cve": "CVE-2023-53526",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53526"
},
{
"cve": "CVE-2023-53530",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53530"
},
{
"cve": "CVE-2023-53533",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53533"
},
{
"cve": "CVE-2023-53540",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53540"
},
{
"cve": "CVE-2023-53542",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53542"
},
{
"cve": "CVE-2023-53548",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53548"
},
{
"cve": "CVE-2023-53556",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53556"
},
{
"cve": "CVE-2023-53559",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53559"
},
{
"cve": "CVE-2023-53564",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53564"
},
{
"cve": "CVE-2023-53568",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53568"
},
{
"cve": "CVE-2023-53582",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53582"
},
{
"cve": "CVE-2023-53587",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53587"
},
{
"cve": "CVE-2023-53589",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53589"
},
{
"cve": "CVE-2023-53593",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53593"
},
{
"cve": "CVE-2023-53594",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53594"
},
{
"cve": "CVE-2023-53596",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53596"
},
{
"cve": "CVE-2023-53597",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53597"
},
{
"cve": "CVE-2023-53603",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53603"
},
{
"cve": "CVE-2023-53604",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53604"
},
{
"cve": "CVE-2023-53611",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53611"
},
{
"cve": "CVE-2023-53615",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53615"
},
{
"cve": "CVE-2023-53619",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53619"
},
{
"cve": "CVE-2023-53620",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53620"
},
{
"cve": "CVE-2023-53622",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53622"
},
{
"cve": "CVE-2023-53624",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53624"
},
{
"cve": "CVE-2023-53635",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53635"
},
{
"cve": "CVE-2023-53641",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53641"
},
{
"cve": "CVE-2023-53644",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53644"
},
{
"cve": "CVE-2023-53647",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53647"
},
{
"cve": "CVE-2023-53648",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53648"
},
{
"cve": "CVE-2023-53650",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53650"
},
{
"cve": "CVE-2023-53667",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53667"
},
{
"cve": "CVE-2023-53668",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53668"
},
{
"cve": "CVE-2023-53672",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53672"
},
{
"cve": "CVE-2023-53675",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53675"
},
{
"cve": "CVE-2023-53676",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53676"
},
{
"cve": "CVE-2023-53681",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53681"
},
{
"cve": "CVE-2023-53683",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53683"
},
{
"cve": "CVE-2023-53687",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53687"
},
{
"cve": "CVE-2023-53695",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53695"
},
{
"cve": "CVE-2023-53696",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53696"
},
{
"cve": "CVE-2023-53705",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53705"
},
{
"cve": "CVE-2023-53707",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53707"
},
{
"cve": "CVE-2023-53715",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53715"
},
{
"cve": "CVE-2023-53717",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53717"
},
{
"cve": "CVE-2023-53722",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53722"
},
{
"cve": "CVE-2023-53733",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-53733"
},
{
"cve": "CVE-2023-7324",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2023-7324"
},
{
"cve": "CVE-2024-53194",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2024-53194"
},
{
"cve": "CVE-2024-58240",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2024-58240"
},
{
"cve": "CVE-2025-10230",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-10230"
},
{
"cve": "CVE-2025-11561",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-11561"
},
{
"cve": "CVE-2025-11731",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-11731"
},
{
"cve": "CVE-2025-12817",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-12817"
},
{
"cve": "CVE-2025-12818",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-12818"
},
{
"cve": "CVE-2025-13601",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-13601"
},
{
"cve": "CVE-2025-14087",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-14087"
},
{
"cve": "CVE-2025-14512",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-14512"
},
{
"cve": "CVE-2025-31257",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-31257"
},
{
"cve": "CVE-2025-38436",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38436"
},
{
"cve": "CVE-2025-38488",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38488"
},
{
"cve": "CVE-2025-38527",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38527"
},
{
"cve": "CVE-2025-38539",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38539"
},
{
"cve": "CVE-2025-38553",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38553"
},
{
"cve": "CVE-2025-38572",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38572"
},
{
"cve": "CVE-2025-38574",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38574"
},
{
"cve": "CVE-2025-38602",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38602"
},
{
"cve": "CVE-2025-38604",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38604"
},
{
"cve": "CVE-2025-38623",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38623"
},
{
"cve": "CVE-2025-38624",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38624"
},
{
"cve": "CVE-2025-38632",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38632"
},
{
"cve": "CVE-2025-38639",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38639"
},
{
"cve": "CVE-2025-38665",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38665"
},
{
"cve": "CVE-2025-38680",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38680"
},
{
"cve": "CVE-2025-38685",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38685"
},
{
"cve": "CVE-2025-38691",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38691"
},
{
"cve": "CVE-2025-38695",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38695"
},
{
"cve": "CVE-2025-38699",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38699"
},
{
"cve": "CVE-2025-38700",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38700"
},
{
"cve": "CVE-2025-38701",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38701"
},
{
"cve": "CVE-2025-38702",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38702"
},
{
"cve": "CVE-2025-38705",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38705"
},
{
"cve": "CVE-2025-38712",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38712"
},
{
"cve": "CVE-2025-38713",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38713"
},
{
"cve": "CVE-2025-38714",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38714"
},
{
"cve": "CVE-2025-38718",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38718"
},
{
"cve": "CVE-2025-38724",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38724"
},
{
"cve": "CVE-2025-38727",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38727"
},
{
"cve": "CVE-2025-38729",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38729"
},
{
"cve": "CVE-2025-38735",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-38735"
},
{
"cve": "CVE-2025-39676",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39676"
},
{
"cve": "CVE-2025-39677",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39677"
},
{
"cve": "CVE-2025-39691",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39691"
},
{
"cve": "CVE-2025-39702",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39702"
},
{
"cve": "CVE-2025-39705",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39705"
},
{
"cve": "CVE-2025-39706",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39706"
},
{
"cve": "CVE-2025-39724",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39724"
},
{
"cve": "CVE-2025-39726",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39726"
},
{
"cve": "CVE-2025-39754",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39754"
},
{
"cve": "CVE-2025-39756",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39756"
},
{
"cve": "CVE-2025-39757",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39757"
},
{
"cve": "CVE-2025-39760",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39760"
},
{
"cve": "CVE-2025-39763",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39763"
},
{
"cve": "CVE-2025-39764",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39764"
},
{
"cve": "CVE-2025-39772",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39772"
},
{
"cve": "CVE-2025-39773",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39773"
},
{
"cve": "CVE-2025-39782",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39782"
},
{
"cve": "CVE-2025-39787",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39787"
},
{
"cve": "CVE-2025-39800",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39800"
},
{
"cve": "CVE-2025-39808",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39808"
},
{
"cve": "CVE-2025-39812",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39812"
},
{
"cve": "CVE-2025-39813",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39813"
},
{
"cve": "CVE-2025-39819",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39819"
},
{
"cve": "CVE-2025-39824",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39824"
},
{
"cve": "CVE-2025-39833",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39833"
},
{
"cve": "CVE-2025-39838",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39838"
},
{
"cve": "CVE-2025-39841",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39841"
},
{
"cve": "CVE-2025-39847",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39847"
},
{
"cve": "CVE-2025-39853",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39853"
},
{
"cve": "CVE-2025-39860",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39860"
},
{
"cve": "CVE-2025-39863",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39863"
},
{
"cve": "CVE-2025-39865",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39865"
},
{
"cve": "CVE-2025-39866",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39866"
},
{
"cve": "CVE-2025-39869",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39869"
},
{
"cve": "CVE-2025-39876",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39876"
},
{
"cve": "CVE-2025-39885",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39885"
},
{
"cve": "CVE-2025-39911",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39911"
},
{
"cve": "CVE-2025-39923",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39923"
},
{
"cve": "CVE-2025-39929",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39929"
},
{
"cve": "CVE-2025-39931",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39931"
},
{
"cve": "CVE-2025-39945",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39945"
},
{
"cve": "CVE-2025-39949",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39949"
},
{
"cve": "CVE-2025-39955",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39955"
},
{
"cve": "CVE-2025-39967",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39967"
},
{
"cve": "CVE-2025-39968",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39968"
},
{
"cve": "CVE-2025-39970",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39970"
},
{
"cve": "CVE-2025-39971",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39971"
},
{
"cve": "CVE-2025-39972",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39972"
},
{
"cve": "CVE-2025-39973",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39973"
},
{
"cve": "CVE-2025-39997",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-39997"
},
{
"cve": "CVE-2025-40001",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40001"
},
{
"cve": "CVE-2025-40018",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40018"
},
{
"cve": "CVE-2025-40027",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40027"
},
{
"cve": "CVE-2025-40030",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40030"
},
{
"cve": "CVE-2025-40040",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40040"
},
{
"cve": "CVE-2025-40044",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40044"
},
{
"cve": "CVE-2025-40048",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40048"
},
{
"cve": "CVE-2025-40049",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40049"
},
{
"cve": "CVE-2025-40055",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40055"
},
{
"cve": "CVE-2025-40070",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40070"
},
{
"cve": "CVE-2025-40078",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40078"
},
{
"cve": "CVE-2025-40082",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40082"
},
{
"cve": "CVE-2025-40083",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40083"
},
{
"cve": "CVE-2025-40088",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40088"
},
{
"cve": "CVE-2025-40173",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40173"
},
{
"cve": "CVE-2025-40186",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40186"
},
{
"cve": "CVE-2025-40204",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40204"
},
{
"cve": "CVE-2025-40205",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40205"
},
{
"cve": "CVE-2025-40300",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40300"
},
{
"cve": "CVE-2025-40778",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-40778"
},
{
"cve": "CVE-2025-41244",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-41244"
},
{
"cve": "CVE-2025-4373",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-4373"
},
{
"cve": "CVE-2025-53057",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-53057"
},
{
"cve": "CVE-2025-53066",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-53066"
},
{
"cve": "CVE-2025-53905",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-53905"
},
{
"cve": "CVE-2025-53906",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-53906"
},
{
"cve": "CVE-2025-55157",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-55157"
},
{
"cve": "CVE-2025-55158",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-55158"
},
{
"cve": "CVE-2025-55753",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-55753"
},
{
"cve": "CVE-2025-58098",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-58098"
},
{
"cve": "CVE-2025-59375",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-59375"
},
{
"cve": "CVE-2025-61984",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-61984"
},
{
"cve": "CVE-2025-61985",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-61985"
},
{
"cve": "CVE-2025-65082",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-65082"
},
{
"cve": "CVE-2025-66200",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-66200"
},
{
"cve": "CVE-2025-7039",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-7039"
},
{
"cve": "CVE-2025-8534",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-8534"
},
{
"cve": "CVE-2025-8961",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-8961"
},
{
"cve": "CVE-2025-9165",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-9165"
},
{
"cve": "CVE-2025-9230",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-9230"
},
{
"cve": "CVE-2025-9640",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-9640"
},
{
"cve": "CVE-2025-9900",
"product_status": {
"known_affected": [
"T050653",
"T050664",
"T050652",
"T050663",
"T050655",
"T051763",
"T050654",
"T050665",
"T050660",
"T050651",
"T050662",
"T050650",
"T050661",
"T050649",
"T050657",
"T050656",
"T050648",
"T050659",
"T050647",
"T050658",
"T050669"
]
},
"release_date": "2026-02-09T23:00:00.000+00:00",
"title": "CVE-2025-9900"
}
]
}
Loading…
Trend slope:
-
(linear fit over daily sighting counts)
Show additional events:
Loading…
Experimental. This forecast is provided for visualization only and may change without notice. Do not use it for operational decisions.
Forecast uses a logistic model when the trend is rising, or an exponential decay model when the trend is falling. Fitted via linearized least squares.
Sightings
| Author | Source | Type | Date | Other |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…