Last active
March 20, 2026 17:17
-
-
Save jralvarezc/f3bf54f4746f837a757cdada571df339 to your computer and use it in GitHub Desktop.
Awesome CVELabs — Report
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Awesome CVELabs — Report</title> | |
| <style> | |
| *, *::before, *::after { box-sizing: border-box; } | |
| body { | |
| margin: 0; | |
| padding: 1.5rem 2rem; | |
| font-family: system-ui, -apple-system, sans-serif; | |
| background: #0f1117; | |
| color: #e2e8f0; | |
| font-size: 14px; | |
| } | |
| h1 { | |
| font-size: 1.4rem; | |
| font-weight: 600; | |
| margin-bottom: 0.25rem; | |
| color: #f8fafc; | |
| } | |
| p.subtitle { | |
| color: #64748b; | |
| margin: 0 0 1.25rem; | |
| font-size: 0.82rem; | |
| } | |
| .wrap { | |
| overflow-x: auto; | |
| border-radius: 8px; | |
| border: 1px solid #1e2535; | |
| } | |
| table { | |
| border-collapse: collapse; | |
| width: 100%; | |
| min-width: 960px; | |
| } | |
| thead { | |
| background: #161b2e; | |
| position: sticky; | |
| top: 0; | |
| z-index: 2; | |
| } | |
| th { | |
| padding: 10px 12px; | |
| text-align: left; | |
| font-weight: 600; | |
| white-space: nowrap; | |
| cursor: pointer; | |
| user-select: none; | |
| border-bottom: 2px solid #1e2535; | |
| color: #94a3b8; | |
| font-size: 0.78rem; | |
| letter-spacing: 0.03em; | |
| text-transform: uppercase; | |
| } | |
| th:hover { color: #e2e8f0; background: #1a2038; } | |
| th.sorted-asc::after { content: " ▲"; color: #38bdf8; } | |
| th.sorted-desc::after { content: " ▼"; color: #38bdf8; } | |
| td { | |
| padding: 8px 12px; | |
| border-bottom: 1px solid #1a2030; | |
| vertical-align: middle; | |
| } | |
| td.num { text-align: right; font-variant-numeric: tabular-nums; } | |
| tr:hover td { background: #161d2e; } | |
| td a { | |
| color: #38bdf8; | |
| text-decoration: none; | |
| font-weight: 500; | |
| } | |
| td a:hover { text-decoration: underline; } | |
| .null { color: #334155; } | |
| /* Advisories button */ | |
| .adv-btn { | |
| background: none; | |
| border: none; | |
| color: #38bdf8; | |
| font: inherit; | |
| font-variant-numeric: tabular-nums; | |
| cursor: pointer; | |
| padding: 2px 6px; | |
| border-radius: 4px; | |
| transition: background 0.15s; | |
| } | |
| .adv-btn:hover { background: #1e3a4f; } | |
| tfoot td { | |
| font-weight: 600; | |
| color: #94a3b8; | |
| background: #161b2e; | |
| border-top: 2px solid #1e2535; | |
| border-bottom: none; | |
| padding: 8px 12px; | |
| font-size: 0.8rem; | |
| } | |
| tfoot td.num { text-align: right; } | |
| .search-bar { | |
| margin-bottom: 1rem; | |
| display: flex; | |
| gap: 0.5rem; | |
| align-items: center; | |
| } | |
| .search-bar input { | |
| background: #161b2e; | |
| border: 1px solid #1e2535; | |
| color: #e2e8f0; | |
| padding: 6px 12px; | |
| border-radius: 6px; | |
| font-size: 0.85rem; | |
| width: 220px; | |
| outline: none; | |
| } | |
| .search-bar input:focus { border-color: #38bdf8; } | |
| .search-bar label { color: #64748b; font-size: 0.8rem; } | |
| /* ── Modal ──────────────────────────────────────────────────────── */ | |
| .overlay { | |
| display: none; | |
| position: fixed; | |
| inset: 0; | |
| background: rgba(0,0,0,0.72); | |
| z-index: 100; | |
| justify-content: center; | |
| align-items: flex-start; | |
| padding: 5vh 1rem; | |
| overflow-y: auto; | |
| } | |
| .overlay.open { display: flex; } | |
| .modal { | |
| background: #141824; | |
| border: 1px solid #1e2535; | |
| border-radius: 10px; | |
| width: 100%; | |
| max-width: 780px; | |
| padding: 1.5rem 1.75rem 2rem; | |
| position: relative; | |
| box-shadow: 0 24px 64px rgba(0,0,0,0.6); | |
| } | |
| .modal-close { | |
| position: absolute; | |
| top: 1rem; right: 1.25rem; | |
| background: none; | |
| border: none; | |
| color: #64748b; | |
| font-size: 1.3rem; | |
| cursor: pointer; | |
| line-height: 1; | |
| padding: 0 4px; | |
| } | |
| .modal-close:hover { color: #e2e8f0; } | |
| .modal-title { | |
| font-size: 1.15rem; | |
| font-weight: 700; | |
| color: #f8fafc; | |
| margin: 0 0 0.25rem; | |
| } | |
| .modal-title a { | |
| color: #38bdf8; | |
| text-decoration: none; | |
| } | |
| .modal-title a:hover { text-decoration: underline; } | |
| .modal-stats { | |
| display: flex; | |
| gap: 1.25rem; | |
| margin: 0.85rem 0 1.5rem; | |
| flex-wrap: wrap; | |
| } | |
| .stat-chip { | |
| background: #1a2235; | |
| border: 1px solid #1e2535; | |
| border-radius: 6px; | |
| padding: 5px 12px; | |
| font-size: 0.8rem; | |
| } | |
| .stat-chip span { color: #38bdf8; font-weight: 700; margin-right: 4px; } | |
| .modal-section { | |
| margin-bottom: 1.5rem; | |
| } | |
| .modal-section h3 { | |
| font-size: 0.72rem; | |
| font-weight: 600; | |
| text-transform: uppercase; | |
| letter-spacing: 0.07em; | |
| color: #64748b; | |
| margin: 0 0 0.6rem; | |
| border-bottom: 1px solid #1e2535; | |
| padding-bottom: 0.4rem; | |
| } | |
| .tag-list { | |
| display: flex; | |
| flex-wrap: wrap; | |
| gap: 0.4rem; | |
| } | |
| .tag { | |
| background: #1a2235; | |
| border: 1px solid #1e2535; | |
| border-radius: 4px; | |
| padding: 3px 9px; | |
| font-size: 0.78rem; | |
| color: #cbd5e1; | |
| white-space: nowrap; | |
| } | |
| .tag .cnt { | |
| color: #64748b; | |
| margin-left: 4px; | |
| font-size: 0.72rem; | |
| } | |
| .adv-list { | |
| list-style: none; | |
| margin: 0; | |
| padding: 0; | |
| max-height: 340px; | |
| overflow-y: auto; | |
| } | |
| .adv-list li { | |
| display: flex; | |
| gap: 0.75rem; | |
| align-items: baseline; | |
| padding: 5px 0; | |
| border-bottom: 1px solid #1a2030; | |
| font-size: 0.8rem; | |
| } | |
| .adv-list li:last-child { border-bottom: none; } | |
| .adv-date { color: #64748b; white-space: nowrap; min-width: 85px; font-size: 0.75rem; } | |
| .adv-cves { color: #94a3b8; flex-shrink: 0; } | |
| .adv-cves a { | |
| color: #38bdf8; | |
| text-decoration: none; | |
| margin-right: 4px; | |
| } | |
| .adv-cves a:hover { text-decoration: underline; } | |
| .adv-meta { color: #64748b; font-size: 0.73rem; } | |
| .show-more-btn { | |
| background: none; | |
| border: 1px solid #1e2535; | |
| color: #64748b; | |
| border-radius: 4px; | |
| padding: 4px 10px; | |
| font-size: 0.75rem; | |
| cursor: pointer; | |
| margin-top: 0.5rem; | |
| } | |
| .show-more-btn:hover { color: #e2e8f0; border-color: #38bdf8; } | |
| /* legend */ | |
| .legend { | |
| margin-top: 2.5rem; | |
| border-top: 1px solid #1e2535; | |
| padding-top: 1.5rem; | |
| } | |
| .legend h2 { | |
| font-size: 0.9rem; | |
| font-weight: 600; | |
| color: #94a3b8; | |
| text-transform: uppercase; | |
| letter-spacing: 0.05em; | |
| margin: 0 0 1rem; | |
| } | |
| .legend dl { | |
| display: grid; | |
| grid-template-columns: max-content 1fr; | |
| gap: 0.4rem 1.5rem; | |
| margin: 0; | |
| } | |
| .legend dt { | |
| color: #38bdf8; | |
| font-weight: 600; | |
| font-size: 0.82rem; | |
| white-space: nowrap; | |
| padding-top: 1px; | |
| } | |
| .legend dd { | |
| color: #94a3b8; | |
| font-size: 0.82rem; | |
| margin: 0; | |
| line-height: 1.5; | |
| } | |
| .legend dd code { | |
| background: #161b2e; | |
| border: 1px solid #1e2535; | |
| border-radius: 3px; | |
| padding: 0 4px; | |
| font-family: ui-monospace, monospace; | |
| font-size: 0.78rem; | |
| color: #e2e8f0; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <h1>Awesome CVELabs</h1> | |
| <p class="subtitle">Generated on 2026-03-20 17:17 UTC · 37 labs · click any column header to sort · click <strong style="color:#38bdf8">advisory count</strong> for details</p> | |
| <div class="search-bar"> | |
| <label for="q">Filter:</label> | |
| <input id="q" type="search" placeholder="lab name…" oninput="filterTable(this.value)"> | |
| </div> | |
| <div class="wrap"> | |
| <table id="main"> | |
| <thead> | |
| <tr> | |
| <th title="Name of the CVE research lab">Laboratory</th> | |
| <th title="Total advisories — click to expand detail">Advisories</th> | |
| <th title="Total unique CVE identifiers disclosed">Unique CVEs</th> | |
| <th title="Distinct vendors whose products were affected">Vendors Affected</th> | |
| <th title="Distinct researchers credited in advisories">Researchers</th> | |
| <th title="Date of the earliest advisory on record">First Advisory</th> | |
| <th title="Date of the most recent advisory on record">Last Advisory</th> | |
| <th title="Months between first and last advisory">Active Months</th> | |
| <th title="Average CVEs per month of activity">CVEs / Month</th> | |
| <th title="Average CVEs per affected vendor">CVEs / Vendor</th> | |
| <th title="Average CVEs per credited researcher">CVEs / Researcher</th> | |
| <th title="Months since the last advisory">Months Inactive</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| <tr><td><a href="https://www.assetnote.io" target="_blank" rel="noopener">Assetnote</a></td><td class="num"><button class="adv-btn" data-idx="0">20</button></td><td class="num">27</td><td class="num">13</td><td class="num">1</td><td class="num">2022-06-09</td><td class="num">2025-03-24</td><td class="num">33</td><td class="num">0.8</td><td class="num">2.1</td><td class="num">27.0</td><td class="num">12</td></tr> | |
| <tr><td><a href="https://bishopfox.com" target="_blank" rel="noopener">Bishop Fox</a></td><td class="num"><button class="adv-btn" data-idx="1">64</button></td><td class="num">157</td><td class="num">32</td><td class="num">21</td><td class="num">2017-02-24</td><td class="num">2022-07-07</td><td class="num">65</td><td class="num">2.4</td><td class="num">4.9</td><td class="num">7.5</td><td class="num">44</td></tr> | |
| <tr><td><a href="https://census-labs.com" target="_blank" rel="noopener">Census Labs</a></td><td class="num"><button class="adv-btn" data-idx="2">19</button></td><td class="num">31</td><td class="num">11</td><td class="num">10</td><td class="num">2009-07-02</td><td class="num">2023-03-16</td><td class="num">164</td><td class="num">0.2</td><td class="num">2.8</td><td class="num">3.1</td><td class="num">36</td></tr> | |
| <tr><td><a href="https://claroty.com/team82/disclosure-dashboard" target="_blank" rel="noopener">Claroty Team82</a></td><td class="num"><button class="adv-btn" data-idx="3">760</button></td><td class="num">758</td><td class="num">146</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">5.2</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://www.coresecurity.com/core-labs/advisories" target="_blank" rel="noopener">Core Security Core Labs</a></td><td class="num"><button class="adv-btn" data-idx="4">0</button></td><td class="num">0</td><td class="num">0</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://www.coresecurity.com/core-labs/advisories" target="_blank" rel="noopener">Core Security</a></td><td class="num"><button class="adv-btn" data-idx="5">0</button></td><td class="num">0</td><td class="num">0</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://labs.cyberark.com/cyberark-labs-security-advisories/" target="_blank" rel="noopener">CyberArk Labs</a></td><td class="num"><button class="adv-btn" data-idx="6">119</button></td><td class="num">119</td><td class="num">54</td><td class="num">17</td><td class="num">2018-11-07</td><td class="num">2022-12-29</td><td class="num">49</td><td class="num">2.4</td><td class="num">2.2</td><td class="num">7.0</td><td class="num">39</td></tr> | |
| <tr><td><a href="https://www.flashback.sh" target="_blank" rel="noopener">Flashback</a></td><td class="num"><button class="adv-btn" data-idx="7">7</button></td><td class="num">15</td><td class="num">7</td><td class="num">2</td><td class="num">2020-06-18</td><td class="num">2023-02-02</td><td class="num">32</td><td class="num">0.5</td><td class="num">2.1</td><td class="num">7.5</td><td class="num">37</td></tr> | |
| <tr><td><a href="https://fluidattacks.com/advisories" target="_blank" rel="noopener">Fluid Attacks</a></td><td class="num"><button class="adv-btn" data-idx="8">128</button></td><td class="num">226</td><td class="num">40</td><td class="num">18</td><td class="num">2021-09-28</td><td class="num">2026-03-09</td><td class="num">54</td><td class="num">4.2</td><td class="num">5.7</td><td class="num">12.6</td><td class="num">0</td></tr> | |
| <tr><td><a href="https://www.fortiguard.com/psirt" target="_blank" rel="noopener">FortiGuard</a></td><td class="num"><button class="adv-btn" data-idx="9">15</button></td><td class="num">15</td><td class="num">6</td><td class="num">0</td><td class="num">2025-10-14</td><td class="num">2026-03-10</td><td class="num">5</td><td class="num">3.0</td><td class="num">2.5</td><td class="num"><span class="null">—</span></td><td class="num">0</td></tr> | |
| <tr><td><a href="https://www.horizon3.ai" target="_blank" rel="noopener">Horizon3</a></td><td class="num"><button class="adv-btn" data-idx="10">56</button></td><td class="num">75</td><td class="num">53</td><td class="num">0</td><td class="num">2025-05-20</td><td class="num">2026-03-05</td><td class="num">10</td><td class="num">7.5</td><td class="num">1.4</td><td class="num"><span class="null">—</span></td><td class="num">0</td></tr> | |
| <tr><td><a href="https://labs.integrity.pt" target="_blank" rel="noopener">Integrity Labs</a></td><td class="num"><button class="adv-btn" data-idx="11">72</button></td><td class="num">69</td><td class="num">43</td><td class="num">20</td><td class="num">2013-07-09</td><td class="num">2025-06-03</td><td class="num">143</td><td class="num">0.5</td><td class="num">1.6</td><td class="num">3.5</td><td class="num">9</td></tr> | |
| <tr><td><a href="https://www.ioactive.com" target="_blank" rel="noopener">IOActive</a></td><td class="num"><button class="adv-btn" data-idx="12">74</button></td><td class="num">24</td><td class="num">8</td><td class="num">38</td><td class="num">2015-09-05</td><td class="num">2025-03-14</td><td class="num">114</td><td class="num">0.2</td><td class="num">3.0</td><td class="num">0.6</td><td class="num">12</td></tr> | |
| <tr><td><a href="https://research.jfrog.com" target="_blank" rel="noopener">JFrog Security Research</a></td><td class="num"><button class="adv-btn" data-idx="13">183</button></td><td class="num">176</td><td class="num">91</td><td class="num">24</td><td class="num">2019-02-06</td><td class="num">2026-02-09</td><td class="num">84</td><td class="num">2.1</td><td class="num">1.9</td><td class="num">7.3</td><td class="num">1</td></tr> | |
| <tr><td><a href="https://github.com/mandiant/Vulnerability-Disclosures" target="_blank" rel="noopener">Mandiant</a></td><td class="num"><button class="adv-btn" data-idx="14">157</button></td><td class="num">144</td><td class="num">44</td><td class="num">35</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">3.3</td><td class="num">4.1</td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://www.nccgroup.com" target="_blank" rel="noopener">NCC Group</a></td><td class="num"><button class="adv-btn" data-idx="15">115</button></td><td class="num">273</td><td class="num">103</td><td class="num">48</td><td class="num">2006-02-03</td><td class="num">2025-09-29</td><td class="num">235</td><td class="num">1.2</td><td class="num">2.7</td><td class="num">5.7</td><td class="num">6</td></tr> | |
| <tr><td><a href="https://www.nozominetworks.com/vulnerability-advisories" target="_blank" rel="noopener">Nozomi Networks</a></td><td class="num"><button class="adv-btn" data-idx="16">203</button></td><td class="num">203</td><td class="num">24</td><td class="num">8</td><td class="num">2022-02-16</td><td class="num">2026-03-10</td><td class="num">49</td><td class="num">4.1</td><td class="num">8.5</td><td class="num">25.4</td><td class="num">0</td></tr> | |
| <tr><td><a href="https://github.com/Orange-Cyberdefense/CVE-repository" target="_blank" rel="noopener">Orange Cyberdefense</a></td><td class="num"><button class="adv-btn" data-idx="17">65</button></td><td class="num">65</td><td class="num">38</td><td class="num">21</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">1.7</td><td class="num">3.1</td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://patchstack.com/database/" target="_blank" rel="noopener">Patchstack</a></td><td class="num"><button class="adv-btn" data-idx="18">20</button></td><td class="num">20</td><td class="num">4</td><td class="num">17</td><td class="num">2026-03-18</td><td class="num">2026-03-20</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num">5.0</td><td class="num">1.2</td><td class="num">0</td></tr> | |
| <tr><td><a href="https://labs.portcullis.co.uk/advisories/" target="_blank" rel="noopener">Portcullis Labs</a></td><td class="num"><button class="adv-btn" data-idx="19">20</button></td><td class="num">25</td><td class="num">20</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">1.2</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://bugs.chromium.org/p/project-zero/issues" target="_blank" rel="noopener">Google Project Zero</a></td><td class="num"><button class="adv-btn" data-idx="20">0</button></td><td class="num">0</td><td class="num">0</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://ptsecurity.com/ww-en/analytics/threatscape/" target="_blank" rel="noopener">Positive Technologies</a></td><td class="num"><button class="adv-btn" data-idx="21">1127</button></td><td class="num">532</td><td class="num">0</td><td class="num">0</td><td class="num">2012-10-13</td><td class="num">2021-02-01</td><td class="num">100</td><td class="num">5.3</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">61</td></tr> | |
| <tr><td><a href="https://www.qualys.com/research/security-advisories/" target="_blank" rel="noopener">Qualys</a></td><td class="num"><button class="adv-btn" data-idx="22">49</button></td><td class="num">70</td><td class="num">0</td><td class="num">1</td><td class="num">2012-05-04</td><td class="num">2025-05-28</td><td class="num">156</td><td class="num">0.4</td><td class="num"><span class="null">—</span></td><td class="num">70.0</td><td class="num">10</td></tr> | |
| <tr><td><a href="https://www.safebreach.com/blog/research/" target="_blank" rel="noopener">SafeBreach Labs</a></td><td class="num"><button class="adv-btn" data-idx="23">57</button></td><td class="num">56</td><td class="num">0</td><td class="num">0</td><td class="num">2019-06-08</td><td class="num">2026-01-26</td><td class="num">79</td><td class="num">0.7</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">2</td></tr> | |
| <tr><td><a href="https://sec-consult.com/vulnerability-lab/" target="_blank" rel="noopener">SEC Consult</a></td><td class="num"><button class="adv-btn" data-idx="24">246</button></td><td class="num">526</td><td class="num">228</td><td class="num">105</td><td class="num">2006-11-27</td><td class="num">2026-01-02</td><td class="num">230</td><td class="num">2.3</td><td class="num">2.3</td><td class="num">5.0</td><td class="num">2</td></tr> | |
| <tr><td><a href="https://www.securitum.com" target="_blank" rel="noopener">Securitum</a></td><td class="num"><button class="adv-btn" data-idx="25">4</button></td><td class="num">4</td><td class="num">1</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td><td class="num">4.0</td><td class="num"><span class="null">—</span></td><td class="num"><span class="null">—</span></td></tr> | |
| <tr><td><a href="https://www.sentinelone.com/labs/" target="_blank" rel="noopener">SentinelOne</a></td><td class="num"><button class="adv-btn" data-idx="26">48</button></td><td class="num">115</td><td class="num">43</td><td class="num">22</td><td class="num">2019-05-09</td><td class="num">2025-06-09</td><td class="num">73</td><td class="num">1.6</td><td class="num">2.7</td><td class="num">5.2</td><td class="num">9</td></tr> | |
| <tr><td><a href="https://srcincite.io" target="_blank" rel="noopener">Source Incite</a></td><td class="num"><button class="adv-btn" data-idx="27">291</button></td><td class="num">247</td><td class="num">35</td><td class="num">8</td><td class="num">2024-01-15</td><td class="num">2024-01-15</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num">7.1</td><td class="num">30.9</td><td class="num">26</td></tr> | |
| <tr><td><a href="https://starlabs.sg" target="_blank" rel="noopener">Star Labs SG</a></td><td class="num"><button class="adv-btn" data-idx="28">142</button></td><td class="num">145</td><td class="num">15</td><td class="num">24</td><td class="num">2018-11-27</td><td class="num">2024-07-31</td><td class="num">68</td><td class="num">2.1</td><td class="num">9.7</td><td class="num">6.0</td><td class="num">20</td></tr> | |
| <tr><td><a href="https://www.synacktiv.com" target="_blank" rel="noopener">Synacktiv</a></td><td class="num"><button class="adv-btn" data-idx="29">78</button></td><td class="num">50</td><td class="num">35</td><td class="num">31</td><td class="num">2022-11-28</td><td class="num">2025-06-26</td><td class="num">31</td><td class="num">1.6</td><td class="num">1.4</td><td class="num">1.6</td><td class="num">9</td></tr> | |
| <tr><td><a href="https://www.tenable.com/security/research" target="_blank" rel="noopener">Tenable Research</a></td><td class="num"><button class="adv-btn" data-idx="30">572</button></td><td class="num">912</td><td class="num">474</td><td class="num">0</td><td class="num">2009-04-14</td><td class="num">2026-03-05</td><td class="num">203</td><td class="num">4.5</td><td class="num">1.9</td><td class="num"><span class="null">—</span></td><td class="num">0</td></tr> | |
| <tr><td><a href="https://www.levelblue.com/security-resources/security-advisories" target="_blank" rel="noopener">Trustwave SpiderLabs</a></td><td class="num"><button class="adv-btn" data-idx="31">146</button></td><td class="num">228</td><td class="num">109</td><td class="num">22</td><td class="num">2011-12-22</td><td class="num">2024-07-30</td><td class="num">151</td><td class="num">1.5</td><td class="num">2.1</td><td class="num">10.4</td><td class="num">20</td></tr> | |
| <tr><td><a href="https://versprite.com/advisories/" target="_blank" rel="noopener">VerSprite</a></td><td class="num"><button class="adv-btn" data-idx="32">38</button></td><td class="num">37</td><td class="num">26</td><td class="num">0</td><td class="num">2017-12-11</td><td class="num">2025-11-20</td><td class="num">95</td><td class="num">0.4</td><td class="num">1.4</td><td class="num"><span class="null">—</span></td><td class="num">4</td></tr> | |
| <tr><td><a href="https://vulncheck.com/advisories" target="_blank" rel="noopener">VulnCheck</a></td><td class="num"><button class="adv-btn" data-idx="33">20</button></td><td class="num">20</td><td class="num">7</td><td class="num">0</td><td class="num">2026-03-19</td><td class="num">2026-03-20</td><td class="num">0</td><td class="num"><span class="null">—</span></td><td class="num">2.9</td><td class="num"><span class="null">—</span></td><td class="num">0</td></tr> | |
| <tr><td><a href="https://labs.watchtowr.com" target="_blank" rel="noopener">watchTowr</a></td><td class="num"><button class="adv-btn" data-idx="34">80</button></td><td class="num">147</td><td class="num">29</td><td class="num">9</td><td class="num">2022-07-01</td><td class="num">2026-03-03</td><td class="num">44</td><td class="num">3.3</td><td class="num">5.1</td><td class="num">16.3</td><td class="num">0</td></tr> | |
| <tr><td><a href="https://labs.withsecure.com/advisories" target="_blank" rel="noopener">WithSecure Labs</a></td><td class="num"><button class="adv-btn" data-idx="35">2</button></td><td class="num">2</td><td class="num">2</td><td class="num">2</td><td class="num">2023-01-05</td><td class="num">2023-06-08</td><td class="num">5</td><td class="num">0.4</td><td class="num">1.0</td><td class="num">1.0</td><td class="num">33</td></tr> | |
| <tr><td><a href="https://www.wiz.io" target="_blank" rel="noopener">Wiz Research</a></td><td class="num"><button class="adv-btn" data-idx="36">5</button></td><td class="num">8</td><td class="num">1</td><td class="num">1</td><td class="num">2025-12-10</td><td class="num">2026-03-13</td><td class="num">3</td><td class="num">2.7</td><td class="num">8.0</td><td class="num">8.0</td><td class="num">0</td></tr> | |
| </tbody> | |
| <tfoot> | |
| <tr> | |
| <td>Totals / averages</td><td class="num">5002</td><td class="num">5521</td><td class="num">1742</td><td class="num">505</td><td></td><td></td><td class="num">78.4</td><td class="num">2.1</td><td class="num">3.5</td><td class="num">11.2</td><td class="num">13.5</td> | |
| </tr> | |
| </tfoot> | |
| </table> | |
| </div> | |
| <!-- ── Modal ───────────────────────────────────────────────────────────── --> | |
| <div class="overlay" id="overlay" role="dialog" aria-modal="true"> | |
| <div class="modal" id="modal"> | |
| <button class="modal-close" id="modal-close" aria-label="Close">✕</button> | |
| <div id="modal-content"></div> | |
| </div> | |
| </div> | |
| <section class="legend"> | |
| <h2>Column Definitions</h2> | |
| <dl> | |
| <dt>Laboratory</dt> | |
| <dd>Name of the CVE research lab, linked to its official website.</dd> | |
| <dt>Advisories</dt> | |
| <dd>Total number of security advisories published by the lab. Click the number to see researcher and vendor details.</dd> | |
| <dt>Unique CVEs</dt> | |
| <dd>Count of distinct CVE identifiers disclosed across all advisories.</dd> | |
| <dt>Vendors Affected</dt> | |
| <dd>Number of distinct software or hardware vendors whose products were affected.</dd> | |
| <dt>Researchers</dt> | |
| <dd>Number of distinct individual researchers credited in at least one advisory.</dd> | |
| <dt>First Advisory</dt> | |
| <dd>Date of the earliest advisory on record.</dd> | |
| <dt>Last Advisory</dt> | |
| <dd>Date of the most recent advisory scraped.</dd> | |
| <dt>Active Months</dt> | |
| <dd>Months elapsed between first and last advisory <code>(Last − First)</code>.</dd> | |
| <dt>CVEs / Month</dt> | |
| <dd>Average CVEs disclosed per month of activity <code>Unique CVEs ÷ Active Months</code>.</dd> | |
| <dt>CVEs / Vendor</dt> | |
| <dd>Average CVEs per affected vendor <code>Unique CVEs ÷ Vendors Affected</code>.</dd> | |
| <dt>CVEs / Researcher</dt> | |
| <dd>Average CVEs per credited researcher <code>Unique CVEs ÷ Researchers</code>.</dd> | |
| <dt>Months Inactive</dt> | |
| <dd>Months elapsed since the last advisory. 0–3 indicates an actively publishing lab.</dd> | |
| </dl> | |
| </section> | |
| <script> | |
| // ── Data ─────────────────────────────────────────────────────────────────── | |
| const LAB_DATA = [{"lab": "Assetnote", "url": "https://www.assetnote.io", "A": 20, "Q": 27, "V": 13, "R": 1, "researchers": [{"name": "Objective", "count": 20}], "vendors": [{"name": "Analyzing the Next.js Middleware Bypass", "count": 1}, {"name": "PAN-OS", "count": 1}, {"name": "Next.js SSRF", "count": 1}, {"name": "FTP RCE", "count": 1}, {"name": "Flarum LFI -", "count": 1}, {"name": "Metabase Pre-Auth RCE", "count": 1}, {"name": "ShareFile Pre-Auth RCE", "count": 1}, {"name": "Citrix Gateway Open Redirect and XSS", "count": 1}, {"name": "Oracle Opera Pre-Auth RCE", "count": 1}, {"name": "cPanel", "count": 1}, {"name": "Analysis of", "count": 1}, {"name": "Magento XXE", "count": 1}, {"name": "FortiGate RCE with", "count": 1}], "advisories": [{"url": "https://www.assetnote.io/resources/research/doing-the-due-diligence-analyzing-the-next-js-middleware-bypass-cve-2025-29927", "date": "2025-03-24", "cves": ["CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": ["Analyzing the Next.js Middleware Bypass"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/nginx-apache-path-confusion-to-auth-bypass-in-pan-os", "date": "2025-02-12", "cves": ["CVE-2025-0108", "CVE-2024-0012", "CVE-2024-9474", "CVE-2025-29927", "CVE-2024-8534"], "vendors": ["PAN-OS"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/how-an-obscure-php-footgun-led-to-rce-in-craft-cms", "date": "2024-12-19", "cves": ["CVE-2024-56145", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": [], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/citrix-denial-of-service-analysis-of-cve-2024-8534", "date": "2024-12-13", "cves": ["CVE-2024-8534", "CVE-2025-29927", "CVE-2025-0108"], "vendors": ["Analysis of"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/leveraging-an-order-of-operations-bug-to-achieve-rce-in-sitecore-8-x---10-x", "date": "2024-11-22", "cves": ["CVE-2024-46938", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": [], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/insecurity-through-censorship-vulnerabilities-caused-by-the-great-firewall", "date": "2024-09-27", "cves": ["CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": [], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/chaining-three-bugs-to-access-all-your-servicenow-data", "date": "2024-07-11", "cves": ["CVE-2024-4879", "CVE-2024-5178", "CVE-2024-5217", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": [], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/why-nested-deserialization-is-harmful-magento-xxe-cve-2024-34102", "date": "2024-06-26", "cves": ["CVE-2024-34102", "CVE-2024-2961", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": ["Magento XXE"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-next-js-ssrf-cve-2024-34351", "date": "2024-05-09", "cves": ["CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-24488", "CVE-2023-29489"], "vendors": ["Next.js SSRF"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/digging-for-ssrf-in-nextjs-apps", "date": "2024-05-09", "cves": ["CVE-2024-34351", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": [], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/two-bytes-is-plenty-fortigate-rce-with-cve-2024-21762", "date": "2024-03-15", "cves": ["CVE-2024-21762", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": ["FortiGate RCE with"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/continuing-the-citrix-saga-cve-2023-5914-cve-2023-6184", "date": "2024-02-20", "cves": ["CVE-2023-5914", "CVE-2023-6184", "CVE-2025-29927", "CVE-2024-8534", "CVE-2025-0108"], "vendors": [], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-progress-ws-ftp-rce-cve-2023-40044", "date": "2023-09-30", "cves": ["CVE-2023-40044", "CVE-2024-34351", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-24488", "CVE-2023-29489"], "vendors": ["FTP RCE"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-flarum-lfi-cve-2023-40033", "date": "2023-08-28", "cves": ["CVE-2023-40033", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-24488", "CVE-2023-29489"], "vendors": ["Flarum LFI -"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-metabase-pre-auth-rce-cve-2023-38646", "date": "2023-07-22", "cves": ["CVE-2023-38646", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-24489", "CVE-2023-24488", "CVE-2023-29489"], "vendors": ["Metabase Pre-Auth RCE"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-sharefile-pre-auth-rce-cve-2023-24489", "date": "2023-07-04", "cves": ["CVE-2023-24489", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24488", "CVE-2023-29489"], "vendors": ["ShareFile Pre-Auth RCE"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-citrix-gateway-open-redirect-and-xss-cve-2023-24488", "date": "2023-06-29", "cves": ["CVE-2023-24488", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-29489"], "vendors": ["Citrix Gateway Open Redirect and XSS"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-oracle-opera-pre-auth-rce-cve-2023-21932", "date": "2023-04-30", "cves": ["CVE-2023-21932", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-24488"], "vendors": ["Oracle Opera Pre-Auth RCE"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-reflected-cross-site-scripting-in-cpanel-cve-2023-29489", "date": "2023-04-26", "cves": ["CVE-2023-29489", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-24488"], "vendors": ["cPanel"], "researchers": ["Objective"]}, {"url": "https://www.assetnote.io/resources/research/advisory-multiple-vulnerabilities-in-progress-ipswitch-whatsup-gold", "date": "2022-06-09", "cves": ["CVE-2022-29845", "CVE-2022-29846", "CVE-2022-29847", "CVE-2022-29848", "CVE-2024-34351", "CVE-2023-40044", "CVE-2023-40033", "CVE-2023-38646", "CVE-2023-24489", "CVE-2023-24488"], "vendors": [], "researchers": ["Objective"]}]}, {"lab": "Bishop Fox", "url": "https://bishopfox.com", "A": 64, "Q": 157, "V": 32, "R": 21, "researchers": [{"name": "Share", "count": 4}, {"name": "Florian Nivette", "count": 4}, {"name": "Baker Hamilton", "count": 4}, {"name": "who participates in bug bounty programs and has als", "count": 2}, {"name": "Malaphar", "count": 2}, {"name": "focusing on web applications", "count": 2}, {"name": "Matt Hamilton", "count": 2}, {"name": "Priyank Nigam", "count": 2}, {"name": "of multiple open source-tools and is an active cont", "count": 1}, {"name": "Portal 10", "count": 1}, {"name": "Nik Stinson", "count": 1}, {"name": "performing a Tcp port scan", "count": 1}, {"name": "Felix Wilhelm", "count": 1}, {"name": "Thiago Campos", "count": 1}, {"name": "Chris Davis", "count": 1}, {"name": "Nicolas Serra", "count": 1}, {"name": "Bastien Faure", "count": 1}, {"name": "Alex Leahu", "count": 1}, {"name": "Jefferino Siqueria", "count": 1}, {"name": "Zach Julian", "count": 1}, {"name": "Mike Brooks", "count": 1}], "vendors": [{"name": "SolarWinds", "count": 4}, {"name": "Microsoft Corporation", "count": 2}, {"name": "Product Name", "count": 2}, {"name": "Arista Networks", "count": 1}, {"name": "Traeger", "count": 1}, {"name": "Cloud", "count": 1}, {"name": "JordanKnott", "count": 1}, {"name": "Wow Company", "count": 1}, {"name": "Microsoft", "count": 1}, {"name": "EzAdsPro", "count": 1}, {"name": "UnofficialSF", "count": 1}, {"name": "FACETWP", "count": 1}, {"name": "Atlassian", "count": 1}, {"name": "Netwrix", "count": 1}, {"name": "FileStack", "count": 1}, {"name": "Status Solutions", "count": 1}, {"name": "advisory was released", "count": 1}, {"name": "ConnectWise to help them understand the technical", "count": 1}, {"name": "for government", "count": 1}, {"name": "Tegile Systems", "count": 1}, {"name": "Greyhound Lines", "count": 1}, {"name": "Cantemo AB", "count": 1}, {"name": "Simple Finance Technology", "count": 1}, {"name": "12", "count": 1}, {"name": "10", "count": 1}, {"name": "contacted 6", "count": 1}, {"name": "Patch", "count": 1}, {"name": "ATMAIL", "count": 1}, {"name": "Cisco", "count": 1}, {"name": "Accellion", "count": 1}, {"name": "Apple", "count": 1}, {"name": "CA Technologies", "count": 1}], "advisories": [{"url": "https://bishopfox.com/blog/windows-task-scheduler-19044-advisory", "date": "2022-07-07", "cves": ["CVE-2023-21541"], "vendors": ["Microsoft Corporation"], "researchers": []}, {"url": "https://bishopfox.com/blog/microsoft-intune-version-1-55-48-0-advisory", "date": "2022-07-06", "cves": [], "vendors": ["Microsoft"], "researchers": ["Portal 10"]}, {"url": "https://bishopfox.com/blog/traeger-wifi-controller-advisory", "date": "2021-03-05", "cves": [], "vendors": ["Traeger"], "researchers": []}, {"url": "https://bishopfox.com/blog/cran-version-4-0-2-advisory", "date": "2020-06-22", "cves": ["CVE-2020-27637", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/exploit-of-hobbes-functional-interpreter-advisory", "date": "2020-05-21", "cves": ["CVE-2020-13656"], "vendors": [], "researchers": ["Share"]}, {"url": "https://bishopfox.com/blog/librehealth-version-2-0-0-0-advisory", "date": "2020-02-15", "cves": ["CVE-2020-11439", "CVE-2018-10006", "CVE-2020-11437", "CVE-2019-3963", "CVE-2019-3966", "CVE-2019-3967", "CVE-2019-3968", "CVE-2019-8371", "CVE-2020-11436", "CVE-2020-11438", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": ["Malaphar"]}, {"url": "https://bishopfox.com/blog/aerogarden-1-3-1-advisory", "date": "2019-02-22", "cves": [], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/amtrak-mobile-apis-advisory", "date": "2019-02-13", "cves": [], "vendors": [], "researchers": ["Priyank Nigam"]}, {"url": "https://bishopfox.com/blog/atmail-7-stored-xss-advisory", "date": "2017-02-24", "cves": ["CVE-2017-11617"], "vendors": ["ATMAIL"], "researchers": ["Zach Julian"]}, {"url": "https://bishopfox.com/blog/arista-nextgen-firewall-version-17-4-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6978", "CVE-2026-25620", "CVE-2026-25621", "CVE-2026-25622", "CVE-2026-25623", "CVE-2026-25624", "CVE-2024-3400", "CVE-2024-21762"], "vendors": ["Arista Networks"], "researchers": ["of multiple open source-tools and is an active cont"]}, {"url": "https://bishopfox.com/blog/netscaler-adc-and-gateway-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-4966", "CVE-2023-6549"], "vendors": ["Cloud"], "researchers": []}, {"url": "https://bishopfox.com/blog/taskcafe-version-0-3-2-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26770", "CVE-2023-26771"], "vendors": ["JordanKnott"], "researchers": []}, {"url": "https://bishopfox.com/blog/wp-coder-version-2-5-3-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0895", "CVE-2022-3402"], "vendors": ["Wow Company"], "researchers": []}, {"url": "https://bishopfox.com/blog/ezadspro-blackbox-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["EzAdsPro"], "researchers": ["Nik Stinson"]}, {"url": "https://bishopfox.com/blog/flowscreencomponents-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["UnofficialSF"], "researchers": []}, {"url": "https://bishopfox.com/blog/log-http-requests-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3402"], "vendors": ["FACETWP"], "researchers": []}, {"url": "https://bishopfox.com/blog/jira-align-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36802", "CVE-2022-36803"], "vendors": ["Atlassian"], "researchers": []}, {"url": "https://bishopfox.com/blog/netwrix-auditor-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31199"], "vendors": ["Netwrix"], "researchers": ["performing a Tcp port scan"]}, {"url": "https://bishopfox.com/blog/filestack-upload-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["FileStack"], "researchers": []}, {"url": "https://bishopfox.com/blog/catie-web-v-20-04-0-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Status Solutions"], "researchers": []}, {"url": "https://bishopfox.com/blog/ecatcher-desktop-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33214"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/wodify-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/retroarch-for-windows-1-9-0-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-28927"], "vendors": [], "researchers": ["who participates in bug bounty programs and has als"]}, {"url": "https://bishopfox.com/blog/froala-editor-v3-2-6-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-28114", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/f5-networks-big-ip-big-iq-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22986", "CVE-2021-22991", "CVE-2021-22992", "CVE-2020-5902", "CVE-2021-22987", "CVE-2021-22988", "CVE-2021-22989", "CVE-2021-22990"], "vendors": ["advisory was released"], "researchers": ["Felix Wilhelm"]}, {"url": "https://bishopfox.com/blog/mautic-version-3-2-2-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-35128", "CVE-2020-35129"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/openclinic-version-0-8-2-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-28937", "CVE-2020-28939", "CVE-2020-28938"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/immuta-version-2-8-2-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-15952", "CVE-2020-15951", "CVE-2020-15949", "CVE-2020-15950", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/winston-privacy-version-1-5-4-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16257", "CVE-2020-16256", "CVE-2020-16261", "CVE-2020-16262", "CVE-2020-16263", "CVE-2020-16260", "CVE-2020-16258", "CVE-2020-16259", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/zamzar-api-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/tinymce-version-5-2-1-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12648", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/secureauth-version-9-3-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-9437", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": ["who participates in bug bounty programs and has als"]}, {"url": "https://bishopfox.com/blog/digdash-version-2018-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-13650", "CVE-2020-13651", "CVE-2020-13652", "CVE-2018-11349", "CVE-2018-11350", "CVE-2018-11351", "CVE-2018-13407", "CVE-2018-11408", "CVE-2018-13409", "CVE-2017-77737", "CVE-2017-5870", "CVE-2017-6086"], "vendors": [], "researchers": ["focusing on web applications"]}, {"url": "https://bishopfox.com/blog/twisted-version-19-10-0-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10108", "CVE-2020-10109"], "vendors": [], "researchers": ["Share"]}, {"url": "https://bishopfox.com/blog/from-emoji-to-zero-day-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Matt Hamilton"]}, {"url": "https://bishopfox.com/blog/connectwise-control-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-16512", "CVE-2019-16513", "CVE-2019-16514", "CVE-2019-16515", "CVE-2019-16516", "CVE-2019-16517"], "vendors": ["ConnectWise to help them understand the technical"], "researchers": []}, {"url": "https://bishopfox.com/blog/dradis-pro-3-4-1-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19946", "CVE-2018-11349", "CVE-2018-11350", "CVE-2018-11351", "CVE-2018-13407", "CVE-2018-11408", "CVE-2018-13409", "CVE-2017-77737", "CVE-2017-5870", "CVE-2017-6086"], "vendors": ["Product Name"], "researchers": ["focusing on web applications"]}, {"url": "https://bishopfox.com/blog/big-monitoring-fabric-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19632", "CVE-2019-19631", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/solismed-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15936", "CVE-2019-16246", "CVE-2019-15933", "CVE-2019-15935", "CVE-2019-15934", "CVE-2019-15932", "CVE-2019-15931", "CVE-2019-17428", "CVE-2019-15930", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": ["Malaphar"]}, {"url": "https://bishopfox.com/blog/openemr-5-0-16-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8371", "CVE-2019-8368", "CVE-2019-7551", "CVE-2018-17150"], "vendors": [], "researchers": []}, {"url": "https://bishopfox.com/blog/dolibarr-version-9-0-1-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11200", "CVE-2019-11201", "CVE-2019-11199"], "vendors": ["Product Name"], "researchers": []}, {"url": "https://bishopfox.com/blog/intersystems-cache-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17150", "CVE-2018-17152", "CVE-2018-17151", "CVE-2019-7551"], "vendors": ["for government"], "researchers": []}, {"url": "https://bishopfox.com/blog/tegile-intelliflash-os-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-6464"], "vendors": ["Tegile Systems"], "researchers": ["Thiago Campos"]}, {"url": "https://bishopfox.com/blog/greyhound-road-rewards-program-advisory", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Greyhound Lines"], "researchers": ["Priyank Nigam"]}, {"url": "https://bishopfox.com/blog/cantemo-portal-3-8-4-xss-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7551", "CVE-2018-17150"], "vendors": ["Cantemo AB"], "researchers": ["Chris Davis"]}, {"url": "https://bishopfox.com/blog/simple-better-banking-android-v-2-45-0-2-45-3-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8350", "CVE-2018-5256", "CVE-2018-9090"], "vendors": ["Simple Finance Technology"], "researchers": ["Matt Hamilton"]}, {"url": "https://bishopfox.com/blog/openmrs-insecure-object-deserialization-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19276", "CVE-2017-6087", "CVE-2017-6088", "CVE-2017-6089", "CVE-2017-6090", "CVE-2018-4864", "CVE-2018-4865", "CVE-2018-4866"], "vendors": [], "researchers": ["Nicolas Serra"]}, {"url": "https://bishopfox.com/blog/silverpeas-5-15-to-6-0-2-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19586", "CVE-2014-2223"], "vendors": ["12"], "researchers": ["Bastien Faure"]}, {"url": "https://bishopfox.com/blog/phpspreadsheet-versions1.5.0-xxe-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19277"], "vendors": [], "researchers": ["Alex Leahu"]}, {"url": "https://bishopfox.com/blog/yunohost-2-7-2-to-2-7-14-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-11348", "CVE-2018-11347", "CVE-2018-11349", "CVE-2018-11350", "CVE-2018-11351", "CVE-2018-13407", "CVE-2018-11408", "CVE-2018-13409", "CVE-2017-77737", "CVE-2017-5870", "CVE-2017-6086"], "vendors": [], "researchers": ["Florian Nivette"]}, {"url": "https://bishopfox.com/blog/eaton-ups-9px-8000-sp-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9281", "CVE-2018-9280", "CVE-2018-9279"], "vendors": ["10"], "researchers": []}, {"url": "https://bishopfox.com/blog/sv3c-l-series-hd-camera-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-12666", "CVE-2018-12667", "CVE-2018-12668", "CVE-2018-12669", "CVE-2018-12670", "CVE-2018-12671", "CVE-2018-12672", "CVE-2018-12673", "CVE-2018-12674", "CVE-2018-12675"], "vendors": ["contacted 6"], "researchers": ["Jefferino Siqueria"]}, {"url": "https://bishopfox.com/blog/subsonic-6-1-1-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9282", "CVE-2018-14688", "CVE-2018-14689", "CVE-2018-14690", "CVE-2018-14691", "CVE-2018-14687", "CVE-2018-14692", "CVE-2018-14694", "CVE-2018-11349", "CVE-2018-11350", "CVE-2018-11351", "CVE-2018-13407", "CVE-2018-11408", "CVE-2018-13409", "CVE-2017-77737", "CVE-2017-5870", "CVE-2017-6086"], "vendors": [], "researchers": ["Florian Nivette"]}, {"url": "https://bishopfox.com/blog/cremecrm-1-6-12-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9283", "CVE-2018-14396", "CVE-2018-14397", "CVE-2018-14398", "CVE-2018-11349", "CVE-2018-11350", "CVE-2018-11351", "CVE-2018-13407", "CVE-2018-11408", "CVE-2018-13409", "CVE-2017-77737", "CVE-2017-5870", "CVE-2017-6086"], "vendors": [], "researchers": ["Florian Nivette"]}, {"url": "https://bishopfox.com/blog/jirafeau-version-3-3-0-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-11351", "CVE-2018-11350", "CVE-2018-11409", "CVE-2018-13409", "CVE-2018-11408", "CVE-2018-13408", "CVE-2018-11349", "CVE-2018-13407", "CVE-2017-77737", "CVE-2017-5870", "CVE-2017-6086"], "vendors": ["Patch"], "researchers": ["Florian Nivette"]}, {"url": "https://bishopfox.com/blog/solarwinds-serv-u-mft-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10240"], "vendors": ["SolarWinds"], "researchers": ["Baker Hamilton"]}, {"url": "https://bishopfox.com/blog/solarwinds-serv-u-dos-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10241"], "vendors": ["SolarWinds"], "researchers": ["Baker Hamilton"]}, {"url": "https://bishopfox.com/blog/windows-dns-client-memory-corrupt-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11779"], "vendors": ["Microsoft Corporation"], "researchers": ["Share"]}, {"url": "https://bishopfox.com/blog/solarwinds-log-event-manager-iac-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-7646"], "vendors": ["SolarWinds"], "researchers": ["Baker Hamilton"]}, {"url": "https://bishopfox.com/blog/solarwinds-log-event-manager-aci-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-7647"], "vendors": ["SolarWinds"], "researchers": ["Baker Hamilton"]}, {"url": "https://bishopfox.com/blog/cisco-jabber-server-http-url-redirection-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-9224"], "vendors": ["Cisco"], "researchers": ["Share"]}, {"url": "https://bishopfox.com/blog/accellion-kiteworks-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-5662", "CVE-2016-5663", "CVE-2016-5664"], "vendors": ["Accellion"], "researchers": []}, {"url": "https://bishopfox.com/blog/os-x-messages-imessage-xss-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-1764"], "vendors": ["Apple"], "researchers": []}, {"url": "https://bishopfox.com/blog/ca-technologies-sso-advisory", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-6853", "CVE-2015-6854"], "vendors": ["CA Technologies"], "researchers": ["Mike Brooks"]}]}, {"lab": "Census Labs", "url": "https://census-labs.com", "A": 19, "Q": 31, "V": 11, "R": 10, "researchers": [{"name": "Anestis Bechtsoudis", "count": 5}, {"name": "George Poulios", "count": 3}, {"name": "Patroklos Argyroudis", "count": 3}, {"name": "Stelios Tsampas", "count": 2}, {"name": "Ioannis Christodoulakos", "count": 1}, {"name": "Charalampos Maraziaris", "count": 1}, {"name": "Angelos T", "count": 1}, {"name": "Chariton Karamitas", "count": 1}, {"name": "Aris Thallas", "count": 1}, {"name": "Census", "count": 1}], "vendors": [{"name": "Android", "count": 5}, {"name": "cryptoauthlib", "count": 2}, {"name": "Squidex", "count": 1}, {"name": "Snipe-IT", "count": 1}, {"name": "radare2", "count": 1}, {"name": "devices remains quite large", "count": 1}, {"name": "ASF4", "count": 1}, {"name": "Samsung", "count": 1}, {"name": "newlib", "count": 1}, {"name": "Kamailio", "count": 1}, {"name": "Applications", "count": 1}], "advisories": [{"url": "https://census-labs.com/news/2023/03/16/reflected-xss-vulnerabilities-in-squidex-squidsvg-endpoint/", "date": "2023-03-16", "cves": ["CVE-2023-24278"], "vendors": ["Squidex"], "researchers": ["Ioannis Christodoulakos"]}, {"url": "https://census-labs.com/news/2022/12/23/multiple-vulnerabilities-in-snipe-it/", "date": "2022-12-23", "cves": ["CVE-2022-44380", "CVE-2022-44381"], "vendors": ["Snipe-IT"], "researchers": ["Charalampos Maraziaris"]}, {"url": "https://census-labs.com/news/2022/05/24/multiple-vulnerabilities-in-radare2/", "date": "2022-05-24", "cves": ["CVE-2022-0419", "CVE-2021-44974", "CVE-2021-44975"], "vendors": ["radare2"], "researchers": ["Angelos T"]}, {"url": "https://census-labs.com/news/2021/04/14/whatsapp-mitd-remote-exploitation-CVE-2021-24027/", "date": "2021-04-14", "cves": ["CVE-2021-24027", "CVE-2020-6516"], "vendors": ["devices remains quite large"], "researchers": ["Chariton Karamitas"]}, {"url": "https://census-labs.com/news/2020/10/21/microchip-cryptoauthlib-atcab_sign_base-buffer-overflow/", "date": "2020-10-21", "cves": ["CVE-2019-16128"], "vendors": ["cryptoauthlib"], "researchers": ["George Poulios"]}, {"url": "https://census-labs.com/news/2020/10/21/microchip-cryptoauthlib-atcab_genkey_base-buffer-overflow/", "date": "2020-10-21", "cves": ["CVE-2019-16129"], "vendors": ["cryptoauthlib"], "researchers": ["George Poulios"]}, {"url": "https://census-labs.com/news/2020/10/21/microchip-asf4-integer-overflows-in-flash_read-flash_write-and-flash_append/", "date": "2020-10-21", "cves": ["CVE-2019-16127"], "vendors": ["ASF4"], "researchers": ["George Poulios"]}, {"url": "https://census-labs.com/news/2020/10/08/samsung-hypervisor-rkp-arbitrary-zero-write/", "date": "2020-10-08", "cves": ["CVE-2019-19273"], "vendors": ["Samsung"], "researchers": ["Aris Thallas"]}, {"url": "https://census-labs.com/news/2020/01/31/multiple-null-pointer-dereference-vulnerabilities-in-newlib/", "date": "2020-01-31", "cves": ["CVE-2019-14871", "CVE-2019-14872", "CVE-2019-14873", "CVE-2019-14874", "CVE-2019-14875", "CVE-2019-14876", "CVE-2019-14877", "CVE-2019-14878"], "vendors": ["newlib"], "researchers": ["Census"]}, {"url": "https://census-labs.com/news/2016/07/25/android-stagefright-impeg2d_vld_decode-stack-buffer-overflows/", "date": "2016-07-25", "cves": ["CVE-2016-0836"], "vendors": ["Android"], "researchers": ["Anestis Bechtsoudis"]}, {"url": "https://census-labs.com/news/2016/07/22/android-stagefright-impeg2d_dec_pic_data_thread-overflow/", "date": "2016-07-22", "cves": ["CVE-2016-0835"], "vendors": ["Android"], "researchers": ["Anestis Bechtsoudis"]}, {"url": "https://census-labs.com/news/2016/05/04/libstagefright-ih264d-read-mmco-commands-overflow/", "date": "2016-05-04", "cves": ["CVE-2016-0842"], "vendors": ["Android"], "researchers": ["Anestis Bechtsoudis"]}, {"url": "https://census-labs.com/news/2016/03/30/kamailio-seas-heap-overflow/", "date": "2016-03-30", "cves": ["CVE-2016-2385"], "vendors": ["Kamailio"], "researchers": ["Stelios Tsampas"]}, {"url": "https://census-labs.com/news/2016/03/23/libstagefright-mpeg2-heap-overflow/", "date": "2016-03-23", "cves": ["CVE-2016-0824"], "vendors": ["Android"], "researchers": ["Anestis Bechtsoudis"]}, {"url": "https://census-labs.com/news/2016/03/23/libstagefright-ih264d-heap-overflow/", "date": "2016-03-23", "cves": ["CVE-2016-0816"], "vendors": ["Android"], "researchers": ["Anestis Bechtsoudis"]}, {"url": "https://census-labs.com/news/2016/01/11/gdcm-buffer-overflow-imageregionreaderreadintobuffer/", "date": "2016-01-11", "cves": ["CVE-2015-8396"], "vendors": ["Applications"], "researchers": ["Stelios Tsampas"]}, {"url": "https://census-labs.com/news/2012/01/03/linux-kernel-heap-exploitation/", "date": "2012-01-03", "cves": ["CVE-2004-0424", "CVE-2009-1046", "CVE-2010-2959"], "vendors": [], "researchers": ["Patroklos Argyroudis"]}, {"url": "https://census-labs.com/news/2010/04/26/kernel-exploitation-mitigations/", "date": "2010-04-26", "cves": ["CVE-2008-3531"], "vendors": [], "researchers": ["Patroklos Argyroudis"]}, {"url": "https://census-labs.com/news/2009/07/02/cve-2008-3531-exploit/", "date": "2009-07-02", "cves": ["CVE-2008-3531"], "vendors": [], "researchers": ["Patroklos Argyroudis"]}]}, {"lab": "Claroty Team82", "url": "https://claroty.com/team82/disclosure-dashboard", "A": 760, "Q": 758, "V": 146, "R": 0, "researchers": [], "vendors": [{"name": "Siemens", "count": 48}, {"name": "Schneider Electric", "count": 42}, {"name": "Rockwell Automation", "count": 38}, {"name": "Copeland", "count": 23}, {"name": "Emerson", "count": 18}, {"name": "Algo", "count": 18}, {"name": "AUVESY", "count": 17}, {"name": "Softing", "count": 14}, {"name": "Busybox", "count": 14}, {"name": "AVEVA", "count": 13}, {"name": "Akuvox", "count": 13}, {"name": "Moxa", "count": 12}, {"name": "Dataprobe", "count": 12}, {"name": "Snap One", "count": 12}, {"name": "Carlo Gavazzi", "count": 11}, {"name": "GE", "count": 10}, {"name": "Unitronics", "count": 10}, {"name": "Ruijie", "count": 10}, {"name": "ABB", "count": 9}, {"name": "Triangle MicroWorks", "count": 9}, {"name": "CyberPower", "count": 9}, {"name": "Ruckus Networks", "count": 9}, {"name": "Teltonika Networks", "count": 8}, {"name": "ConnectedIO", "count": 8}, {"name": "ZKTeco", "count": 8}, {"name": "MDT", "count": 7}, {"name": "Honeywell", "count": 7}, {"name": "Airspan Networks", "count": 7}, {"name": "Cambium Networks", "count": 7}, {"name": "Synology", "count": 7}, {"name": "EisBaer", "count": 7}, {"name": "Rapid", "count": 7}, {"name": "Ovarro", "count": 6}, {"name": "Eaton", "count": 6}, {"name": "MachineSense", "count": 6}, {"name": "MileSight", "count": 6}, {"name": "Optigo Networks", "count": 6}, {"name": "Samsung", "count": 6}, {"name": "Johnson Controls", "count": 6}, {"name": "Roche Diagnostics", "count": 5}, {"name": "B&R", "count": 5}, {"name": "Opto22", "count": 5}, {"name": "WAGO", "count": 5}, {"name": "Wibu-Systems", "count": 5}, {"name": "FANUC", "count": 5}, {"name": "Wireshark", "count": 5}, {"name": "Western Digital", "count": 5}, {"name": "OPC Foundation", "count": 5}, {"name": "Netgear", "count": 5}, {"name": "Xibo", "count": 5}, {"name": "Control ID", "count": 5}, {"name": "CyberData", "count": 5}, {"name": "Metz Connect", "count": 5}, {"name": "Zenitel", "count": 5}, {"name": "Inductive Automation", "count": 4}, {"name": "Secomea", "count": 4}, {"name": "Matrikon Honeywell", "count": 4}, {"name": "EIPStackGroup", "count": 4}, {"name": "AzeoTech", "count": 4}, {"name": "PTC", "count": 4}, {"name": "MZ Automation", "count": 4}, {"name": "Suprema", "count": 4}, {"name": "TP-Link", "count": 4}, {"name": "AutomationDirect", "count": 4}, {"name": "Aiphone", "count": 4}, {"name": "2N", "count": 4}, {"name": "Elvaco", "count": 4}, {"name": "AXIS", "count": 4}, {"name": "Philips", "count": 3}, {"name": "B&R Automation", "count": 3}, {"name": "Mitsubishi Electric", "count": 3}, {"name": "PTC Kepware", "count": 3}, {"name": "3S CODESYS", "count": 3}, {"name": "SICK", "count": 3}, {"name": "OFFIS", "count": 3}, {"name": "node-opcua", "count": 3}, {"name": "ICONICS", "count": 3}, {"name": "LenelS2", "count": 3}, {"name": "Planet Technology", "count": 3}, {"name": "Danfoss", "count": 3}, {"name": "Microsens", "count": 3}, {"name": "ControlID", "count": 3}, {"name": "GE Digital", "count": 2}, {"name": "KUKA", "count": 2}, {"name": "Phoenix Contact", "count": 2}, {"name": "Horner Automation", "count": 2}, {"name": "Hillrom", "count": 2}, {"name": "Belledonne Communications", "count": 2}, {"name": "MB Connect Line", "count": 2}, {"name": "XINJE", "count": 2}, {"name": "Fuji Electric", "count": 2}, {"name": "WIN-911", "count": 2}, {"name": "ASNeG OpcUaStack", "count": 2}, {"name": "OPC UA Rust", "count": 2}, {"name": "FileWave", "count": 2}, {"name": "TapHome", "count": 2}, {"name": "ROZCOM", "count": 2}, {"name": "Walchem", "count": 2}, {"name": "Synel", "count": 2}, {"name": "Softneta", "count": 2}, {"name": "Red Lion", "count": 2}, {"name": "X-Rite", "count": 2}, {"name": "OvrC", "count": 2}, {"name": "Aveva", "count": 2}, {"name": "New Rock Technologies", "count": 2}, {"name": "Mitsubishi Electric Europe B.V", "count": 2}, {"name": "Vertiv", "count": 2}, {"name": "EnOcean", "count": 2}, {"name": "and user market about the importance of secure deve", "count": 1}, {"name": "Iconics", "count": 1}, {"name": "HMS Networks", "count": 1}, {"name": "WIBU-Systems", "count": 1}, {"name": "Real Time Automation", "count": 1}, {"name": "Becton, Dickinson and Co", "count": 1}, {"name": "Host Engineering", "count": 1}, {"name": "Cassia Networks", "count": 1}, {"name": "Flask-Security", "count": 1}, {"name": "Flask-Unchained", "count": 1}, {"name": "Flask", "count": 1}, {"name": "PerFact", "count": 1}, {"name": "option, leading to denial-of-service conditions", "count": 1}, {"name": "SIemens", "count": 1}, {"name": "AntiSIP", "count": 1}, {"name": "Flask-Security-Too", "count": 1}, {"name": "Cognex", "count": 1}, {"name": "xArrow", "count": 1}, {"name": "Splunk", "count": 1}, {"name": "Softing Industrial Automation", "count": 1}, {"name": "Cisco", "count": 1}, {"name": "CODESYS", "count": 1}, {"name": "FreeOPCUA", "count": 1}, {"name": "opcua-asyncio", "count": 1}, {"name": "open62541", "count": 1}, {"name": "Eclipse", "count": 1}, {"name": "Cradlepoint", "count": 1}, {"name": "RoboDK", "count": 1}, {"name": "Meinberg", "count": 1}, {"name": "Unified Automation", "count": 1}, {"name": "Crestron", "count": 1}, {"name": "Orthanc", "count": 1}, {"name": "Measuresoft", "count": 1}, {"name": "Medixant", "count": 1}, {"name": "MicroDicom", "count": 1}, {"name": "Contec", "count": 1}, {"name": "IDIS", "count": 1}, {"name": "BlueStacks", "count": 1}], "advisories": [{"url": "https://claroty.com/team82/blog/industrial-safety-reliability-one-cve-at-a-time", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["and user market about the importance of secure deve"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-10597", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10597"], "vendors": ["Philips"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-10599", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10599"], "vendors": ["Philips"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-10601", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10601"], "vendors": ["Philips"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-18561", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-18561"], "vendors": ["Roche Diagnostics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-18562", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-18562"], "vendors": ["Roche Diagnostics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-18563", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-18563"], "vendors": ["Roche Diagnostics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-18564", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-18564"], "vendors": ["Roche Diagnostics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2018-18565", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-18565"], "vendors": ["Roche Diagnostics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-13554", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-13554"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-13559", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-13559"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-13921", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-13921"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-18243", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-18243"], "vendors": ["GE Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-18255", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-18255"], "vendors": ["GE Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-19100-cve-2019-19101-cve-2019-19102", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19100"], "vendors": ["B&R"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-19101", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19101"], "vendors": ["B&R Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-19102", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19102"], "vendors": ["B&R Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-19108", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19108"], "vendors": ["B&R"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-19279", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19279"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-6820", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-6820"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2019-6834", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-6834"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10291cve-2020-10292", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10291"], "vendors": ["KUKA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10292", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10292"], "vendors": ["KUKA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10612", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10612"], "vendors": ["Opto22"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10616", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10616"], "vendors": ["Opto22"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10620", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10620"], "vendors": ["Opto22"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10641", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10641"], "vendors": ["Inductive Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-10939", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10939"], "vendors": ["Phoenix Contact"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-11999-cve-2020-12001-cve-2020-12003-cve-2020-12005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-11999"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12001"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12003"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12005"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12015"], "vendors": ["Iconics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12025"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12033", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12033"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12034-cve-2020-12038", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12034"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12038", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12038"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12042-cve-2020-12046-cve-2020-10612-cve-2020-10616-cve-2020-10620", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12042"], "vendors": ["Opto22"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12046", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12046"], "vendors": ["Opto22"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12499", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12499"], "vendors": ["Phoenix Contact"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-12522", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12522"], "vendors": ["WAGO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14496", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14496"], "vendors": ["Mitsubishi Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14498", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14498"], "vendors": ["HMS Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14500", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14500"], "vendors": ["Secomea"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14508", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14508"], "vendors": ["Secomea"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14509cve-2020-14517cve-2020-14519cve-2020-14515cve-2020-14513cve-2020-16233", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14509"], "vendors": ["WIBU-Systems"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14510", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14510"], "vendors": ["Secomea"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14511", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14511"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14512", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14512"], "vendors": ["Secomea"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14513", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14513"], "vendors": ["Wibu-Systems"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14515", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14515"], "vendors": ["Wibu-Systems"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14517", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14517"], "vendors": ["Wibu-Systems"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14519", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14519"], "vendors": ["Wibu-Systems"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14520", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14520"], "vendors": ["Inductive Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14521", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14521"], "vendors": ["Mitsubishi Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14522", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14522"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14523", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14523"], "vendors": ["Mitsubishi Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-14524cve-2020-14522", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14524"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-15782", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-15782"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-16233", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16233"], "vendors": ["Wibu-Systems"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-25159", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25159"], "vendors": ["Real Time Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-25165", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25165"], "vendors": ["Becton, Dickinson and Co"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-25195", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25195"], "vendors": ["Host Engineering"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-25243", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25243"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-25244", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25244"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27251", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27251"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27253cve-2020-27251cve-2020-27255", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27253"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27255", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27255"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27263", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27263"], "vendors": ["PTC Kepware"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27265cve-2020-27263cve-2020-27267", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27265"], "vendors": ["PTC Kepware"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27267", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27267"], "vendors": ["PTC Kepware"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27274", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27274"], "vendors": ["Matrikon Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27295", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27295"], "vendors": ["Matrikon Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27297cve-2020-27299cve-2020-27295", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27297"], "vendors": ["Matrikon Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-27299", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27299"], "vendors": ["Matrikon Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-28214", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-28214"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-6992", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-6992"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7494-cve-2020-7495-cve-2020-7496", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7494"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7495", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7495"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7496", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7496"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7520", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7520"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7528cve-2020-7529cve-2020-7530cve-2020-7531cve-2020-7532", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7528"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7529", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7529"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7530", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7530"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7531", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7531"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7532", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7532"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7565-cve-2020-7566-cve-2020-7567-cve-2020-7568cve-2020-28214", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7565"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7566", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7566"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7567", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7567"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7568", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7568"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2020-7586", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7586"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-03554", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-03554"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-10073", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-10073"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22280", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22280"], "vendors": ["B&R"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22281", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22281"], "vendors": ["B&R"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22282", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22282"], "vendors": ["B&R"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22289", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22289"], "vendors": ["B&R Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22439", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22439"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22640", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22640"], "vendors": ["Ovarro"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22642", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22642"], "vendors": ["Ovarro"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22644", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22644"], "vendors": ["Ovarro"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22646", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22646"], "vendors": ["Ovarro"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22648", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22648"], "vendors": ["Ovarro"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22650", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22650"], "vendors": ["Ovarro"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22665", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22665"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22678", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22678"], "vendors": ["Horner Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22681", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22681"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22682", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22682"], "vendors": ["Horner Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22685", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22685"], "vendors": ["Cassia Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22713", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22713"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22714", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22714"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22732", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22732"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22733", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22733"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22734", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22734"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22735", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22735"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22736", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22736"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22737", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22737"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22738", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22738"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22739", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22739"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22740", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22740"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22777", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22777"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-22817", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-22817"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23276", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23276"], "vendors": ["Eaton"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23277", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23277"], "vendors": ["Eaton"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23278", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23278"], "vendors": ["Eaton"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23279", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23279"], "vendors": ["Eaton"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23280", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23280"], "vendors": ["Eaton"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23281", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23281"], "vendors": ["Eaton"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23385", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23385"], "vendors": ["Flask-Security"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23393", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23393"], "vendors": ["Flask-Unchained"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-23401", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-23401"], "vendors": ["Flask"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-24769", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-24769"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-26264", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26264"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27406", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27406"], "vendors": ["PerFact"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27408", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27408"], "vendors": ["Hillrom"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27410", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27410"], "vendors": ["Hillrom"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27460", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27460"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27462", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27462"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27464", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27464"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27466", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27466"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27468", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27468"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-2747", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-2747"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27470", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27470"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27471", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27471"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27473", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27473"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27474", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27474"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27475", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27475"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27476", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27476"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27478", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27478"], "vendors": ["EIPStackGroup"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27482", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27482"], "vendors": ["EIPStackGroup"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27498", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27498"], "vendors": ["EIPStackGroup"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-27500", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27500"], "vendors": ["EIPStackGroup"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-29238", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-29238"], "vendors": ["3S CODESYS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-29240", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-29240"], "vendors": ["3S CODESYS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-29241", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-29241"], "vendors": ["3S CODESYS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31338", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31338"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31344", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31344"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31345", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31345"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31346", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31346"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31881", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31881"], "vendors": ["option, leading to denial-of-service conditions"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31882", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31882"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31883", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31883"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31884", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31884"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31885", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31885"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31886", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31886"], "vendors": ["SIemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31887", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31887"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31888", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31888"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31889", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31889"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31890", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31890"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-31893", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31893"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32497", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32497"], "vendors": ["SICK"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32498", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32498"], "vendors": ["SICK"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32499", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32499"], "vendors": ["SICK"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32611", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32611"], "vendors": ["AntiSIP"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32618", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32618"], "vendors": ["Flask-Security-Too"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32933", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32933"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32935", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32935"], "vendors": ["Cognex"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32937", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32937"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32945", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32945"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32949", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32949"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-3295", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-3295"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32957", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32957"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32959", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32959"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32961", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32961"], "vendors": ["MDT"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32963", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32963"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32971", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32971"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32977", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32977"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32979", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32979"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32981", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32981"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32985", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32985"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32987", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32987"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-32999", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32999"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33008"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33010"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33025"], "vendors": ["xArrow"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33056", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33056"], "vendors": ["Belledonne Communications"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33526", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33526"], "vendors": ["MB Connect Line"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33527", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33527"], "vendors": ["MB Connect Line"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33721", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33721"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33722", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33722"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33723", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33723"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33724", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33724"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33725", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33725"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33726", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33726"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33727", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33727"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33728", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33728"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33729", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33729"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33730", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33730"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33731", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33731"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33732", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33732"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33733", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33733"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33734", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33734"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33735", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33735"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-33736", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33736"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-3422", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-3422"], "vendors": ["Splunk"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-34566", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34566"], "vendors": ["WAGO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-34567", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34567"], "vendors": ["WAGO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-34568", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34568"], "vendors": ["WAGO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-34569", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34569"], "vendors": ["WAGO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-34605", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34605"], "vendors": ["XINJE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-34606", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34606"], "vendors": ["XINJE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37177", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37177"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37183", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37183"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37190", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37190"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37191", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37191"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37192", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37192"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37193", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37193"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37207", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37207"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37343", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37343"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37344", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37344"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37345", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37345"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37346", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37346"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37347", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37347"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37348", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37348"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37349", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37349"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37350", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37350"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37351", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37351"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37352", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37352"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-37353", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37353"], "vendors": [], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38395", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38395"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38397", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38397"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38399", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38399"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38410", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38410"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38449", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38449"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38451", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38451"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38452", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38452"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38453", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38453"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38454", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38454"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38455", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38455"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38456", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38456"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38457", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38457"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38458", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38458"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38459", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38459"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38460", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38460"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38461", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38461"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38463", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38463"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38465", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38465"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38467", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38467"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38469", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38469"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38471", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38471"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38473", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38473"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38475", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38475"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38477", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38477"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38479", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38479"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-3848", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-3848"], "vendors": ["FANUC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-38481", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38481"], "vendors": ["AUVESY"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-4190", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-4190"], "vendors": ["Wireshark"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42373", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42373"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42374", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42374"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42375", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42375"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42376", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42376"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42377", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42377"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42378", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42378"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42379", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42379"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42380", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42380"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42381", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42381"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42382", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42382"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42383", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42383"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42384", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42384"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42385", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42385"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42386", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42386"], "vendors": ["Busybox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42543", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42543"], "vendors": ["AzeoTech"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42698", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42698"], "vendors": ["AzeoTech"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42699", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42699"], "vendors": ["AzeoTech"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-42701", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42701"], "vendors": ["AzeoTech"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-43933", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-43933"], "vendors": ["FANUC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-43986", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-43986"], "vendors": ["FANUC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-43988", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-43988"], "vendors": ["FANUC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-43990", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-43990"], "vendors": ["FANUC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-44463", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44463"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-44477", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44477"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-81019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-81019"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2021-85337", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-85337"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0138", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0138"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0223", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0223"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0582", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0582"], "vendors": ["Wireshark"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0583", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0583"], "vendors": ["Wireshark"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0585", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0585"], "vendors": ["Wireshark"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0586", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0586"], "vendors": ["Wireshark"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0835", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0835"], "vendors": ["AVEVA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-0902", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0902"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1159", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1159"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1161", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1161"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-124", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Inductive Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1356", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1356"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1357", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1357"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1358", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1358"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1359", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1359"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1360", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1360"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1361", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1361"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1362", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1362"], "vendors": ["Cambium Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1523", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1523"], "vendors": ["Fuji Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1738", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1738"], "vendors": ["Fuji Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-1748", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-1748"], "vendors": ["Softing Industrial Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-20685", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-20685"], "vendors": ["Cisco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21141", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21141"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21143", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21143"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21176", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21176"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2119", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2119"], "vendors": ["OFFIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21196", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21196"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2120", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2120"], "vendors": ["OFFIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21208", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21208"], "vendors": ["node-opcua"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2121", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2121"], "vendors": ["OFFIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21215", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21215"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-21800", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21800"], "vendors": ["Airspan Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22515", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22515"], "vendors": ["CODESYS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22522", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22522"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22523", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22523"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22524", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22524"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22525", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22525"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22526", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22526"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22731", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22731"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-22732", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22732"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-23104", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23104"], "vendors": ["WIN-911"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2332", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2332"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2333", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2333"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-23448", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23448"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-23449", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23449"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-23450", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23450"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-23922", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23922"], "vendors": ["WIN-911"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-24298", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24298"], "vendors": ["FreeOPCUA"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-24375", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24375"], "vendors": ["node-opcua"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-24381", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24381"], "vendors": ["ASNeG OpcUaStack"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2463", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2463"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2464", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2464"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2465", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2465"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25231", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25231"], "vendors": ["node-opcua"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25302", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25302"], "vendors": ["ASNeG OpcUaStack"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25304", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25304"], "vendors": ["opcua-asyncio"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25761", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25761"], "vendors": ["open62541"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25888", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25888"], "vendors": ["OPC UA Rust"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25897", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25897"], "vendors": ["Eclipse"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-25903", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25903"], "vendors": ["OPC UA Rust"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-26507", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-26507"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2788", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2788"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2789", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2789"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2790", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2790"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2791", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2791"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2792", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2792"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2793", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2793"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2825", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2825"], "vendors": ["PTC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2848", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2848"], "vendors": ["PTC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-28811", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28811"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-28812", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28812"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-28813", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28813"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-28814", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28814"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-28815", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28815"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-28816", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28816"], "vendors": ["Carlo Gavazzi"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2970", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2970"], "vendors": ["MZ Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2971", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2971"], "vendors": ["MZ Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2972", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2972"], "vendors": ["MZ Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-2973", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-2973"], "vendors": ["MZ Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-29841", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-29841"], "vendors": ["Western Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-30551", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-30551"], "vendors": ["OPC Foundation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3086", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3086"], "vendors": ["Cradlepoint"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3183", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3183"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3184", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3184"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3185", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3185"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3186", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3186"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3187", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3187"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3188", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3188"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-3189", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3189"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-33317", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-33317"], "vendors": ["ICONICS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-33320", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-33320"], "vendors": ["ICONICS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-33916", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-33916"], "vendors": ["OPC Foundation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-34906", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-34906"], "vendors": ["FileWave"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-34907", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-34907"], "vendors": ["FileWave"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-36327", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36327"], "vendors": ["Western Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-36328", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36328"], "vendors": ["Western Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-36331", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36331"], "vendors": ["Western Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-38138", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-38138"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-38465", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-38465"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-38469", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-38469"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-40264", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-40264"], "vendors": ["ICONICS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-4062", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-4062"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-41666", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41666"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-41667", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41667"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-41668", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41668"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-41669", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41669"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-41670", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41670"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-41671", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41671"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-43494", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-43494"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-46141", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46141"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-46331", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46331"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-46658", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46658"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-46660", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46660"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-46732", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46732"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-46738", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46738"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-47311", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-47311"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-47320", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-47320"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2022-4945", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-4945"], "vendors": ["Dataprobe"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0343", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0343"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0344", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0344"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0345", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0345"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0346", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0346"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0347", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0347"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0348", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0348"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0349", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0349"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0350", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0350"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0351", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0351"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0352", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0352"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0353", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0353"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0354", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0354"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-0355", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0355"], "vendors": ["Akuvox"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-1516", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-1516"], "vendors": ["RoboDK"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-1552", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-1552"], "vendors": ["GE"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-1731", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-1731"], "vendors": ["Meinberg"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-22315", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22315"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-22389", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22389"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-23582", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-23582"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-24020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-24020"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-25183", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-25183"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2586", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2586"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2587", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2587"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2588", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2588"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2637", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2637"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2638", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2638"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2639", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2639"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2729", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2729"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27321", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27321"], "vendors": ["OPC Foundation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27334", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27334"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27335", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27335"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27357", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27357"], "vendors": ["Netgear"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27367", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27367"], "vendors": ["Netgear"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27368", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27368"], "vendors": ["Netgear"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27369", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27369"], "vendors": ["Netgear"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-27370", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27370"], "vendors": ["Netgear"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2759", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2759"], "vendors": ["TapHome"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-2760", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-2760"], "vendors": ["TapHome"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-28386", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28386"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-28412", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28412"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-28649", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28649"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-29377", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-29377"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-29378", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-29378"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31048", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31048"], "vendors": ["OPC Foundation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31184", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31184"], "vendors": ["ROZCOM"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31185", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31185"], "vendors": ["ROZCOM"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31193", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31193"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31240", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31240"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31241", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31241"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-31245", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-31245"], "vendors": ["Snap One"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32172", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32172"], "vendors": ["Unified Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32202", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32202"], "vendors": ["Walchem"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32227", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32227"], "vendors": ["Synel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32346", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32346"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32347", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32347"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32348", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32348"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32349", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32349"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32350", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32350"], "vendors": ["Teltonika Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-32787", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-32787"], "vendors": ["OPC Foundation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33177", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33177"], "vendors": ["Xibo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33178", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33178"], "vendors": ["Xibo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33179", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33179"], "vendors": ["Xibo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33180", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33180"], "vendors": ["Xibo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33181", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33181"], "vendors": ["Xibo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-3321", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-3321"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-3322", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-3322"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-3323", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-3323"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-3324", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-3324"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33363", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33363"], "vendors": ["Suprema"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33364", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33364"], "vendors": ["Suprema"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33365", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33365"], "vendors": ["Suprema"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33366", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33366"], "vendors": ["Suprema"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33367", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33367"], "vendors": ["Control ID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33368", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33368"], "vendors": ["Control ID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33369", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33369"], "vendors": ["Control ID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33370", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33370"], "vendors": ["Control ID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33371", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33371"], "vendors": ["Control ID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33372", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33372"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33373", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33373"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33374", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33374"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33375", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33375"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33376", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33376"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33377", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33377"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33378", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33378"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-33379", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33379"], "vendors": ["ConnectedIO"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-37213", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-37213"], "vendors": ["Synel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38125", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38125"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38126", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38126"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-3825", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-3825"], "vendors": ["PTC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38422", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38422"], "vendors": ["Walchem"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38949", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38949"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38950", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38950"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38951", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38951"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38952", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38952"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38954", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38954"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38955", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38955"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38956", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38956"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-38958", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38958"], "vendors": ["ZKTeco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39227", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39227"], "vendors": ["Softneta"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39457", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39457"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39460", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39460"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39461", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39461"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39462", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39462"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39465", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39465"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39466", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39466"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39467", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39467"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39468", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39468"], "vendors": ["Triangle MicroWorks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39477", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39477"], "vendors": ["Inductive Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39478", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39478"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39479", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39479"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39480", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39480"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39481", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39481"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39482", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39482"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39979", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39979"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39980", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39980"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-39981", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39981"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-40150", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-40150"], "vendors": ["Softneta"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-40151", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-40151"], "vendors": ["Red Lion"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-41738", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-41738"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-41739", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-41739"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-41740", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-41740"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-41741", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-41741"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42488", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42488"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42489", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42489"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42490", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42490"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42491", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42491"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42492", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42492"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42493", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42493"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42494", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42494"], "vendors": ["EisBaer"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-42770", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42770"], "vendors": ["Red Lion"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-43609", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-43609"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-46687", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-46687"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-46706", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-46706"], "vendors": ["MachineSense"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-47867", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-47867"], "vendors": ["MachineSense"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-49115", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49115"], "vendors": ["MachineSense"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-49610", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49610"], "vendors": ["MachineSense"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-49617", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49617"], "vendors": ["MachineSense"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-49716", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49716"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-49899", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49899"], "vendors": ["X-Rite"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-49900", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49900"], "vendors": ["X-Rite"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-51761", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-51761"], "vendors": ["Emerson"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-5389", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-5389"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-5390", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-5390"], "vendors": ["Honeywell"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-6221", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-6221"], "vendors": ["MachineSense"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-6926", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-6926"], "vendors": ["Crestron"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2023-7238", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-7238"], "vendors": ["Orthanc"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-0860", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-0860"], "vendors": ["Softing"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-1180", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-1180"], "vendors": ["TP-Link"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-12371", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-12371"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-12372", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-12372"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-12373", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-12373"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-21473", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-21473"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-21764", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-21764"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-21794", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-21794"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-21852", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-21852"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-21866", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-21866"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-21869", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-21869"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-22016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-22016"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-22096", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-22096"], "vendors": ["Rapid"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-22170", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-22170"], "vendors": ["Western Digital"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-2420", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-2420"], "vendors": ["LenelS2"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-2421", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-2421"], "vendors": ["LenelS2"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-2422", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-2422"], "vendors": ["LenelS2"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-25136", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-25136"], "vendors": ["AutomationDirect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-25137", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-25137"], "vendors": ["AutomationDirect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-25138", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-25138"], "vendors": ["AutomationDirect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27767", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27767"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27768", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27768"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27769", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27769"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27770", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27770"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27771", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27771"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27772", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27772"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27773", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27773"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27774", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27774"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-27776", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-27776"], "vendors": ["MileSight"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-31408", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31408"], "vendors": ["Aiphone"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-31409", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31409"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-31410", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31410"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-31856", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31856"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-32042", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-32042"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-32047", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-32047"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-32053", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-32053"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-33615", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-33615"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-33625", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-33625"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-34025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-34025"], "vendors": ["CyberPower"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-36388", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-36388"], "vendors": ["MileSight"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-36389", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-36389"], "vendors": ["MileSight"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-36390", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-36390"], "vendors": ["MileSight"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-36391", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-36391"], "vendors": ["MileSight"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-36392", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-36392"], "vendors": ["MileSight"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-3746", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-3746"], "vendors": ["Measuresoft"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-38434", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-38434"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-38435", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-38435"], "vendors": ["Unitronics"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-39290", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-39290"], "vendors": ["Aiphone"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-39348", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-39348"], "vendors": ["Synology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-41925", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-41925"], "vendors": ["Optigo Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-42494", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-42494"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-45367", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-45367"], "vendors": ["Optigo Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-45722", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-45722"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-45837", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-45837"], "vendors": ["Aiphone"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-46874", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-46874"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47043", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47043"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47142", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47142"], "vendors": ["Aiphone"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47146", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47146"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47253", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47253"], "vendors": ["2N"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47254", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47254"], "vendors": ["2N"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47255", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47255"], "vendors": ["2N"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47256", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47256"], "vendors": ["2N"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47547", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47547"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-47791", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-47791"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-48871", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-48871"], "vendors": ["Planet Technology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-48874", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-48874"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-49396", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-49396"], "vendors": ["Elvaco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-49397", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-49397"], "vendors": ["Elvaco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-49398", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-49398"], "vendors": ["Elvaco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-49399", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-49399"], "vendors": ["Elvaco"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-50380", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-50380"], "vendors": ["OvrC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-50381", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-50381"], "vendors": ["OvrC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-51727", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-51727"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-52320", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-52320"], "vendors": ["Planet Technology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-52324", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-52324"], "vendors": ["Ruijie"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-5242", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-5242"], "vendors": ["TP-Link"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-5243", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-5243"], "vendors": ["TP-Link"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-5244", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-5244"], "vendors": ["TP-Link"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-52558", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-52558"], "vendors": ["Planet Technology"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-5557", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-5557"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-5558", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-5558"], "vendors": ["Schneider Electric"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6098", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6098"], "vendors": ["PTC"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6242", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6242"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6618", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6618"], "vendors": ["Aveva"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6619", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6619"], "vendors": ["Aveva"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6785", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6785"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6786", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6786"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-6787", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6787"], "vendors": ["Moxa"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2024-7847", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-7847"], "vendors": ["Rockwell Automation"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-0430", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-0430"], "vendors": ["Belledonne Communications"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-0680", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-0680"], "vendors": ["New Rock Technologies"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-0681", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-0681"], "vendors": ["New Rock Technologies"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-0960", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-0960"], "vendors": ["AutomationDirect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-1001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-1001"], "vendors": ["Medixant"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-1002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-1002"], "vendors": ["MicroDicom"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-1204", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-1204"], "vendors": ["Contec"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-12556", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-12556"], "vendors": ["IDIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-2079", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-2079"], "vendors": ["Optigo Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-2080", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-2080"], "vendors": ["Optigo Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-2081", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-2081"], "vendors": ["Optigo Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-26468", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-26468"], "vendors": ["CyberData"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30023"], "vendors": ["AXIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30024"], "vendors": ["AXIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30025"], "vendors": ["AXIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30026"], "vendors": ["AXIS"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30034", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30034"], "vendors": ["Siemens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30183", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30183"], "vendors": ["CyberData"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30184", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30184"], "vendors": ["CyberData"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30507", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30507"], "vendors": ["CyberData"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-30515", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-30515"], "vendors": ["CyberData"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-3128", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3128"], "vendors": ["Mitsubishi Electric Europe B.V"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-3232", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3232"], "vendors": ["Mitsubishi Electric Europe B.V"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-4041", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-4041"], "vendors": ["Optigo Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41426", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41426"], "vendors": ["Vertiv"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41450", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41450"], "vendors": ["Danfoss"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41451", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41451"], "vendors": ["Danfoss"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41452", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41452"], "vendors": ["Danfoss"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41733", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41733"], "vendors": ["Metz Connect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41734", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41734"], "vendors": ["Metz Connect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41735", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41735"], "vendors": ["Metz Connect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41736", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41736"], "vendors": ["Metz Connect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-41737", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-41737"], "vendors": ["Metz Connect"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44954", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44954"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44955", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44955"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44957", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44957"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44958", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44958"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44960", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44960"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44961", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44961"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44962", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44962"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44963", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44963"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-44964", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-44964"], "vendors": ["BlueStacks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-46412", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-46412"], "vendors": ["Vertiv"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-49151", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49151"], "vendors": ["Microsens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-49152", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49152"], "vendors": ["Microsens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-49153", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49153"], "vendors": ["Microsens"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-49851", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49851"], "vendors": ["ControlID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-49852", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49852"], "vendors": ["ControlID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-49853", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49853"], "vendors": ["ControlID"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-53077", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53077"], "vendors": ["Samsung"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-53078", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53078"], "vendors": ["Samsung"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-53079", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53079"], "vendors": ["Samsung"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-53080", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53080"], "vendors": ["Samsung"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-53081", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53081"], "vendors": ["Samsung"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-53082", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53082"], "vendors": ["Samsung"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-6071", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6071"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-6072", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6072"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-6073", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6073"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-6074", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6074"], "vendors": ["ABB"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-6243", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6243"], "vendors": ["Ruckus Networks"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-64126", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-64126"], "vendors": ["Zenitel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-64127", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-64127"], "vendors": ["Zenitel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-64128", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-64128"], "vendors": ["Zenitel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-64129", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-64129"], "vendors": ["Zenitel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2025-64130", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-64130"], "vendors": ["Zenitel"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0779", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0779"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0780", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0780"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0781", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0781"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0782", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0782"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0783", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0783"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0784", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0784"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0785", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0785"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0786", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0786"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0787", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0787"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0788", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0788"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0789", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0789"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0790", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0790"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0791", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0791"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0792", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0792"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0793", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0793"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0794", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0794"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0795", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0795"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-0796", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-0796"], "vendors": ["Algo"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-20742", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20742"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-20761", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20761"], "vendors": ["EnOcean"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-20764", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20764"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-20797", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20797"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-20902", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20902"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-20910", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20910"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21389", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21389"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21654", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21654"], "vendors": ["Johnson Controls"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21656", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21656"], "vendors": ["Johnson Controls"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21657", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21657"], "vendors": ["Johnson Controls"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21658", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21658"], "vendors": ["Johnson Controls"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21659", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21659"], "vendors": ["Johnson Controls"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21660", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21660"], "vendors": ["Johnson Controls"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-21718", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21718"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-22877", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-22877"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-22885", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-22885"], "vendors": ["EnOcean"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-23702", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-23702"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-24452", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-24452"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-24517", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-24517"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-24663", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-24663"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-24689", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-24689"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-24695", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-24695"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25037", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25037"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25085", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25085"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25105", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25105"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25109", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25109"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25111", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25111"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25195", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25195"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25196", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25196"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-25721", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25721"], "vendors": ["Copeland"], "researchers": []}, {"url": "https://claroty.com/team82/disclosure-dashboard/cve-2026-3037", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-3037"], "vendors": ["Copeland"], "researchers": []}]}, {"lab": "Core Security Core Labs", "url": "https://www.coresecurity.com/core-labs/advisories", "A": 0, "Q": 0, "V": 0, "R": 0, "researchers": [], "vendors": [], "advisories": []}, {"lab": "Core Security", "url": "https://www.coresecurity.com/core-labs/advisories", "A": 0, "Q": 0, "V": 0, "R": 0, "researchers": [], "vendors": [], "advisories": []}, {"lab": "CyberArk Labs", "url": "https://labs.cyberark.com/cyberark-labs-security-advisories/", "A": 119, "Q": 119, "V": 54, "R": 17, "researchers": [{"name": "Eran Shimony", "count": 60}, {"name": "Eviatar Gerzi", "count": 22}, {"name": "Nimrod Stoler", "count": 9}, {"name": "Tal Lossos", "count": 6}, {"name": "Niv Levy", "count": 5}, {"name": "Omer Tsarfati", "count": 4}, {"name": "Ido Hoorvitch", "count": 3}, {"name": "Shaked Reiner", "count": 1}, {"name": "Alon Zahavi / Tal Lossos", "count": 1}, {"name": "Alon Zahavi", "count": 1}, {"name": "Mark CherpEran Shimony", "count": 1}, {"name": "Nir Chako", "count": 1}, {"name": "Emmanuel Ouanounou", "count": 1}, {"name": "Gilad Reti", "count": 1}, {"name": "Assaf Sion", "count": 1}, {"name": "or ida", "count": 1}, {"name": "Nethanel Coppenhagen", "count": 1}], "vendors": [{"name": "Intel", "count": 11}, {"name": "Microsoft", "count": 8}, {"name": "Docker", "count": 7}, {"name": "Dell", "count": 7}, {"name": "Blue Prism", "count": 6}, {"name": "Lenovo", "count": 5}, {"name": "Kaspersky", "count": 4}, {"name": "Nvidia", "count": 3}, {"name": "OpenRazer", "count": 3}, {"name": "Huawei", "count": 3}, {"name": "Schneider Electric", "count": 3}, {"name": "LG", "count": 3}, {"name": "Palo Alto", "count": 3}, {"name": "CloudBees", "count": 3}, {"name": "Adobe", "count": 3}, {"name": "Netsarang", "count": 2}, {"name": "Realtek", "count": 2}, {"name": "EmTec Innovative", "count": 2}, {"name": "Thomas Wolff", "count": 2}, {"name": "Simon Tatham", "count": 2}, {"name": "McAffe", "count": 2}, {"name": "Pulse Secure", "count": 2}, {"name": "TrendMicro", "count": 2}, {"name": "Hyperledge", "count": 1}, {"name": "Linux Kernel – NTFS", "count": 1}, {"name": "Linux Kernel – NVME", "count": 1}, {"name": "EVGA", "count": 1}, {"name": "MSI", "count": 1}, {"name": "TIBCO", "count": 1}, {"name": "LiquidPixels", "count": 1}, {"name": "Razer", "count": 1}, {"name": "Linux", "count": 1}, {"name": "Trend Micro", "count": 1}, {"name": "Microsft", "count": 1}, {"name": "IBM", "count": 1}, {"name": "William Taur Mobatek", "count": 1}, {"name": "Tigera", "count": 1}, {"name": "Chirpstack", "count": 1}, {"name": "Canonical", "count": 1}, {"name": "Vmware", "count": 1}, {"name": "Python \\ DUO", "count": 1}, {"name": "FFmpeg", "count": 1}, {"name": "Avira", "count": 1}, {"name": "Foxit", "count": 1}, {"name": "Facebook", "count": 1}, {"name": "Fortient", "count": 1}, {"name": "Western Digital", "count": 1}, {"name": "CheckPoint", "count": 1}, {"name": "DUO SECURITY", "count": 1}, {"name": "Symantec", "count": 1}, {"name": "HP", "count": 1}, {"name": "Checkpoint", "count": 1}, {"name": "Samsung", "count": 1}, {"name": "Elastic", "count": 1}], "advisories": [{"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-4842", "date": "2022-12-29", "cves": ["CVE-2022-4842"], "vendors": ["Linux Kernel – NTFS"], "researchers": ["Alon Zahavi / Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-31020", "date": "2022-10-02", "cves": ["CVE-2022-31020"], "vendors": ["Hyperledge"], "researchers": ["Shaked Reiner"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-36116", "date": "2022-08-12", "cves": ["CVE-2022-36116"], "vendors": ["Blue Prism"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-36115", "date": "2022-08-12", "cves": ["CVE-2022-36115"], "vendors": ["Blue Prism"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-36118", "date": "2022-08-12", "cves": ["CVE-2022-36118"], "vendors": ["Blue Prism"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-36117", "date": "2022-08-12", "cves": ["CVE-2022-36117"], "vendors": ["Blue Prism"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-36662", "date": "2022-08-12", "cves": ["CVE-2022-36662"], "vendors": ["Blue Prism"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-36120", "date": "2022-08-12", "cves": ["CVE-2022-36120"], "vendors": ["Blue Prism"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-0122", "date": "2022-08-02", "cves": ["CVE-2022-0122"], "vendors": ["Linux Kernel – NVME"], "researchers": ["Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-34682", "date": "2022-08-02", "cves": ["CVE-2022-34682"], "vendors": ["Nvidia"], "researchers": ["Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-31615", "date": "2022-08-02", "cves": ["CVE-2022-31615"], "vendors": ["Nvidia"], "researchers": ["Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-30346", "date": "2022-05-26", "cves": ["CVE-2022-30346"], "vendors": ["MSI"], "researchers": ["Omer Tsarfati"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-34292", "date": "2022-05-25", "cves": ["CVE-2022-34292"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-31647", "date": "2022-05-25", "cves": ["CVE-2022-31647"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-29023", "date": "2022-05-20", "cves": ["CVE-2022-29023"], "vendors": ["OpenRazer"], "researchers": ["Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-29022", "date": "2022-05-20", "cves": ["CVE-2022-29022"], "vendors": ["OpenRazer"], "researchers": ["Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-29021", "date": "2022-05-20", "cves": ["CVE-2022-29021"], "vendors": ["OpenRazer"], "researchers": ["Tal Lossos"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-44903", "date": "2022-05-11", "cves": ["CVE-2022-44903"], "vendors": ["EVGA"], "researchers": ["Omer Tsarfati"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-22774", "date": "2022-05-10", "cves": ["CVE-2022-22774"], "vendors": ["TIBCO"], "researchers": ["Niv Levy"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-28547", "date": "2022-03-30", "cves": ["CVE-2022-28547"], "vendors": ["LiquidPixels"], "researchers": ["Niv Levy"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-38730", "date": "2022-03-07", "cves": ["CVE-2022-38730"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-37326", "date": "2022-03-07", "cves": ["CVE-2022-37326"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-25637", "date": "2022-02-17", "cves": ["CVE-2022-25637"], "vendors": ["Razer"], "researchers": ["Omer Tsarfati"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-25365", "date": "2022-02-02", "cves": ["CVE-2022-25365"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2022-23774", "date": "2022-01-25", "cves": ["CVE-2022-23774"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-3847", "date": "2021-10-14", "cves": ["CVE-2021-3847"], "vendors": ["Linux"], "researchers": ["Alon Zahavi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-37326", "date": "2021-10-06", "cves": ["CVE-2021-37326"], "vendors": ["Netsarang"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-40332", "date": "2021-08-31", "cves": ["CVE-2021-40332"], "vendors": ["Realtek"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-40328", "date": "2021-08-30", "cves": ["CVE-2021-40328"], "vendors": ["Realtek"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-0160", "date": "2021-08-10", "cves": ["CVE-2021-0160"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-34466", "date": "2021-07-13", "cves": ["CVE-2021-34466"], "vendors": ["Microsoft"], "researchers": ["Omer Tsarfati"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-32460", "date": "2021-05-26", "cves": ["CVE-2021-32460"], "vendors": ["Trend Micro"], "researchers": ["Mark CherpEran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-32198", "date": "2021-05-03", "cves": ["CVE-2021-32198"], "vendors": ["EmTec Innovative"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-0120", "date": "2021-03-23", "cves": ["CVE-2021-0120"], "vendors": ["Microsft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-42095", "date": "2021-03-14", "cves": ["CVE-2021-42095"], "vendors": ["Netsarang"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-40147", "date": "2021-03-14", "cves": ["CVE-2021-40147"], "vendors": ["EmTec Innovative"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-31701", "date": "2021-03-11", "cves": ["CVE-2021-31701"], "vendors": ["Thomas Wolff"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-4717", "date": "2021-03-09", "cves": ["CVE-2021-4717"], "vendors": ["IBM"], "researchers": ["Ido Hoorvitch"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-28847", "date": "2021-02-26", "cves": ["CVE-2021-28847"], "vendors": ["William Taur Mobatek"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-26928", "date": "2021-02-15", "cves": ["CVE-2021-26928"], "vendors": ["Tigera"], "researchers": ["Nir Chako"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-28848", "date": "2021-02-10", "cves": ["CVE-2021-28848"], "vendors": ["Thomas Wolff"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-33500", "date": "2021-02-08", "cves": ["CVE-2021-33500"], "vendors": ["Simon Tatham"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-26940", "date": "2021-02-08", "cves": ["CVE-2021-26940"], "vendors": ["Simon Tatham"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2021-1704", "date": "2021-01-12", "cves": ["CVE-2021-1704"], "vendors": ["Microsoft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-6196", "date": "2020-12-02", "cves": ["CVE-2019-6196"], "vendors": ["Lenovo"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-12335", "date": "2020-11-10", "cves": ["CVE-2020-12335"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-3991", "date": "2020-10-15", "cves": ["CVE-2020-3991"], "vendors": ["Vmware"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-25046", "date": "2020-08-18", "cves": ["CVE-2020-25046"], "vendors": ["Kaspersky"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-25045", "date": "2020-08-18", "cves": ["CVE-2020-25045"], "vendors": ["Kaspersky"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-25044", "date": "2020-08-18", "cves": ["CVE-2020-25044"], "vendors": ["Kaspersky"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-25043", "date": "2020-08-18", "cves": ["CVE-2020-25043"], "vendors": ["Kaspersky"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7310", "date": "2020-08-12", "cves": ["CVE-2020-7310"], "vendors": ["McAffe"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-8759", "date": "2020-08-11", "cves": ["CVE-2020-8759"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-9200", "date": "2020-07-01", "cves": ["CVE-2020-9200"], "vendors": ["Huawei"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-14212", "date": "2020-06-21", "cves": ["CVE-2020-14212"], "vendors": ["FFmpeg"], "researchers": ["Assaf Sion"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1317", "date": "2020-06-09", "cves": ["CVE-2020-1317"], "vendors": ["Microsoft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1194", "date": "2020-06-09", "cves": ["CVE-2020-1194"], "vendors": ["Microsoft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-13903", "date": "2020-06-07", "cves": ["CVE-2020-13903"], "vendors": ["Avira"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-13813", "date": "2020-06-07", "cves": ["CVE-2020-13813"], "vendors": ["Foxit"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-5357", "date": "2020-06-02", "cves": ["CVE-2020-5357"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1817", "date": "2020-04-29", "cves": ["CVE-2020-1817"], "vendors": ["Huawei"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7250", "date": "2020-04-14", "cves": ["CVE-2020-7250"], "vendors": ["McAffe"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1885", "date": "2020-04-09", "cves": ["CVE-2020-1885"], "vendors": ["Facebook"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-9290", "date": "2020-03-11", "cves": ["CVE-2020-9290"], "vendors": ["Fortient"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7482", "date": "2020-03-10", "cves": ["CVE-2020-7482"], "vendors": ["Schneider Electric"], "researchers": ["Niv Levy"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7481", "date": "2020-03-10", "cves": ["CVE-2020-7481"], "vendors": ["Schneider Electric"], "researchers": ["Niv Levy"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7480", "date": "2020-03-10", "cves": ["CVE-2020-7480"], "vendors": ["Schneider Electric"], "researchers": ["Niv Levy"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-0565", "date": "2020-03-10", "cves": ["CVE-2020-0565"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-5324", "date": "2020-02-18", "cves": ["CVE-2020-5324"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-8959", "date": "2020-02-10", "cves": ["CVE-2020-8959"], "vendors": ["Western Digital"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-5316", "date": "2020-02-10", "cves": ["CVE-2020-5316"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-16283", "date": "2020-01-17", "cves": ["CVE-2019-16283"], "vendors": ["HP"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-0635", "date": "2020-01-14", "cves": ["CVE-2020-0635"], "vendors": ["Microsoft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-19548", "date": "2020-01-14", "cves": ["CVE-2019-19548"], "vendors": ["Symantec"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-14596", "date": "2020-01-14", "cves": ["CVE-2019-14596"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-6176", "date": "2020-01-14", "cves": ["CVE-2019-6176"], "vendors": ["Lenovo"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-6173", "date": "2020-01-14", "cves": ["CVE-2019-6173"], "vendors": ["Lenovo"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-19689", "date": "2019-12-18", "cves": ["CVE-2019-19689"], "vendors": ["TrendMicro"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-19688", "date": "2019-12-18", "cves": ["CVE-2019-19688"], "vendors": ["TrendMicro"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-17546", "date": "2019-12-12", "cves": ["CVE-2019-17546"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-14597", "date": "2019-12-12", "cves": ["CVE-2019-14597"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-3749", "date": "2019-12-03", "cves": ["CVE-2019-3749"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-3750", "date": "2019-12-03", "cves": ["CVE-2019-3750"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-8463", "date": "2019-12-02", "cves": ["CVE-2019-8463"], "vendors": ["Checkpoint"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-11152", "date": "2019-11-02", "cves": ["CVE-2019-11152"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-8071", "date": "2019-10-15", "cves": ["CVE-2019-8071"], "vendors": ["Adobe"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-3745", "date": "2019-10-02", "cves": ["CVE-2019-3745"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-3726", "date": "2019-10-02", "cves": ["CVE-2019-3726"], "vendors": ["Dell"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-6175", "date": "2019-09-24", "cves": ["CVE-2019-6175"], "vendors": ["Lenovo"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-8236", "date": "2019-09-15", "cves": ["CVE-2019-8236"], "vendors": ["Adobe"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-16191", "date": "2019-09-09", "cves": ["CVE-2019-16191"], "vendors": ["Samsung"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-11146", "date": "2019-08-13", "cves": ["CVE-2019-11146"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-7957", "date": "2019-08-13", "cves": ["CVE-2019-7957"], "vendors": ["Adobe"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-1161", "date": "2019-08-13", "cves": ["CVE-2019-1161"], "vendors": ["Microsoft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-1142", "date": "2019-07-09", "cves": ["CVE-2019-1142"], "vendors": ["Microsoft"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-6163", "date": "2019-06-26", "cves": ["CVE-2019-6163"], "vendors": ["Lenovo"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-1105", "date": "2019-06-20", "cves": ["CVE-2019-1105"], "vendors": ["Microsoft"], "researchers": ["or ida"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-5245", "date": "2019-06-12", "cves": ["CVE-2019-5245"], "vendors": ["Huawei"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2018-17246", "date": "2018-11-07", "cves": ["CVE-2018-17246"], "vendors": ["Elastic"], "researchers": ["Nethanel Coppenhagen"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-28349", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-28349"], "vendors": ["Chirpstack"], "researchers": ["Emmanuel Ouanounou"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-27534", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27534"], "vendors": ["Docker"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-27352", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27352"], "vendors": ["Canonical"], "researchers": ["Gilad Reti"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-22460", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-22460"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-15534", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-15534"], "vendors": ["Pulse Secure"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-15523", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-15523"], "vendors": ["Python \\ DUO"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-8242", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-8242"], "vendors": ["Pulse Secure"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7808", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7808"], "vendors": ["LG"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7807", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7807"], "vendors": ["LG"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-7806", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-7806"], "vendors": ["LG"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-6015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-6015"], "vendors": ["CheckPoint"], "researchers": ["Ido Hoorvitch"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-5962", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-5962"], "vendors": ["Nvidia"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-3427", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-3427"], "vendors": ["DUO SECURITY"], "researchers": ["Ido Hoorvitch"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1986", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1986"], "vendors": ["Palo Alto"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1985", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1985"], "vendors": ["Palo Alto"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2020-1984", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1984"], "vendors": ["Palo Alto"], "researchers": ["Eviatar Gerzi"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-10030", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-10030"], "vendors": ["CloudBees"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2019-11189", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11189"], "vendors": ["Intel"], "researchers": ["Eran Shimony"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2018-19990", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19990"], "vendors": ["CloudBees"], "researchers": ["Nimrod Stoler"]}, {"url": "https://labs.cyberark.com/cyberark-labs-security-advisories/#CVE-2018-10008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10008"], "vendors": ["CloudBees"], "researchers": ["Nimrod Stoler"]}]}, {"lab": "Flashback", "url": "https://www.flashback.sh", "A": 7, "Q": 15, "V": 7, "R": 2, "researchers": [{"name": "Radek Domanski", "count": 7}, {"name": "Pedro Ribeiro", "count": 3}], "vendors": [{"name": "Western Digital", "count": 1}, {"name": "Cisco", "count": 1}, {"name": "TP-Link Archer", "count": 1}, {"name": "Rockwell FactoryTalk View SE", "count": 1}, {"name": "NETGEAR", "count": 1}, {"name": "Inductive Automation Ignition", "count": 1}, {"name": "TPLINK ARCHER", "count": 1}], "advisories": [{"url": "https://www.flashback.sh/blog/weekend-destroyer-wd-pr4100-rce", "date": "2023-02-02", "cves": ["CVE-2021-36224", "CVE-2021-36225", "CVE-2021-36226"], "vendors": ["Western Digital"], "researchers": ["Pedro Ribeiro", "Radek Domanski"]}, {"url": "https://www.flashback.sh/blog/flashback-connects-cisco-rv340-ssl-vpn-rce", "date": "2022-03-07", "cves": ["CVE-2022-20699"], "vendors": ["Cisco"], "researchers": ["Radek Domanski"]}, {"url": "https://www.flashback.sh/blog/minesweeper-tplink-archer-lan-rce", "date": "2020-11-21", "cves": ["CVE-2020-28347", "CVE-2020-10882"], "vendors": ["TP-Link Archer"], "researchers": ["Pedro Ribeiro", "Radek Domanski"]}, {"url": "https://www.flashback.sh/blog/rockwell-factorytalk-rce", "date": "2020-11-20", "cves": ["CVE-2020-12027", "CVE-2020-12028", "CVE-2020-12029"], "vendors": ["Rockwell FactoryTalk View SE"], "researchers": ["Radek Domanski"]}, {"url": "https://www.flashback.sh/blog/tokyo-drift-netgear-r6700-lan-rce", "date": "2020-06-25", "cves": ["CVE-2020-10923", "CVE-2020-10924"], "vendors": ["NETGEAR"], "researchers": ["Radek Domanski"]}, {"url": "https://www.flashback.sh/blog/rce-me-v2-inductive-automation-ignition-rce", "date": "2020-06-25", "cves": ["CVE-2020-10644", "CVE-2020-12004"], "vendors": ["Inductive Automation Ignition"], "researchers": ["Pedro Ribeiro", "Radek Domanski"]}, {"url": "https://www.flashback.sh/blog/lao-bomb-tplink-archer-lan-rce", "date": "2020-06-18", "cves": ["CVE-2020-10883", "CVE-2020-10884"], "vendors": ["TPLINK ARCHER"], "researchers": ["Radek Domanski"]}]}, {"lab": "Fluid Attacks", "url": "https://fluidattacks.com/advisories", "A": 128, "Q": 226, "V": 40, "R": 18, "researchers": [{"name": "Carlos Bello", "count": 44}, {"name": "Andres Roldan", "count": 36}, {"name": "Oscar Uribe", "count": 15}, {"name": "Cristian Vargas", "count": 9}, {"name": "Camilo Vera", "count": 4}, {"name": "Johan Giraldo", "count": 3}, {"name": "Danilo Erazo External Pentester Summary Full name E", "count": 2}, {"name": "Miguel Gómez", "count": 2}, {"name": "Juan Patarroyo External researcher Summary Full nam", "count": 1}, {"name": "Daniel Esteban Celis External researcher Summary Fu", "count": 1}, {"name": "Marcelo Queiroz External Pentester Summary Full nam", "count": 1}, {"name": "Danilo Erazo External Pentester Summary Full name C", "count": 1}, {"name": "Danilo Erazo External Pentester Summary Full name S", "count": 1}, {"name": "Danilo Erazo External Pentester Summary Full name U", "count": 1}, {"name": "Takao Sato", "count": 1}, {"name": "Diana Osorio", "count": 1}, {"name": "Ronald Hernandez", "count": 1}, {"name": "Adrian Castañeda", "count": 1}], "vendors": [{"name": "Projectworlds", "count": 12}, {"name": "Kashipara Group", "count": 7}, {"name": "Calix", "count": 5}, {"name": "OpenSupports", "count": 3}, {"name": "Micro-Star INT'L CO", "count": 3}, {"name": "Zemana", "count": 3}, {"name": "contacted ï Jul 24, 2025 Public disclosure Does y", "count": 2}, {"name": "page Timeline ï Sep 20, 2023 Vulnerability discov", "count": 2}, {"name": "Actual Budget", "count": 1}, {"name": "iBoysoft", "count": 1}, {"name": "nest.js", "count": 1}, {"name": "fastify", "count": 1}, {"name": "Dr. Buho", "count": 1}, {"name": "Askbot", "count": 1}, {"name": "sveltejs", "count": 1}, {"name": "validator", "count": 1}, {"name": "Slab", "count": 1}, {"name": "AirVPN", "count": 1}, {"name": "Dr.Buho", "count": 1}, {"name": "Wave", "count": 1}, {"name": "Portabilis", "count": 1}, {"name": "Frappe", "count": 1}, {"name": "OpenSearch", "count": 1}, {"name": "Bjango", "count": 1}, {"name": "Mac Enhance", "count": 1}, {"name": "is-localhost-ip", "count": 1}, {"name": "Ghost", "count": 1}, {"name": "Bunkerity", "count": 1}, {"name": "Wulkano", "count": 1}, {"name": "Markdown-it", "count": 1}, {"name": "contacted ï Jul 24, 2025 Vendor replied ï Jul 2", "count": 1}, {"name": "contacted ï Mar 4, 2025 Vulnerability patched ï", "count": 1}, {"name": "contacted ï Feb 11, 2025 Vulnerability patched ï", "count": 1}, {"name": "contacted ï Feb 12, 2025 Vendor replied ï Feb 1", "count": 1}, {"name": "Faronics Corporation", "count": 1}, {"name": "Watchdog", "count": 1}, {"name": "Bkav Corporation", "count": 1}, {"name": "VirusBlokAda", "count": 1}, {"name": "page PaperCut NG/MF Security Bulletin |", "count": 1}, {"name": "page: https://github.com/oxen-io/session-android", "count": 1}], "advisories": [{"url": "https://fluidattacks.com/advisories/fugue", "date": "2026-03-09", "cves": ["CVE-2026-3089"], "vendors": ["Actual Budget"], "researchers": ["Juan Patarroyo External researcher Summary Full nam"]}, {"url": "https://fluidattacks.com/advisories/cuarteto", "date": "2026-03-03", "cves": ["CVE-2026-2637"], "vendors": ["iBoysoft"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/neton", "date": "2026-02-27", "cves": ["CVE-2026-2293"], "vendors": ["nest.js"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/jimenez", "date": "2026-02-27", "cves": ["CVE-2026-2880"], "vendors": ["fastify"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/solstafir", "date": "2026-01-30", "cves": ["CVE-2026-0924"], "vendors": ["Dr. Buho"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/ghost", "date": "2026-01-27", "cves": ["CVE-2026-1213"], "vendors": ["Askbot"], "researchers": ["Daniel Esteban Celis External researcher Summary Fu"]}, {"url": "https://fluidattacks.com/advisories/lydian", "date": "2026-01-15", "cves": ["CVE-2025-15265"], "vendors": ["sveltejs"], "researchers": ["Camilo Vera"]}, {"url": "https://fluidattacks.com/advisories/europe", "date": "2026-01-13", "cves": ["CVE-2025-15104"], "vendors": ["validator"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/diomedes", "date": "2026-01-13", "cves": ["CVE-2025-15056"], "vendors": ["Slab"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/blink182", "date": "2026-01-06", "cves": ["CVE-2025-14979"], "vendors": ["AirVPN"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/greenday", "date": "2025-12-12", "cves": ["CVE-2025-13733"], "vendors": ["Dr.Buho"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/minutos", "date": "2025-12-12", "cves": ["CVE-2025-12843"], "vendors": ["Wave"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/travis", "date": "2025-12-09", "cves": ["CVE-2025-9638"], "vendors": ["Portabilis"], "researchers": ["Marcelo Queiroz External Pentester Summary Full nam"]}, {"url": "https://fluidattacks.com/advisories/dyango", "date": "2025-12-09", "cves": ["CVE-2025-10655"], "vendors": ["Frappe"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/chick", "date": "2025-11-25", "cves": ["CVE-2025-9624"], "vendors": ["OpenSearch"], "researchers": ["Camilo Vera"]}, {"url": "https://fluidattacks.com/advisories/muse", "date": "2025-11-24", "cves": ["CVE-2025-11921"], "vendors": ["Bjango"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/m83", "date": "2025-10-03", "cves": ["CVE-2025-10751"], "vendors": ["Mac Enhance"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/freer", "date": "2025-10-03", "cves": ["CVE-2025-10695"], "vendors": ["OpenSupports"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/stratovarius", "date": "2025-10-03", "cves": ["CVE-2025-10696"], "vendors": ["OpenSupports"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/tito", "date": "2025-10-03", "cves": ["CVE-2025-10692"], "vendors": ["OpenSupports"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/registrada", "date": "2025-09-22", "cves": ["CVE-2025-9960"], "vendors": ["is-localhost-ip"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/regida", "date": "2025-09-17", "cves": ["CVE-2025-9862"], "vendors": ["Ghost"], "researchers": ["Cristian Vargas"]}, {"url": "https://fluidattacks.com/advisories/bacalao", "date": "2025-09-09", "cves": ["CVE-2025-54084"], "vendors": ["Calix"], "researchers": ["Danilo Erazo External Pentester Summary Full name C"]}, {"url": "https://fluidattacks.com/advisories/rocola", "date": "2025-09-09", "cves": ["CVE-2025-54083"], "vendors": ["Calix"], "researchers": ["Danilo Erazo External Pentester Summary Full name S"]}, {"url": "https://fluidattacks.com/advisories/sal", "date": "2025-09-09", "cves": ["CVE-2025-7635"], "vendors": ["Calix"], "researchers": ["Danilo Erazo External Pentester Summary Full name U"]}, {"url": "https://fluidattacks.com/advisories/sheivi", "date": "2025-09-09", "cves": ["CVE-2025-53914"], "vendors": ["Calix"], "researchers": ["Danilo Erazo External Pentester Summary Full name E"]}, {"url": "https://fluidattacks.com/advisories/forty", "date": "2025-09-09", "cves": ["CVE-2025-53913"], "vendors": ["Calix"], "researchers": ["Danilo Erazo External Pentester Summary Full name E"]}, {"url": "https://fluidattacks.com/advisories/fito", "date": "2025-08-21", "cves": ["CVE-2025-7969"], "vendors": ["Markdown-it"], "researchers": ["Camilo Vera"]}, {"url": "https://fluidattacks.com/advisories/cypress", "date": "2025-08-15", "cves": ["CVE-2025-8066"], "vendors": ["Bunkerity"], "researchers": ["Johan Giraldo"]}, {"url": "https://fluidattacks.com/advisories/cafrune", "date": "2025-08-14", "cves": ["CVE-2025-7961"], "vendors": ["Wulkano"], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/charly", "date": "2025-07-25", "cves": ["CVE-2025-8101"], "vendors": ["contacted ï Jul 24, 2025 Vendor replied ï Jul 2"], "researchers": ["Camilo Vera"]}, {"url": "https://fluidattacks.com/advisories/kino", "date": "2025-07-24", "cves": ["CVE-2025-7404"], "vendors": ["contacted ï Jul 24, 2025 Public disclosure Does y"], "researchers": ["Johan Giraldo"]}, {"url": "https://fluidattacks.com/advisories/megadeth", "date": "2025-07-24", "cves": ["CVE-2025-6998"], "vendors": ["contacted ï Jul 24, 2025 Public disclosure Does y"], "researchers": ["Johan Giraldo"]}, {"url": "https://fluidattacks.com/advisories/winehouse", "date": "2025-07-02", "cves": ["CVE-2025-52842"], "vendors": ["page Timeline ï Sep 20, 2023 Vulnerability discov"], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/tort", "date": "2025-07-02", "cves": ["CVE-2025-52841"], "vendors": ["page Timeline ï Sep 20, 2023 Vulnerability discov"], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/skims-5", "date": "2025-02-18", "cves": ["CVE-2025-22622"], "vendors": ["contacted ï Feb 11, 2025 Vulnerability patched ï"], "researchers": []}, {"url": "https://fluidattacks.com/advisories/kanka", "date": "2024-08-24", "cves": ["CVE-2024-8159"], "vendors": ["Faronics Corporation"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/bocelli", "date": "2024-08-14", "cves": ["CVE-2024-6533", "CVE-2024-6534"], "vendors": [], "researchers": ["Miguel Gómez"]}, {"url": "https://fluidattacks.com/advisories/capaldi", "date": "2024-08-14", "cves": ["CVE-2024-6534", "CVE-2024-6533"], "vendors": [], "researchers": ["Miguel Gómez"]}, {"url": "https://fluidattacks.com/advisories/gershwin", "date": "2024-05-17", "cves": ["CVE-2024-3745", "CVE-2024-1443", "CVE-2024-1460"], "vendors": ["Micro-Star INT'L CO"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/cole", "date": "2024-04-22", "cves": ["CVE-2024-1241"], "vendors": ["Watchdog"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/kent", "date": "2024-04-22", "cves": ["CVE-2024-2760"], "vendors": ["Bkav Corporation"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/dezco", "date": "2024-04-03", "cves": ["CVE-2024-2692"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/ellington", "date": "2024-03-14", "cves": ["CVE-2024-1853"], "vendors": ["Zemana"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/gomez", "date": "2024-03-14", "cves": ["CVE-2024-2180"], "vendors": ["Zemana"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/hassan", "date": "2024-03-14", "cves": ["CVE-2024-2204"], "vendors": ["Zemana"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/coltrane", "date": "2024-03-06", "cves": ["CVE-2024-1443"], "vendors": ["Micro-Star INT'L CO"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/mingus", "date": "2024-03-06", "cves": ["CVE-2024-1460"], "vendors": ["Micro-Star INT'L CO"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/skims-10", "date": "2024-03-05", "cves": ["CVE-2025-22624"], "vendors": ["contacted ï Mar 4, 2025 Vulnerability patched ï"], "researchers": []}, {"url": "https://fluidattacks.com/advisories/skims-8", "date": "2024-03-05", "cves": ["CVE-2025-22623"], "vendors": ["contacted ï Feb 12, 2025 Vendor replied ï Feb 1"], "researchers": []}, {"url": "https://fluidattacks.com/advisories/newman", "date": "2024-02-29", "cves": ["CVE-2024-2045"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/stones", "date": "2024-02-29", "cves": ["CVE-2024-1297"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/drake", "date": "2024-02-19", "cves": ["CVE-2024-1648"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/silva", "date": "2024-02-19", "cves": ["CVE-2024-1644"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/xavi", "date": "2024-02-19", "cves": ["CVE-2024-1651"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/alesso", "date": "2024-02-06", "cves": ["CVE-2024-0849"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/adderley", "date": "2024-01-29", "cves": ["CVE-2024-23439", "CVE-2024-23440"], "vendors": ["VirusBlokAda"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/harris", "date": "2024-01-16", "cves": ["CVE-2024-0403"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/evans", "date": "2024-01-03", "cves": ["CVE-2023-50862", "CVE-2023-50863", "CVE-2023-50864", "CVE-2023-50865", "CVE-2023-50866", "CVE-2023-50867"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/ma", "date": "2023-12-07", "cves": ["CVE-2023-48433", "CVE-2023-48434"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/barenboim", "date": "2023-12-06", "cves": ["CVE-2023-48685", "CVE-2023-48687", "CVE-2023-48689"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/blechacz", "date": "2023-12-06", "cves": ["CVE-2023-5008"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/gilels", "date": "2023-12-06", "cves": ["CVE-2023-48716", "CVE-2023-48718", "CVE-2023-48720", "CVE-2023-48722"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/kissin", "date": "2023-12-06", "cves": ["CVE-2023-5010", "CVE-2023-5011", "CVE-2023-5007"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/lang", "date": "2023-12-06", "cves": ["CVE-2023-49269", "CVE-2023-49270", "CVE-2023-49271", "CVE-2023-49272"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/pollini", "date": "2023-12-06", "cves": ["CVE-2023-49677", "CVE-2023-49681", "CVE-2023-49688", "CVE-2023-49689"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/rubinstein", "date": "2023-12-06", "cves": ["CVE-2023-4122"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/zimerman", "date": "2023-12-06", "cves": ["CVE-2023-49622", "CVE-2023-49624", "CVE-2023-49625", "CVE-2023-49633", "CVE-2023-49639", "CVE-2023-49641", "CVE-2023-49658", "CVE-2023-49665", "CVE-2023-49666"], "vendors": ["Kashipara Group"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/argerich", "date": "2023-11-02", "cves": ["CVE-2023-45115", "CVE-2023-45116", "CVE-2023-45117", "CVE-2023-45118", "CVE-2023-45119", "CVE-2023-45120", "CVE-2023-45121"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/ros", "date": "2023-11-02", "cves": ["CVE-2023-46785", "CVE-2023-46787", "CVE-2023-46788", "CVE-2023-46789", "CVE-2023-46793", "CVE-2023-46800"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/hann", "date": "2023-11-01", "cves": ["CVE-2023-45323", "CVE-2023-45325", "CVE-2023-45334", "CVE-2023-45336", "CVE-2023-45338", "CVE-2023-45340", "CVE-2023-45341", "CVE-2023-45342", "CVE-2023-45343", "CVE-2023-45344", "CVE-2023-45345", "CVE-2023-45346", "CVE-2023-45347"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/oconnor", "date": "2023-11-01", "cves": ["CVE-2023-45012", "CVE-2023-45015", "CVE-2023-45018", "CVE-2023-45019"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/pires", "date": "2023-11-01", "cves": ["CVE-2023-45111"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/uchida", "date": "2023-11-01", "cves": ["CVE-2023-45201", "CVE-2023-45202", "CVE-2023-45203"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/carpenter", "date": "2023-10-27", "cves": ["CVE-2023-44484"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/martin", "date": "2023-10-27", "cves": ["CVE-2023-44480", "CVE-2023-44481", "CVE-2023-44482"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/ono", "date": "2023-10-26", "cves": ["CVE-2023-44267"], "vendors": ["Projectworlds"], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/bts", "date": "2023-09-29", "cves": ["CVE-2023-43702", "CVE-2023-43703", "CVE-2023-43704", "CVE-2023-43705", "CVE-2023-43706", "CVE-2023-43707", "CVE-2023-43708", "CVE-2023-43709", "CVE-2023-43710", "CVE-2023-43711", "CVE-2023-43712", "CVE-2023-43713", "CVE-2023-43714", "CVE-2023-43715", "CVE-2023-43716", "CVE-2023-43717", "CVE-2023-43718", "CVE-2023-43719", "CVE-2023-43720", "CVE-2023-43721", "CVE-2023-43722", "CVE-2023-43723", "CVE-2023-43724", "CVE-2023-43725", "CVE-2023-43726", "CVE-2023-43727", "CVE-2023-43728", "CVE-2023-43729", "CVE-2023-43730", "CVE-2023-43731", "CVE-2023-43732", "CVE-2023-43733", "CVE-2023-43734", "CVE-2023-43735", "CVE-2023-43736", "CVE-2023-5111", "CVE-2023-5112"], "vendors": [], "researchers": ["Takao Sato"]}, {"url": "https://fluidattacks.com/advisories/filth", "date": "2023-09-28", "cves": ["CVE-2023-43739"], "vendors": [], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/gaahl", "date": "2023-09-28", "cves": ["CVE-2023-43014"], "vendors": [], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/harrison", "date": "2023-09-28", "cves": ["CVE-2023-44173"], "vendors": [], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/mccartney", "date": "2023-09-28", "cves": ["CVE-2023-44174"], "vendors": [], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/nergal", "date": "2023-09-28", "cves": ["CVE-2023-43013"], "vendors": [], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/starr", "date": "2023-09-28", "cves": ["CVE-2023-44163", "CVE-2023-44164", "CVE-2023-44166"], "vendors": [], "researchers": ["Andres Roldan"]}, {"url": "https://fluidattacks.com/advisories/swift", "date": "2023-09-28", "cves": ["CVE-2023-4316"], "vendors": [], "researchers": ["Diana Osorio"]}, {"url": "https://fluidattacks.com/advisories/creed", "date": "2023-08-11", "cves": ["CVE-2023-3726"], "vendors": [], "researchers": ["Ronald Hernandez"]}, {"url": "https://fluidattacks.com/advisories/maiden", "date": "2023-07-14", "cves": ["CVE-2023-2507"], "vendors": [], "researchers": ["Adrian Castañeda"]}, {"url": "https://fluidattacks.com/advisories/almighty", "date": "2023-04-10", "cves": ["CVE-2023-6144"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/bunny", "date": "2023-04-10", "cves": ["CVE-2023-6142"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/arcangel", "date": "2023-04-10", "cves": ["CVE-2023-2533"], "vendors": ["page PaperCut NG/MF Security Bulletin |"], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/ingrosso", "date": "2023-04-10", "cves": ["CVE-2023-0967"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/myers", "date": "2023-04-10", "cves": ["CVE-2023-0842"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/relsb", "date": "2023-04-10", "cves": ["CVE-2023-0835"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/scott", "date": "2023-04-10", "cves": ["CVE-2023-0670"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/sharp", "date": "2023-04-10", "cves": ["CVE-2023-0480"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/smith", "date": "2023-04-10", "cves": ["CVE-2023-0486"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/stewart", "date": "2023-04-10", "cves": ["CVE-2023-0944"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/labrinth", "date": "2023-04-10", "cves": ["CVE-2023-0325"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/garrix", "date": "2022-11-29", "cves": ["CVE-2022-0698"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/mosey", "date": "2022-11-21", "cves": ["CVE-2022-23044", "CVE-2022-45475", "CVE-2022-45476"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/malone", "date": "2022-11-21", "cves": ["CVE-2022-43984"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/kiniza", "date": "2022-11-21", "cves": ["CVE-2022-41712"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/headhunterz", "date": "2022-11-16", "cves": ["CVE-2022-41705"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/heldens", "date": "2022-11-15", "cves": ["CVE-2022-41713"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/eminem", "date": "2022-10-28", "cves": ["CVE-2022-41706"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/khalid", "date": "2022-10-28", "cves": ["CVE-2022-43983"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/hardway", "date": "2022-10-27", "cves": ["CVE-2022-42753"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/londra", "date": "2022-10-27", "cves": ["CVE-2022-42751"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/castles", "date": "2022-10-27", "cves": ["CVE-2022-42750"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/jcole", "date": "2022-10-27", "cves": ["CVE-2022-42745"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/mohawke", "date": "2022-10-25", "cves": ["CVE-2022-42744"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/buuren", "date": "2022-10-19", "cves": ["CVE-2022-42743"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/guetta", "date": "2022-10-19", "cves": ["CVE-2022-41714"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/noisestorm", "date": "2022-10-18", "cves": ["CVE-2022-41710"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/harlow", "date": "2022-10-18", "cves": ["CVE-2022-41711"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/adams", "date": "2022-10-14", "cves": ["CVE-2022-41709"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/tiesto", "date": "2022-10-14", "cves": ["CVE-2022-41708"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/coldplay", "date": "2022-10-14", "cves": ["CVE-2022-41707"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/skrillex", "date": "2022-09-26", "cves": ["CVE-2022-40277"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/avicii", "date": "2022-09-26", "cves": ["CVE-2022-40276"], "vendors": [], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/tempest", "date": "2022-06-28", "cves": ["CVE-2022-1955"], "vendors": ["page: https://github.com/oxen-io/session-android"], "researchers": ["Carlos Bello"]}, {"url": "https://fluidattacks.com/advisories/bowie", "date": "2022-05-17", "cves": ["CVE-2022-25229"], "vendors": [], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/berry", "date": "2022-03-15", "cves": ["CVE-2022-25222"], "vendors": [], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/jagger", "date": "2022-03-15", "cves": ["CVE-2022-25223"], "vendors": [], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/cobain", "date": "2022-02-03", "cves": ["CVE-2022-23049"], "vendors": [], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/dylan", "date": "2022-02-03", "cves": ["CVE-2022-23048"], "vendors": [], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/osbourne", "date": "2022-01-18", "cves": ["CVE-2022-23045"], "vendors": [], "researchers": ["Oscar Uribe"]}, {"url": "https://fluidattacks.com/advisories/porter", "date": "2021-09-28", "cves": ["CVE-2022-22700"], "vendors": [], "researchers": ["Andres Roldan"]}]}, {"lab": "FortiGuard", "url": "https://www.fortiguard.com/psirt", "A": 15, "Q": 15, "V": 6, "R": 0, "researchers": [], "vendors": [{"name": "FortiAnalyzer", "count": 6}, {"name": "FortiOS", "count": 3}, {"name": "FortiSwitchAXFixed", "count": 2}, {"name": "FortiSandbox", "count": 2}, {"name": "FortiAP", "count": 1}, {"name": "FortiManager", "count": 1}], "advisories": [{"url": "https://www.fortiguard.com/psirt/FG-IR-26-079", "date": "2026-03-10", "cves": ["CVE-2026-22629"], "vendors": ["FortiAnalyzer"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-086", "date": "2026-03-10", "cves": ["CVE-2026-22627"], "vendors": ["FortiSwitchAXFixed"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-098", "date": "2026-03-10", "cves": ["CVE-2025-54820"], "vendors": ["FortiManager"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-092", "date": "2026-03-10", "cves": ["CVE-2025-68648"], "vendors": ["FortiAnalyzer"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-078", "date": "2026-03-10", "cves": ["CVE-2025-68482"], "vendors": ["FortiAnalyzer"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-090", "date": "2026-03-10", "cves": ["CVE-2026-22572"], "vendors": ["FortiAnalyzer"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-096", "date": "2026-03-10", "cves": ["CVE-2026-25836"], "vendors": ["FortiSandbox"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-081", "date": "2026-03-10", "cves": ["CVE-2025-48418"], "vendors": ["FortiAnalyzer"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-095", "date": "2026-03-10", "cves": ["CVE-2025-49784"], "vendors": ["FortiAnalyzer"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-091", "date": "2026-03-10", "cves": ["CVE-2025-53608"], "vendors": ["FortiSandbox"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-085", "date": "2026-03-10", "cves": ["CVE-2026-22628"], "vendors": ["FortiSwitchAXFixed"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-25-934", "date": "2026-02-10", "cves": ["CVE-2025-68686"], "vendors": ["FortiOS"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-25-667", "date": "2026-02-10", "cves": ["CVE-2025-55018"], "vendors": ["FortiOS"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-26-076", "date": "2026-01-30", "cves": ["CVE-2025-15467"], "vendors": ["FortiAP"], "researchers": []}, {"url": "https://www.fortiguard.com/psirt/FG-IR-25-756", "date": "2025-10-14", "cves": ["CVE-2025-57740"], "vendors": ["FortiOS"], "researchers": []}]}, {"lab": "Horizon3", "url": "https://www.horizon3.ai", "A": 56, "Q": 75, "V": 53, "R": 0, "researchers": [], "vendors": [{"name": "Rapid Response", "count": 4}, {"name": "When “Read-Only” Isn’t: K8s nodes/proxy GET to", "count": 1}, {"name": "N-central 0-Days", "count": 1}, {"name": "— WatchGuard Firebox / Fireware OS Critical RCE Flaw", "count": 1}, {"name": ": GNU InetUtils telnetd Auth", "count": 1}, {"name": ": osTicket PHP Filter Chain Injection", "count": 1}, {"name": ": Cisco SD-WAN Auth", "count": 1}, {"name": ": BeyondTrust Pre-Auth", "count": 1}, {"name": "Ivanti Endpoint Manager", "count": 1}, {"name": "Ivanti EPMM RCE Zero-Days", "count": 1}, {"name": "Fortinet FortiWeb Auth Bypass", "count": 1}, {"name": ": FortiSIEM", "count": 1}, {"name": ": Oracle E-Business Suite", "count": 1}, {"name": "Oracle Identity Manager RCE", "count": 1}, {"name": "— WSUS Unsafe-Deserialization RCE", "count": 1}, {"name": "Updated FreePBX CVEs: Auth Bypass & RCE Rapid Response", "count": 1}, {"name": ": Citrix NetScaler Bleed 2", "count": 1}, {"name": ": React Server RCE Rapid Response", "count": 1}, {"name": ": SmarterMail RCE via File Upload", "count": 1}, {"name": ": Redis Lua Use-After-Free", "count": 1}, {"name": ": SolarWinds Web Help Desk", "count": 1}, {"name": "HPE OneView RCE", "count": 1}, {"name": ": Sitecore Experience Platform Hardcoded Credentials", "count": 1}, {"name": ": ZendTo Path Traversal", "count": 1}, {"name": ": Fortinet Buffer Overflow Exploit Analyzed", "count": 1}, {"name": ": Cisco ASA / FTD WebVPN", "count": 1}, {"name": ": Cisco ISE API Unauthenticated Remote Code Execution", "count": 1}, {"name": ": Cisco IOS XE Wireless Controller Remote File Upload", "count": 1}, {"name": "MongoDB Server Uninitialized Heap Memory Disclosure", "count": 1}, {"name": "WatchGuard Fireware OS VPN Vulnerability", "count": 1}, {"name": ": Gladinet CentreStack LFI", "count": 1}, {"name": "Triofox RCE", "count": 1}, {"name": ": Gladinet CentreStack / Triofox Local File Inclusion", "count": 1}, {"name": ": ManageEngine Auth", "count": 1}, {"name": "CVE‑2025‑47812: Wing FTP", "count": 1}, {"name": "Rapid Response: CVE‑2025‑25256", "count": 1}, {"name": "The FreePBX Rabbit Hole: More", "count": 1}, {"name": "How Hackers Weaponize Slack: Lessons From Real Slack Dump", "count": 1}, {"name": "Hack The Box Retro — NodeZero Walkthrough & Analysis", "count": 1}, {"name": ": 3 Years of Remotely Rooting the FortiSIEM", "count": 1}, {"name": "Defending with AD Tripwires: GOAD Walkthrough", "count": 1}, {"name": ": SolarWinds WHD", "count": 1}, {"name": "Insights from 7,000+ NodeZero RAT Deployments", "count": 1}, {"name": ": Ticket to Shell in osTicket", "count": 1}, {"name": "The Quiet Attack Path: How Attackers Own Active Directory in Minutes", "count": 1}, {"name": "The Ni8mare Test: n8n RCE Under the Microscope", "count": 1}, {"name": "N-able N-central: From N-days to 0-days", "count": 1}, {"name": "From Support Ticket to Zero Day", "count": 1}, {"name": ": CitrixBleed 2 Exploit Deep Dive by Horizon3.ai", "count": 1}, {"name": "Path Traversal Vulnerability Discovered in ZendTo", "count": 1}, {"name": ": Fortinet RCE Exploited in the Wild", "count": 1}, {"name": "Cisco IOS XE WLC File Upload Vuln", "count": 1}, {"name": "Beyond the Perimeter: Why Deception Is Critical", "count": 1}], "advisories": [{"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2026-20127/", "date": "2026-03-05", "cves": ["CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340", "CVE-2026-1731"], "vendors": [": Cisco SD-WAN Auth"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/when-read-only-isnt-k8s-nodes-proxy-get-to-rce/", "date": "2026-02-27", "cves": [], "vendors": ["When “Read-Only” Isn’t: K8s nodes/proxy GET to"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2026-1603/", "date": "2026-02-18", "cves": ["CVE-2026-1603", "CVE-2026-20127", "CVE-2026-1281", "CVE-2026-1340", "CVE-2026-1731"], "vendors": ["Ivanti Endpoint Manager"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2026-1731/", "date": "2026-02-11", "cves": ["CVE-2026-1731", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": BeyondTrust Pre-Auth"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2026-1281-cve-2026-1340/", "date": "2026-02-11", "cves": ["CVE-2026-1281", "CVE-2026-1340", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1731"], "vendors": ["Ivanti EPMM RCE Zero-Days"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-40551/", "date": "2026-01-28", "cves": ["CVE-2025-40551", "CVE-2025-40536", "CVE-2025-40537", "CVE-2024-28986", "CVE-2024-28988", "CVE-2025-26399", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": SolarWinds Web Help Desk"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/cve-2025-40551-another-solarwinds-web-help-desk-deserialization-issue/", "date": "2026-01-28", "cves": ["CVE-2025-40551", "CVE-2024-28986", "CVE-2024-28988", "CVE-2025-26399", "CVE-2025-40537", "CVE-2025-40536"], "vendors": [": SolarWinds WHD"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2026-24061/", "date": "2026-01-26", "cves": ["CVE-2026-24061", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": GNU InetUtils telnetd Auth"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/defending-with-ad-tripwires-goad-walkthrough/", "date": "2026-01-26", "cves": ["CVE-2022-33679"], "vendors": ["Defending with AD Tripwires: GOAD Walkthrough"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/ticket-to-shell-exploiting-php-filters-and-cnext-in-osticket-cve-2026-22200/", "date": "2026-01-22", "cves": ["CVE-2026-22200", "CVE-2024-2961", "CVE-2024-28986", "CVE-2024-28987", "CVE-2025-2775", "CVE-2025-2776", "CVE-2025-26241", "CVE-2024-34102"], "vendors": [": Ticket to Shell in osTicket"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/beyond-the-perimeter-why-deception-is-critical-to-protecting-the-worlds-most-sensitive-organisations/", "date": "2026-01-21", "cves": [], "vendors": ["Beyond the Perimeter: Why Deception Is Critical"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-11250/", "date": "2026-01-15", "cves": ["CVE-2025-11250", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": ManageEngine Auth"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-37164/", "date": "2026-01-14", "cves": ["CVE-2025-37164", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["HPE OneView RCE"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-64155-fortinet-fortisiem/", "date": "2026-01-13", "cves": ["CVE-2025-64155", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": FortiSIEM"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/disclosures/cve-2025-64155-three-years-of-remotely-rooting-the-fortinet-fortisiem/", "date": "2026-01-13", "cves": ["CVE-2025-64155", "CVE-2025-25256", "CVE-2023-34992", "CVE-2024-23108"], "vendors": [": 3 Years of Remotely Rooting the FortiSIEM"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2026-22200/", "date": "2026-01-12", "cves": ["CVE-2026-22200", "CVE-2024-2961", "CVE-2024-28986", "CVE-2024-28987", "CVE-2021-44077", "CVE-2025-2775", "CVE-2025-2776", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": osTicket PHP Filter Chain Injection"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-52691/", "date": "2026-01-12", "cves": ["CVE-2025-52691", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": SmarterMail RCE via File Upload"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/the-ni8mare-test-n8n-rce-under-the-microscope-cve-2026-21858/", "date": "2026-01-08", "cves": ["CVE-2026-21858"], "vendors": ["The Ni8mare Test: n8n RCE Under the Microscope"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-14847/", "date": "2026-01-06", "cves": ["CVE-2025-14847", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["MongoDB Server Uninitialized Heap Memory Disclosure"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-14733/", "date": "2026-01-05", "cves": ["CVE-2025-14733", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["WatchGuard Fireware OS VPN Vulnerability"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-14611/", "date": "2025-12-19", "cves": ["CVE-2025-14611", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Gladinet CentreStack LFI"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-57819/", "date": "2025-12-11", "cves": ["CVE-2025-57819", "CVE-2025-66039", "CVE-2025-61675", "CVE-2025-61678", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Updated FreePBX CVEs: Auth Bypass & RCE Rapid Response"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/the-freepbx-rabbit-hole-cve-2025-66039-and-others/", "date": "2025-12-11", "cves": ["CVE-2025-66039", "CVE-2025-61675", "CVE-2025-61678", "CVE-2025-57819"], "vendors": ["The FreePBX Rabbit Hole: More"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-55182/", "date": "2025-12-05", "cves": ["CVE-2025-55182", "CVE-2025-66478", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": React Server RCE Rapid Response"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-61757/", "date": "2025-11-24", "cves": ["CVE-2025-61757", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Oracle Identity Manager RCE"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/n-able-n-central-from-n-days-to-0-days/", "date": "2025-11-17", "cves": ["CVE-2025-8875", "CVE-2025-8876", "CVE-2025-9316", "CVE-2025-11700"], "vendors": ["N-able N-central: From N-days to 0-days"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-64446/", "date": "2025-11-14", "cves": ["CVE-2025-64446", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Fortinet FortiWeb Auth Bypass"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/n-able-n-central-vulnerabilities-cve-2025-9316-cve-2025-11700/", "date": "2025-11-13", "cves": ["CVE-2025-9316", "CVE-2025-11700", "CVE-2025-11367", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["N-central 0-Days"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-12480/", "date": "2025-11-13", "cves": ["CVE-2025-12480", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Triofox RCE"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/n0-attack-paths/hack-the-box-retro/", "date": "2025-11-10", "cves": [], "vendors": ["Hack The Box Retro — NodeZero Walkthrough & Analysis"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-59287/", "date": "2025-10-31", "cves": ["CVE-2025-59287", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["— WSUS Unsafe-Deserialization RCE"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve2025-9242/", "date": "2025-10-29", "cves": ["CVE-2025-9242", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["— WatchGuard Firebox / Fireware OS Critical RCE Flaw"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/the-quiet-attack-path/", "date": "2025-10-21", "cves": ["CVE-2022-33679"], "vendors": ["The Quiet Attack Path: How Attackers Own Active Directory in Minutes"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-11371/", "date": "2025-10-14", "cves": ["CVE-2025-11371", "CVE-2025-30406", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Gladinet CentreStack / Triofox Local File Inclusion"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-49844/", "date": "2025-10-09", "cves": ["CVE-2025-49844", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Redis Lua Use-After-Free"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-20362-cve-2025-20333-cve-2025-20363/", "date": "2025-10-09", "cves": ["CVE-2025-20362", "CVE-2025-20333", "CVE-2025-20363", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Cisco ASA / FTD WebVPN"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-61882/", "date": "2025-10-07", "cves": ["CVE-2025-61882", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Oracle E-Business Suite"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-7776/", "date": "2025-08-27", "cves": ["CVE-2025-7776", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Rapid Response"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve%e2%80%912025%e2%80%9125256/", "date": "2025-08-21", "cves": ["CVE-2025-25256", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Rapid Response: CVE‑2025‑25256"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/from-support-ticket-to-zero-day/", "date": "2025-08-13", "cves": ["CVE-2025-8355", "CVE-2025-8356"], "vendors": ["From Support Ticket to Zero Day"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-8356/", "date": "2025-08-11", "cves": ["CVE-2025-8356", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Rapid Response"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-54309/", "date": "2025-08-01", "cves": ["CVE-2025-54309", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Rapid Response"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-53770/", "date": "2025-07-26", "cves": ["CVE-2025-53770", "CVE-2025-49706", "CVE-2025-49704", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["Rapid Response"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-20281/", "date": "2025-07-24", "cves": ["CVE-2025-20281", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Cisco ISE API Unauthenticated Remote Code Execution"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve%e2%80%912025%e2%80%9147812/", "date": "2025-07-17", "cves": ["CVE-2025-47812", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": ["CVE‑2025‑47812: Wing FTP"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/cve-2025-5777-citrixbleed-2-write-up-maybe/", "date": "2025-07-07", "cves": ["CVE-2025-5777", "CVE-2025-5349", "CVE-2025-6543", "CVE-2023-4966", "CVE-2023-3519"], "vendors": [": CitrixBleed 2 Exploit Deep Dive by Horizon3.ai"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-5777/", "date": "2025-07-03", "cves": ["CVE-2025-5777", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Citrix NetScaler Bleed 2"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-34509/", "date": "2025-07-03", "cves": ["CVE-2025-34509", "CVE-2025-34510", "CVE-2025-34511", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Sitecore Experience Platform Hardcoded Credentials"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-34508/", "date": "2025-06-18", "cves": ["CVE-2025-34508", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": ZendTo Path Traversal"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/cve-2025-34508-another-file-sharing-application-another-path-traversal/", "date": "2025-06-17", "cves": ["CVE-2025-34508"], "vendors": ["Path Traversal Vulnerability Discovered in ZendTo"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/what-7000-nodezero-rat-attempts-show-us-about-cyber-security/", "date": "2025-06-09", "cves": [], "vendors": ["Insights from 7,000+ NodeZero RAT Deployments"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-20188/", "date": "2025-05-29", "cves": ["CVE-2025-20188", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Cisco IOS XE Wireless Controller Remote File Upload"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/cisco-ios-xe-wlc-arbitrary-file-upload-vulnerability-cve-2025-20188-analysis/", "date": "2025-05-29", "cves": ["CVE-2025-20188"], "vendors": ["Cisco IOS XE WLC File Upload Vuln"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/vulnerabilities/cve-2025-32756/", "date": "2025-05-23", "cves": ["CVE-2025-32756", "CVE-2026-20127", "CVE-2026-1603", "CVE-2026-1281", "CVE-2026-1340"], "vendors": [": Fortinet Buffer Overflow Exploit Analyzed"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/attack-blogs/cve-2025-32756-low-rise-jeans-are-back-and-so-are-buffer-overflows/", "date": "2025-05-22", "cves": ["CVE-2025-32756"], "vendors": [": Fortinet RCE Exploited in the Wild"], "researchers": []}, {"url": "https://horizon3.ai/attack-research/n0-attack-paths/how-hackers-weaponize-slack-lessons-from-real-slack-dump-attacks/", "date": "2025-05-20", "cves": [], "vendors": ["How Hackers Weaponize Slack: Lessons From Real Slack Dump"], "researchers": []}]}, {"lab": "Integrity Labs", "url": "https://labs.integrity.pt", "A": 72, "Q": 69, "V": 43, "R": 20, "researchers": [{"name": "Gil Correia", "count": 7}, {"name": "Bruno Barreirinhas", "count": 5}, {"name": "Diogo Real", "count": 4}, {"name": "Lucas Machado", "count": 4}, {"name": "Bruno Morisson", "count": 3}, {"name": "FÃ", "count": 3}, {"name": "Caio Farias", "count": 3}, {"name": "ClÃ", "count": 2}, {"name": "Paulo Monteiro", "count": 2}, {"name": "Guilherme Santos", "count": 2}, {"name": "Filipe Azevedo", "count": 2}, {"name": "JoÃ", "count": 2}, {"name": "Pedro Valadares Pinho", "count": 2}, {"name": "Discovered and developed by Marco Vaz", "count": 1}, {"name": "Fernando CÃ", "count": 1}, {"name": "Filipe Bernardo", "count": 1}, {"name": "Ricardo Nunes", "count": 1}, {"name": "Marco Vieira", "count": 1}, {"name": "Gil Pratas", "count": 1}, {"name": "Pedro Miguel Ferreira", "count": 1}], "vendors": [{"name": "Progress", "count": 5}, {"name": "Craft CMS", "count": 5}, {"name": "Joobi", "count": 3}, {"name": "SAP", "count": 2}, {"name": "Zoho", "count": 2}, {"name": "Crocoblock", "count": 2}, {"name": "W3", "count": 2}, {"name": "ProcessWire", "count": 2}, {"name": "The OpenNMS Group", "count": 2}, {"name": "Esri", "count": 2}, {"name": "aheadWorks", "count": 1}, {"name": "28 Jan 2014", "count": 1}, {"name": "feedback all versions up to", "count": 1}, {"name": "15 April 2015", "count": 1}, {"name": "Vasco", "count": 1}, {"name": "HikaShop", "count": 1}, {"name": "Joomla Content Editor", "count": 1}, {"name": "Acyba", "count": 1}, {"name": "JEvents", "count": 1}, {"name": "osTicket", "count": 1}, {"name": "Liferay", "count": 1}, {"name": "31 March 2016", "count": 1}, {"name": "HP", "count": 1}, {"name": "PortSwigger", "count": 1}, {"name": "SOPlanning", "count": 1}, {"name": "Outsystems", "count": 1}, {"name": "OutSystems", "count": 1}, {"name": "Gurock", "count": 1}, {"name": "Apereo", "count": 1}, {"name": "DNNSoftware", "count": 1}, {"name": "Translate AI Multilingual Solutions", "count": 1}, {"name": "SmarterTools", "count": 1}, {"name": "Orchard Project", "count": 1}, {"name": "5. Vulnerability Timeline", "count": 1}, {"name": "marked fixed in version 7.4.0", "count": 1}, {"name": "acknowledged report", "count": 1}, {"name": "CrafterCMS", "count": 1}, {"name": "IBM", "count": 1}, {"name": "TIBCO", "count": 1}, {"name": "Unify", "count": 1}, {"name": "Environmental Systems Research", "count": 1}, {"name": "Flipsnack", "count": 1}, {"name": "Umbraco", "count": 1}], "advisories": [{"url": "https://labs.integrity.pt/advisories/cve-2025-48953/", "date": "2025-06-03", "cves": ["CVE-2025-48953"], "vendors": ["Umbraco"], "researchers": ["JoÃ"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-40487/", "date": "2023-04-06", "cves": ["CVE-2022-40487"], "vendors": ["ProcessWire"], "researchers": ["Filipe Azevedo"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-40488/", "date": "2023-04-06", "cves": ["CVE-2022-40488"], "vendors": ["ProcessWire"], "researchers": ["Filipe Azevedo"]}, {"url": "https://labs.integrity.pt/advisories/cve-2023-26020/", "date": "2023-02-27", "cves": ["CVE-2023-26020"], "vendors": ["CrafterCMS"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-46496/", "date": "2023-02-06", "cves": ["CVE-2022-46496"], "vendors": ["acknowledged report"], "researchers": ["Bruno Morisson"]}, {"url": "https://labs.integrity.pt/advisories/cve-2023-0642/", "date": "2023-02-03", "cves": ["CVE-2023-0642"], "vendors": ["marked fixed in version 7.4.0"], "researchers": ["Gil Pratas"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37720/", "date": "2022-11-14", "cves": ["CVE-2022-37720"], "vendors": ["Orchard Project"], "researchers": ["Bruno Barreirinhas"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37721/", "date": "2022-11-14", "cves": ["CVE-2022-37721"], "vendors": ["5. Vulnerability Timeline"], "researchers": ["Bruno Barreirinhas"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37246/", "date": "2022-09-07", "cves": ["CVE-2022-37246"], "vendors": ["Craft CMS"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37247/", "date": "2022-09-07", "cves": ["CVE-2022-37247"], "vendors": ["Craft CMS"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37248/", "date": "2022-09-07", "cves": ["CVE-2022-37248"], "vendors": ["Craft CMS"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37250/", "date": "2022-09-07", "cves": ["CVE-2022-37250"], "vendors": ["Craft CMS"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-37251/", "date": "2022-09-07", "cves": ["CVE-2022-37251"], "vendors": ["Craft CMS"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/CVE-2020-13639/", "date": "2021-08-20", "cves": ["CVE-2020-13639"], "vendors": ["OutSystems"], "researchers": ["FÃ"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-29357/", "date": "2021-04-13", "cves": ["CVE-2021-29357"], "vendors": ["Outsystems"], "researchers": ["Ricardo Nunes"]}, {"url": "https://labs.integrity.pt/advisories/cve-2020-13963/", "date": "2021-03-19", "cves": ["CVE-2020-13963"], "vendors": ["SOPlanning"], "researchers": ["Bruno Morisson"]}, {"url": "https://labs.integrity.pt/advisories/cve-2018-10377/", "date": "2018-06-15", "cves": ["CVE-2018-10377"], "vendors": ["PortSwigger"], "researchers": ["Bruno Morisson"]}, {"url": "https://labs.integrity.pt/advisories/cve-2017-10992/", "date": "2017-09-19", "cves": ["CVE-2017-10992"], "vendors": ["HP"], "researchers": ["Filipe Bernardo"]}, {"url": "https://labs.integrity.pt/advisories/cve-2017-9362/", "date": "2017-09-19", "cves": ["CVE-2017-9362"], "vendors": ["Zoho"], "researchers": ["Paulo Monteiro"]}, {"url": "https://labs.integrity.pt/advisories/cve-2017-9376/", "date": "2017-09-19", "cves": ["CVE-2017-9376"], "vendors": ["Zoho"], "researchers": ["Paulo Monteiro"]}, {"url": "https://labs.integrity.pt/advisories/dlink-dgs-1100-hardcoded-keys/", "date": "2016-08-24", "cves": ["CVE-2016-10125", "CVE-2016-3670", "CVE-2017-10992", "CVE-2025-55107", "CVE-2025-55103", "CVE-2025-53122", "CVE-2025-53121", "CVE-2025-48953"], "vendors": ["31 March 2016"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2016-3670/", "date": "2016-05-27", "cves": ["CVE-2016-3670"], "vendors": ["Liferay"], "researchers": ["Fernando CÃ"]}, {"url": "https://labs.integrity.pt/advisories/insecure-direct-object-reference-in-osticket-attachments/", "date": "2016-02-24", "cves": ["CVE-2015-7968", "CVE-2016-4056", "CVE-2025-55107", "CVE-2025-55103", "CVE-2025-53122", "CVE-2025-53121", "CVE-2025-48953"], "vendors": ["osTicket"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-pending-stored-cross-site-scripting-in-typo3-bookmarks/", "date": "2016-02-24", "cves": ["CVE-2016-4056", "CVE-2016-3670", "CVE-2025-55107", "CVE-2025-55103", "CVE-2025-53122", "CVE-2025-53121", "CVE-2025-48953"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7968/", "date": "2016-01-12", "cves": ["CVE-2015-7968"], "vendors": ["SAP"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/google-aosp-email-app-html-injection/", "date": "2015-11-16", "cves": ["CVE-2015-7342", "CVE-2015-7968", "CVE-2025-55107", "CVE-2025-55103", "CVE-2025-53122", "CVE-2025-53121", "CVE-2025-48953"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7343/", "date": "2015-10-28", "cves": ["CVE-2015-7343"], "vendors": ["Joobi"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7338/", "date": "2015-10-28", "cves": ["CVE-2015-7338"], "vendors": ["Acyba"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7340/", "date": "2015-10-28", "cves": ["CVE-2015-7340"], "vendors": ["JEvents"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7342/", "date": "2015-10-28", "cves": ["CVE-2015-7342"], "vendors": ["Joobi"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7344/", "date": "2015-10-15", "cves": ["CVE-2015-7344"], "vendors": ["HikaShop"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7339/", "date": "2015-10-15", "cves": ["CVE-2015-7339"], "vendors": ["Joomla Content Editor"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7349/", "date": "2015-10-06", "cves": ["CVE-2015-7349"], "vendors": ["Vasco"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-3784/", "date": "2015-08-14", "cves": ["CVE-2015-3784"], "vendors": ["15 April 2015"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2014-4925/", "date": "2015-01-08", "cves": ["CVE-2014-4925"], "vendors": ["feedback all versions up to"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2014-1634/", "date": "2014-09-20", "cves": ["CVE-2014-1634"], "vendors": ["aheadWorks"], "researchers": ["ClÃ"]}, {"url": "https://labs.integrity.pt/advisories/cve-2014-1635/", "date": "2014-01-28", "cves": ["CVE-2014-1635"], "vendors": ["28 Jan 2014"], "researchers": ["Discovered and developed by Marco Vaz"]}, {"url": "https://labs.integrity.pt/advisories/cve-2013-3319/", "date": "2013-07-09", "cves": ["CVE-2013-3319"], "vendors": ["SAP"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2015-7341/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-7341"], "vendors": ["Joobi"], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2019-7556/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7556"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2019-7557/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7557"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2019-7558/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7558"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2020-13989/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-13989"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2020-13990/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-13990"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2020-15934/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-15934"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2019-5493/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5493"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2021-38607/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38607"], "vendors": ["Crocoblock"], "researchers": ["Bruno Barreirinhas"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-41844/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41844"], "vendors": ["Crocoblock"], "researchers": ["Bruno Barreirinhas"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-44263/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44263"], "vendors": ["Gurock"], "researchers": ["Marco Vieira"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-42567/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42567"], "vendors": ["Apereo"], "researchers": ["Caio Farias"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-31858/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31858"], "vendors": ["DNNSoftware"], "researchers": ["Bruno Barreirinhas"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-25087/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-25087"], "vendors": ["W3"], "researchers": ["Diogo Real"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-0770/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0770"], "vendors": ["Translate AI Multilingual Solutions"], "researchers": ["Diogo Real"]}, {"url": "https://labs.integrity.pt/advisories/cve-2021-40377/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-40377"], "vendors": ["SmarterTools"], "researchers": ["Diogo Real"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-0828/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-0828"], "vendors": ["W3"], "researchers": ["Diogo Real"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-36967/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36967"], "vendors": ["Progress"], "researchers": ["Guilherme Santos"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-36968/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36968"], "vendors": ["Progress"], "researchers": ["Guilherme Santos"]}, {"url": "https://labs.integrity.pt/advisories/cve-2022-40904/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-40904"], "vendors": [], "researchers": []}, {"url": "https://labs.integrity.pt/advisories/cve-2023-26100/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26100"], "vendors": ["Progress"], "researchers": ["Caio Farias"]}, {"url": "https://labs.integrity.pt/advisories/cve-2023-26101/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26101"], "vendors": ["Progress"], "researchers": ["Caio Farias"]}, {"url": "https://labs.integrity.pt/advisories/cve-2023-38722/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-38722"], "vendors": ["IBM"], "researchers": ["Lucas Machado"]}, {"url": "https://labs.integrity.pt/advisories/cve-2023-26218/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26218"], "vendors": ["TIBCO"], "researchers": ["Pedro Miguel Ferreira"]}, {"url": "https://labs.integrity.pt/advisories/cve-2023-48166/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-48166"], "vendors": ["Unify"], "researchers": ["JoÃ"]}, {"url": "https://labs.integrity.pt/advisories/cve-2024-0396/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-0396"], "vendors": ["Progress"], "researchers": ["Pedro Valadares Pinho"]}, {"url": "https://labs.integrity.pt/advisories/cve-2024-25697/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-25697"], "vendors": ["Environmental Systems Research"], "researchers": ["Pedro Valadares Pinho"]}, {"url": "https://labs.integrity.pt/advisories/cve-2024-28627/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-28627"], "vendors": ["Flipsnack"], "researchers": ["Gil Correia"]}, {"url": "https://labs.integrity.pt/advisories/CVE-2025-3760/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3760"], "vendors": [], "researchers": ["Lucas Machado"]}, {"url": "https://labs.integrity.pt/advisories/cve-2025-3760/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3760"], "vendors": [], "researchers": ["Lucas Machado"]}, {"url": "https://labs.integrity.pt/advisories/cve-2025-53121/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53121"], "vendors": ["The OpenNMS Group"], "researchers": ["FÃ"]}, {"url": "https://labs.integrity.pt/advisories/cve-2025-53122/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53122"], "vendors": ["The OpenNMS Group"], "researchers": ["FÃ"]}, {"url": "https://labs.integrity.pt/advisories/cve-2025-55103/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-55103"], "vendors": ["Esri"], "researchers": ["Lucas Machado"]}, {"url": "https://labs.integrity.pt/advisories/cve-2025-55107/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-55107"], "vendors": ["Esri"], "researchers": ["ClÃ"]}]}, {"lab": "IOActive", "url": "https://www.ioactive.com", "A": 74, "Q": 24, "V": 8, "R": 38, "researchers": [{"name": "Daniel Kachakil", "count": 6}, {"name": "Tao Sauvage", "count": 5}, {"name": "Lucas Apa", "count": 5}, {"name": "Cesar Cerrudo", "count": 5}, {"name": "Fernando Arnaboldi", "count": 4}, {"name": "Mike Davis", "count": 4}, {"name": "Gabriel Gonzalez", "count": 4}, {"name": "Ethan Shackelford", "count": 3}, {"name": "Ilja van Sprundel", "count": 3}, {"name": "Daniel Martinez", "count": 3}, {"name": "Tiago Assumpcao", "count": 2}, {"name": "Chris Valasek", "count": 2}, {"name": "Carlos Hollman", "count": 2}, {"name": "Mario Ballano", "count": 2}, {"name": "Joseph Tartaro", "count": 1}, {"name": "John Sheehy", "count": 1}, {"name": "IOActive Research", "count": 1}, {"name": "Nathaniel Theis", "count": 1}, {"name": "Donato Ferrante", "count": 1}, {"name": "Example - IOActive", "count": 1}, {"name": "Brook S", "count": 1}, {"name": "Enrique Nissim", "count": 1}, {"name": "Thomas Kilbride", "count": 1}, {"name": "Segway miniPRO Vulnerabilities - IOActive", "count": 1}, {"name": "Corey Thuen", "count": 1}, {"name": "Sofiane Talmat", "count": 1}, {"name": "Ruben Santamarta", "count": 1}, {"name": "Gunter Ollmann", "count": 1}, {"name": "Lucas Lundgren", "count": 1}, {"name": "Dan Kaminsky", "count": 1}, {"name": "Walter Pearce", "count": 1}, {"name": "Tiller Beauchamp", "count": 1}, {"name": "Richard van Eeden", "count": 1}, {"name": "Chris Paget", "count": 1}, {"name": "15%", "count": 1}, {"name": "Sergio Ruiz", "count": 1}, {"name": "Ehab Hussein", "count": 1}, {"name": "Josh Hammond", "count": 1}], "vendors": [{"name": "custom SMI handlers", "count": 1}, {"name": "through responsible disclosure and many", "count": 1}, {"name": "not responding", "count": 1}, {"name": "Weidmüller", "count": 1}, {"name": "09", "count": 1}, {"name": "website [2] over the course of researc", "count": 1}, {"name": "in February 2017", "count": 1}, {"name": "to validate the issues", "count": 1}], "advisories": [{"url": "https://www.ioactive.com/ioactive-security-advisory-circutor-sge-plc1000-sge-plc50-v-0-9-2-servicepack-140411/", "date": "2025-03-14", "cves": [], "vendors": [], "researchers": ["Gabriel Gonzalez"]}, {"url": "https://www.ioactive.com/masmovil-comtrend-router-multiple-vulnerabilities/", "date": "2023-08-24", "cves": [], "vendors": [], "researchers": ["Gabriel Gonzalez"]}, {"url": "https://www.ioactive.com/planet-networking-vulnerabilities-identified/", "date": "2022-09-29", "cves": [], "vendors": [], "researchers": ["Daniel Martinez"]}, {"url": "https://www.ioactive.com/wideye-advisory-and-current-satcom-security-concerns/", "date": "2022-02-28", "cves": [], "vendors": [], "researchers": ["Ethan Shackelford"]}, {"url": "https://www.ioactive.com/multiple-vulnerabilities-in-bhu-wifi-urouter/", "date": "2015-09-05", "cves": [], "vendors": [], "researchers": ["Tao Sauvage"]}, {"url": "https://www.ioactive.com/tales-from-the-call-gate-an-smm-supervisor-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-20596"], "vendors": ["custom SMI handlers"], "researchers": ["Joseph Tartaro"]}, {"url": "https://www.ioactive.com/vulnerability-and-patch-management-every-day-is-a-zero-day/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["John Sheehy"]}, {"url": "https://www.ioactive.com/ioactive-advisory-id-tech-disclosure/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["IOActive Research"]}, {"url": "https://www.ioactive.com/microsoft-bluetooth-driver-spoofing-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31182"], "vendors": [], "researchers": ["Nathaniel Theis"]}, {"url": "https://www.ioactive.com/trivial-vulnerabilities-big-risks/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Tiago Assumpcao"]}, {"url": "https://www.ioactive.com/cve-2020-16877-exploiting-microsoft-store-games/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16877"], "vendors": [], "researchers": ["Donato Ferrante"]}, {"url": "https://www.ioactive.com/file-squatting-exploitation-by-example/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Example - IOActive"]}, {"url": "https://www.ioactive.com/cvss-vulnerability-management-and-organizational-risk/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Brook S"]}, {"url": "https://www.ioactive.com/hootoo-security-advisory/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Tao Sauvage"]}, {"url": "https://www.ioactive.com/hidden-exploitable-behaviors-in-programming-languages/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Fernando Arnaboldi"]}, {"url": "https://www.ioactive.com/microsoft-kernel-graphic-driver-kernel-memory-address-disclosure/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Enrique Nissim"]}, {"url": "https://www.ioactive.com/multiple-critical-vulnerabilities-found/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Thomas Kilbride"]}, {"url": "https://www.ioactive.com/ninebot-by-segway-minipro-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Segway miniPRO Vulnerabilities - IOActive"]}, {"url": "https://www.ioactive.com/secure-messaging-application-vulnerabilities-identified/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["through responsible disclosure and many"], "researchers": ["Mike Davis"]}, {"url": "https://www.ioactive.com/security-vulnerabilities-in-routers/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Tao Sauvage"]}, {"url": "https://www.ioactive.com/lets-terminate-xml-schema-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Fernando Arnaboldi"]}, {"url": "https://www.ioactive.com/securing-the-connected-car-commonalities-in-vehicle-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Corey Thuen"]}, {"url": "https://www.ioactive.com/multiple-vulnerabilities-in-d-link-dcs-5009l-ip-camera/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Tao Sauvage"]}, {"url": "https://www.ioactive.com/assessing-and-exploiting-xml-schemas-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Fernando Arnaboldi"]}, {"url": "https://www.ioactive.com/privilege-escalation-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-8109", "CVE-2015-8110"], "vendors": [], "researchers": ["Sofiane Talmat"]}, {"url": "https://www.ioactive.com/harman-kardon-uconnect-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Chris Valasek"]}, {"url": "https://www.ioactive.com/remote-exploitation-of-an-unaltered-passenger-vehicle/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Chris Valasek"]}, {"url": "https://www.ioactive.com/hacking-wireless-ghosts-vulnerable-for-years/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Lucas Apa"]}, {"url": "https://www.ioactive.com/petcube-remote-wireless-pet-camera-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Mike Davis"]}, {"url": "https://www.ioactive.com/belkin-wemo-home-automation-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Mike Davis"]}, {"url": "https://www.ioactive.com/oleumtech-wireless-sensor-network-vulnerabilites/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Lucas Apa"]}, {"url": "https://www.ioactive.com/sielco-sistemi-winlog-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Carlos Hollman"]}, {"url": "https://www.ioactive.com/vulnerability-bureaucracy-unchanged-after-12-years/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["not responding"], "researchers": ["Cesar Cerrudo"]}, {"url": "https://www.ioactive.com/emulating-binaries-to-discover-vulnerabilities-in-industrial-devices/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Weidmüller"], "researchers": ["Ruben Santamarta"]}, {"url": "https://www.ioactive.com/dasdec-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Mike Davis"]}, {"url": "https://www.ioactive.com/prosoft-technology-radiolinx-controlscape-prng-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Lucas Apa"]}, {"url": "https://www.ioactive.com/you-can-not-trust-social-media-twitter-vulnerable/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Cesar Cerrudo"]}, {"url": "https://www.ioactive.com/exploits-curdled-milk-and-nukes-oh-my/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Gunter Ollmann"]}, {"url": "https://www.ioactive.com/wellintech-kingview-and-kinghistorian-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Carlos Hollman"]}, {"url": "https://www.ioactive.com/xbmc-file-traversal-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Lucas Lundgren"]}, {"url": "https://www.ioactive.com/multiple-vulnerabilities-in-fwknop/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Fernando Arnaboldi"]}, {"url": "https://www.ioactive.com/windows-kernel-library-filename-parsing-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Lucas Apa"]}, {"url": "https://www.ioactive.com/free-windows-vulnerability-for-nsa/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Cesar Cerrudo"]}, {"url": "https://www.ioactive.com/windows-vulnerability-paradox/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Cesar Cerrudo"]}, {"url": "https://www.ioactive.com/easy-and-quick-vulnerability-hunting-in-windows/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Cesar Cerrudo"]}, {"url": "https://www.ioactive.com/multiple-vulnerabilities-in-accoria-web-server/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Ilja van Sprundel"]}, {"url": "https://www.ioactive.com/microsoft-windows-cryptoapi-x-509-spoofing-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-2510", "CVE-2009-2511"], "vendors": [], "researchers": ["Dan Kaminsky"]}, {"url": "https://www.ioactive.com/exploitation-in-the-new-win32-environment/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Walter Pearce"]}, {"url": "https://www.ioactive.com/appletalk-response-packet-parsing-array-over-indexing-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-2193"], "vendors": [], "researchers": ["Ilja van Sprundel"]}, {"url": "https://www.ioactive.com/diskimages-helper-band-size-vulnerability/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-0150"], "vendors": ["09"], "researchers": ["Tiller Beauchamp"]}, {"url": "https://www.ioactive.com/multiple-vulnerabilities-in-apples-mobileme-service/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Richard van Eeden"]}, {"url": "https://www.ioactive.com/multiple-total-remote-compromise-vulnerabilities-in-mercury-sitescope-monitoring-software/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2007-6257"], "vendors": [], "researchers": ["Chris Paget"]}, {"url": "https://www.ioactive.com/ioactive-commonalities-vehicle-vulnerabilities-22update/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["15%"]}, {"url": "https://www.ioactive.com/ioactive-security-advisory-hikvision-camera-denial-of-service/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28811"], "vendors": [], "researchers": ["Sergio Ruiz"]}, {"url": "https://www.ioactive.com/ioactive-security-advisory-movistar-4g-router-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-2414", "CVE-2024-2415", "CVE-2024-2416"], "vendors": [], "researchers": ["Gabriel Gonzalez"]}, {"url": "https://www.ioactive.com/ioactive-security-advisory-kunbus-revolution-pi-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Ethan Shackelford"]}, {"url": "https://www.ioactive.com/ioactive-security-advisory-lamassu-douro-bitcoin-atm-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-0175", "CVE-2024-0176", "CVE-2024-0177"], "vendors": [], "researchers": ["Gabriel Gonzalez"]}, {"url": "https://www.ioactive.com/ioactive-security-advisory-socomec-net-vision-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Daniel Martinez"]}, {"url": "https://www.ioactive.com/ge-reason-s20-industrial-managed-ethernet-switch-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Daniel Martinez"]}, {"url": "https://www.ioactive.com/verint-ptz-cameras-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Mario Ballano"]}, {"url": "https://www.ioactive.com/moog-exo-series-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Mario Ballano"]}, {"url": "https://www.ioactive.com/ge-grid-solutions-reason-rt430-gnss-precision-time-clock-multiple-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Ehab Hussein"]}, {"url": "https://www.ioactive.com/pppd-vulnerable-to-buffer-overflow-cve-2020-8597/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-8597"], "vendors": [], "researchers": ["Ilja van Sprundel"]}, {"url": "https://www.ioactive.com/android-aosp-download-provider-sql-injection-in-query-projection-parameter-cve-2019-2211/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-2211"], "vendors": [], "researchers": ["Daniel Kachakil"]}, {"url": "https://www.ioactive.com/android-aosp-download-provider-sql-injection-in-query-sort-parameter-cve-2019-2196/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-2196"], "vendors": [], "researchers": ["Daniel Kachakil"]}, {"url": "https://www.ioactive.com/android-aosp-download-provider-sql-injection-in-query-selection-parameter-cve-2019-2198/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-2198"], "vendors": [], "researchers": ["Daniel Kachakil"]}, {"url": "https://www.ioactive.com/android-aosp-download-provider-sql-injection-cve-2018-9493/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9493"], "vendors": [], "researchers": ["Daniel Kachakil"]}, {"url": "https://www.ioactive.com/android-aosp-download-provider-request-headers-disclosure-cve-2018-9546/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9546"], "vendors": [], "researchers": ["Daniel Kachakil"]}, {"url": "https://www.ioactive.com/android-aosp-download-provider-permission-bypass-cve-2018-9468/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9468"], "vendors": [], "researchers": ["Daniel Kachakil"]}, {"url": "https://www.ioactive.com/satellite-insecurity-vulnerability-analysis-of-wideye-satcom-terminals/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["website [2] over the course of researc"], "researchers": ["Ethan Shackelford"]}, {"url": "https://www.ioactive.com/commonalities-in-vehicle-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Josh Hammond"]}, {"url": "https://www.ioactive.com/trivial-vulnerabilities-serious-risks/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Tiago Assumpcao"]}, {"url": "https://www.ioactive.com/exploiting-industrial-collaborative-robots/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["in February 2017"], "researchers": ["Lucas Apa"]}, {"url": "https://www.ioactive.com/linksys-smart-wi-fi-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["to validate the issues"], "researchers": ["Tao Sauvage"]}]}, {"lab": "JFrog Security Research", "url": "https://research.jfrog.com", "A": 183, "Q": 176, "V": 91, "R": 24, "researchers": [{"name": "Uriya Yavnieli", "count": 37}, {"name": "Ori Hollander", "count": 35}, {"name": "Denys Vozniuk", "count": 26}, {"name": "Natan Nehorai", "count": 21}, {"name": "JFrog Collab", "count": 14}, {"name": "Omer Kaspi", "count": 9}, {"name": "Ben Barnea", "count": 6}, {"name": "Assaf Levkovich", "count": 5}, {"name": "Naveh Racovsky", "count": 4}, {"name": "Yair Mizrahi", "count": 4}, {"name": "Or Peles", "count": 3}, {"name": "Andrey Polkovnychenko", "count": 3}, {"name": "David Cohen", "count": 3}, {"name": "Uriya Yavniely", "count": 2}, {"name": "Maor Vermucht", "count": 2}, {"name": "Nitay Meiron", "count": 2}, {"name": "Goni Golan", "count": 1}, {"name": "Ilya Khivrich", "count": 1}, {"name": "David Fadida", "count": 1}, {"name": "Zhang Zeyu", "count": 1}, {"name": "Andrey Polkovnichenko", "count": 1}, {"name": "Liav Gutman", "count": 1}, {"name": "Brian Moussalli", "count": 1}, {"name": "Ofri Ouzan", "count": 1}], "vendors": [{"name": "InterNiche TCP/IP", "count": 14}, {"name": "BusyBox", "count": 14}, {"name": "Realtek Ameba", "count": 8}, {"name": "PeerTube", "count": 7}, {"name": "ClickHouse", "count": 7}, {"name": "MiniUPnP", "count": 6}, {"name": "mage-ai", "count": 5}, {"name": "Unified Automation C++ based OPC UA Client Server", "count": 5}, {"name": "PJLIB", "count": 5}, {"name": "github.com/chaos-mesh/chaos-mesh", "count": 4}, {"name": "parisneo/lollms-webui", "count": 4}, {"name": "n8n", "count": 3}, {"name": "mlflow", "count": 3}, {"name": "org.xerial.snappy:snappy-java", "count": 3}, {"name": "Unified Automation C++ Based OPC UA PubSub", "count": 3}, {"name": "Qualcomm QCMAP", "count": 3}, {"name": "picklescan", "count": 3}, {"name": "mcp-run-python", "count": 2}, {"name": "flowise", "count": 2}, {"name": "libxmljs2", "count": 2}, {"name": "libxmljs", "count": 2}, {"name": "UA .NET", "count": 2}, {"name": "vite", "count": 2}, {"name": "Cargo", "count": 2}, {"name": "libmodbus", "count": 2}, {"name": "Node.js", "count": 2}, {"name": "Netty", "count": 2}, {"name": "libx11", "count": 2}, {"name": "utcp", "count": 1}, {"name": "Litmuschaos:litmus", "count": 1}, {"name": "dspy", "count": 1}, {"name": "@react-native-community/cli-server-api", "count": 1}, {"name": "oatpp:oatpp-mcp", "count": 1}, {"name": "txtai", "count": 1}, {"name": "smolagents", "count": 1}, {"name": "@openai/codex", "count": 1}, {"name": "mcp-remote", "count": 1}, {"name": "GNU Wget", "count": 1}, {"name": "weave", "count": 1}, {"name": "guardrails-ai", "count": 1}, {"name": "h2o-core", "count": 1}, {"name": "deeplake", "count": 1}, {"name": "vanna", "count": 1}, {"name": "sqlparse", "count": 1}, {"name": "net.minidev:json-smart", "count": 1}, {"name": "proxy", "count": 1}, {"name": "Yamale", "count": 1}, {"name": "uri-template-lite", "count": 1}, {"name": "TensorFlow", "count": 1}, {"name": "vector-admin", "count": 1}, {"name": "webfinger.js", "count": 1}, {"name": "snowflake-connector-python", "count": 1}, {"name": "QNX slinger", "count": 1}, {"name": "semver-regex", "count": 1}, {"name": "Tensorflow Serving", "count": 1}, {"name": "com.squareup.okio:okio", "count": 1}, {"name": "org.codehaus.plexus:plexus-archiver", "count": 1}, {"name": "Pengutronix RAUC", "count": 1}, {"name": "QEMU", "count": 1}, {"name": "pymatgen", "count": 1}, {"name": "HAProxy", "count": 1}, {"name": "markdown-link-extractor", "count": 1}, {"name": "ml.combust.mleap.mleap-tensorflow", "count": 1}, {"name": "com.squareup.okhttp3:okhttp-brotli", "count": 1}, {"name": "libtiff", "count": 1}, {"name": "keras", "count": 1}, {"name": "activitypub_federation", "count": 1}, {"name": "libtiff:libtiff", "count": 1}, {"name": "org.codehaus.jettison:jettison", "count": 1}, {"name": "org.eclipse.jetty:xml", "count": 1}, {"name": "jquery-validation", "count": 1}, {"name": "GoAhead", "count": 1}, {"name": "H2 Database", "count": 1}, {"name": "hawk", "count": 1}, {"name": "Javassist", "count": 1}, {"name": "@fedify/fedify", "count": 1}, {"name": "Envoy Proxy", "count": 1}, {"name": "eth-account", "count": 1}, {"name": "org.apache.shardingsphere:shardingsphere", "count": 1}, {"name": "CivetWeb", "count": 1}, {"name": "Apache's mod_sed filter module", "count": 1}, {"name": "Cursor CLI", "count": 1}, {"name": "devcert", "count": 1}, {"name": "Apache Cassandra", "count": 1}, {"name": "cleo", "count": 1}, {"name": "couchdb", "count": 1}, {"name": "Caret Editor", "count": 1}, {"name": "conduit-hyper", "count": 1}, {"name": "AnythingLLM", "count": 1}, {"name": "github.com/mholt/archiver/v3", "count": 1}, {"name": "axum-core", "count": 1}], "advisories": [{"url": "https://research.jfrog.com/vulnerabilities/mcp-run-python-lack-of-isolation-mcp-takeover-jfsa-2026-001653030/", "date": "2026-02-09", "cves": ["CVE-2026-25905"], "vendors": ["mcp-run-python"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/mcp-run-python-deno-ssrf-jfsa-2026-001653029/", "date": "2026-02-09", "cves": ["CVE-2026-25904"], "vendors": ["mcp-run-python"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/n8n-expression-node-rce/", "date": "2026-01-27", "cves": ["CVE-2026-1470"], "vendors": ["n8n"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/n8n-python-runner-sandbox-escape-jfsa-2026-001651077/", "date": "2026-01-18", "cves": ["CVE-2026-0863"], "vendors": ["n8n"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/nodejs-fs-permissions-bypass-cve-2025-55130/", "date": "2026-01-13", "cves": ["CVE-2025-55130"], "vendors": ["Node.js"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/python-utcp-untrusted-manual-command-execution-jfsa-2025-001648329/", "date": "2025-12-11", "cves": ["CVE-2025-14542"], "vendors": ["utcp"], "researchers": ["Or Peles"]}, {"url": "https://research.jfrog.com/vulnerabilities/litmus-jwt-missing-entropy-elevation-jfsa-2025-001648159/", "date": "2025-12-08", "cves": ["CVE-2025-14261"], "vendors": ["Litmuschaos:litmus"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/dspy-sandbox-escape-arbitrary-file-read-jfsa-2025-001495652/", "date": "2025-11-04", "cves": ["CVE-2025-12695"], "vendors": ["dspy"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/n8n-git-node-rce/", "date": "2025-11-04", "cves": ["CVE-2025-62726"], "vendors": ["n8n"], "researchers": ["Assaf Levkovich"]}, {"url": "https://research.jfrog.com/vulnerabilities/cursor-cli-untrusted-project-rce/", "date": "2025-11-04", "cves": ["CVE-2025-61592"], "vendors": ["Cursor CLI"], "researchers": ["Assaf Levkovich"]}, {"url": "https://research.jfrog.com/vulnerabilities/react-native-cli-command-injection-jfsa-2025-001495618/", "date": "2025-11-03", "cves": ["CVE-2025-11953"], "vendors": ["@react-native-community/cli-server-api"], "researchers": ["Or Peles"]}, {"url": "https://research.jfrog.com/vulnerabilities/oatpp-mcp-prompt-hijacking-jfsa-2025-001494691/", "date": "2025-10-20", "cves": ["CVE-2025-6515"], "vendors": ["oatpp:oatpp-mcp"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/txtai-arbitrary-file-write-jfsa-2025-001471363/", "date": "2025-09-22", "cves": ["CVE-2025-10854"], "vendors": ["txtai"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/picklescan-cve-2025-10155/", "date": "2025-09-21", "cves": ["CVE-2025-10155"], "vendors": ["picklescan"], "researchers": ["David Cohen"]}, {"url": "https://research.jfrog.com/vulnerabilities/picklescan-cve-2025-10156/", "date": "2025-09-21", "cves": ["CVE-2025-10156"], "vendors": ["picklescan"], "researchers": ["David Cohen"]}, {"url": "https://research.jfrog.com/vulnerabilities/picklescan-cve-2025-10157/", "date": "2025-09-21", "cves": ["CVE-2025-10157"], "vendors": ["picklescan"], "researchers": ["David Cohen"]}, {"url": "https://research.jfrog.com/vulnerabilities/chaos-mesh-command-injection-cleaniptables-jfsa-2025-001449536/", "date": "2025-09-15", "cves": ["CVE-2025-59361", "CVE-2025-59358"], "vendors": ["github.com/chaos-mesh/chaos-mesh"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/chaos-mesh-command-injection-killprocesses-jfsa-2025-001449535/", "date": "2025-09-15", "cves": ["CVE-2025-59360", "CVE-2025-59358"], "vendors": ["github.com/chaos-mesh/chaos-mesh"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/chaos-mesh-command-injection-clean-tcs-jfsa-2025-001449534/", "date": "2025-09-15", "cves": ["CVE-2025-59359", "CVE-2025-59358"], "vendors": ["github.com/chaos-mesh/chaos-mesh"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/chaos-mesh-debugging-server-denial-of-service-jfsa-2025-001449533/", "date": "2025-09-15", "cves": ["CVE-2025-59358"], "vendors": ["github.com/chaos-mesh/chaos-mesh"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/vite-arbitrary-html-file-leak/", "date": "2025-09-15", "cves": ["CVE-2025-58752"], "vendors": ["vite"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/vite-arbitrary-private-file-leak/", "date": "2025-09-15", "cves": ["CVE-2025-58751"], "vendors": ["vite"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/smolagents-local-python-sandbox-escape-jfsa-2025-001434277/", "date": "2025-09-03", "cves": ["CVE-2025-9959"], "vendors": ["smolagents"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/flowise-os-command-remote-code-execution-jfsa-2025-001380578/", "date": "2025-08-14", "cves": ["CVE-2025-8943"], "vendors": ["flowise"], "researchers": ["Assaf Levkovich"]}, {"url": "https://research.jfrog.com/vulnerabilities/flowise-js-injection-remote-code-exection-jfsa-2025-001379925/", "date": "2025-08-14", "cves": ["CVE-2025-55346"], "vendors": ["flowise"], "researchers": ["Assaf Levkovich"]}, {"url": "https://research.jfrog.com/vulnerabilities/codex-cli-symlink-arbitrary-file-overwrite-jfsa-2025-001378631/", "date": "2025-08-13", "cves": ["CVE-2025-55345"], "vendors": ["@openai/codex"], "researchers": ["Assaf Levkovich"]}, {"url": "https://research.jfrog.com/vulnerabilities/keras-untrusted-model-arbitrary-file-write/", "date": "2025-08-12", "cves": ["CVE-2025-8747", "CVE-2025-1550"], "vendors": ["keras"], "researchers": ["Andrey Polkovnichenko"]}, {"url": "https://research.jfrog.com/vulnerabilities/webfingerjs-blind-ssrf/", "date": "2025-07-28", "cves": ["CVE-2025-54590"], "vendors": ["webfinger.js"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/mcp-remote-command-injection-rce-jfsa-2025-001290844/", "date": "2025-07-09", "cves": ["CVE-2025-6514"], "vendors": ["mcp-remote"], "researchers": ["Or Peles"]}, {"url": "https://research.jfrog.com/vulnerabilities/tensorflow-serving-stacko-dos/", "date": "2025-05-06", "cves": ["CVE-2025-0649"], "vendors": ["Tensorflow Serving"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-activitypub-playlist-creation-blind-ssrf-dos/", "date": "2025-04-14", "cves": ["CVE-2025-32948"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-arbitrary-playlist-creation-activitypub/", "date": "2025-04-14", "cves": ["CVE-2025-32946"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-arbitrary-playlist-creation-rest/", "date": "2025-04-14", "cves": ["CVE-2025-32945"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-activitypub-crawl-dos/", "date": "2025-04-14", "cves": ["CVE-2025-32947"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-archive-persistent-dos/", "date": "2025-04-14", "cves": ["CVE-2025-32944"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-archive-resource-exhaustion/", "date": "2025-04-14", "cves": ["CVE-2025-32949"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/peertube-hls-path-traversal/", "date": "2025-04-14", "cves": ["CVE-2025-32943"], "vendors": ["PeerTube"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/archiver-zip-slip/", "date": "2025-04-14", "cves": ["CVE-2025-3445", "CVE-2024-0406"], "vendors": ["github.com/mholt/archiver/v3"], "researchers": ["Ofri Ouzan"]}, {"url": "https://research.jfrog.com/vulnerabilities/lemmynet-activitypub-federation-blind-ssrf/", "date": "2025-02-10", "cves": ["CVE-2025-25194"], "vendors": ["activitypub_federation"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/fedify-infinite-loop-blind-ssrf/", "date": "2025-01-20", "cves": ["CVE-2025-23221"], "vendors": ["@fedify/fedify"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/wget-shorthand-urls-ssrf-jfsa-2024-001063927/", "date": "2024-11-19", "cves": ["CVE-2024-10524"], "vendors": ["GNU Wget"], "researchers": ["Goni Golan"]}, {"url": "https://research.jfrog.com/vulnerabilities/mage-ai-pipeline-interaction-request-remote-arbitrary-file-leak-jfsa-2024-001039605/", "date": "2024-08-23", "cves": ["CVE-2024-45190"], "vendors": ["mage-ai"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/mage-ai-git-content-request-remote-arbitrary-file-leak-jfsa-2024-001039604/", "date": "2024-08-23", "cves": ["CVE-2024-45189"], "vendors": ["mage-ai"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/mage-ai-file-content-request-remote-arbitrary-file-leak-jfsa-2024-001039603/", "date": "2024-08-23", "cves": ["CVE-2024-45188"], "vendors": ["mage-ai"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/mage-ai-deleted-users-rce-jfsa-2024-001039602/", "date": "2024-08-23", "cves": ["CVE-2024-45187"], "vendors": ["mage-ai"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/mage-ai-terminal-server-infoleak-jfsa-2024-001039574/", "date": "2024-08-22", "cves": ["CVE-2024-8072"], "vendors": ["mage-ai"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/wandb-weave-server-remote-arbitrary-file-leak-jfsa-2024-001039248/", "date": "2024-07-31", "cves": ["CVE-2024-7340"], "vendors": ["weave"], "researchers": ["Natan Nehorai", "Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/guardrails-rail-xxe-jfsa-2024-001035519/", "date": "2024-07-21", "cves": ["CVE-2024-6961"], "vendors": ["guardrails-ai"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/h2o-model-deserialization-rce-jfsa-2024-001035518/", "date": "2024-07-21", "cves": ["CVE-2024-6960"], "vendors": ["h2o-core"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/deeplake-kaggle-command-injection-jfsa-2024-001035320/", "date": "2024-07-04", "cves": ["CVE-2024-6507"], "vendors": ["deeplake"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/vanna-prompt-injection-rce-jfsa-2024-001034449/", "date": "2024-05-31", "cves": ["CVE-2024-5565"], "vendors": ["vanna"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/libxmljs2-namespaces-type-confusion-rce-jfsa-2024-001034098/", "date": "2024-05-02", "cves": ["CVE-2024-34394"], "vendors": ["libxmljs2"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/libxmljs2-attrs-type-confusion-rce-jfsa-2024-001034097/", "date": "2024-05-02", "cves": ["CVE-2024-34393"], "vendors": ["libxmljs2"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/libxmljs-namespaces-type-confusion-rce-jfsa-2024-001034096/", "date": "2024-05-02", "cves": ["CVE-2024-34392"], "vendors": ["libxmljs"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/libxmljs-attrs-type-confusion-rce-jfsa-2024-001033988/", "date": "2024-05-02", "cves": ["CVE-2024-34391"], "vendors": ["libxmljs"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/sqlparse-stack-exhaustion-dos-jfsa-2024-001031292/", "date": "2024-04-30", "cves": ["CVE-2024-4340"], "vendors": ["sqlparse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/lollms-webui-exposed-endpoints-dos-jfsa-2024-001028816/", "date": "2024-04-16", "cves": ["CVE-2024-1873"], "vendors": ["parisneo/lollms-webui"], "researchers": ["Naveh Racovsky"]}, {"url": "https://research.jfrog.com/vulnerabilities/lollms-webui-exposed-endpoints-dos-jfsa-2024-001028815/", "date": "2024-04-15", "cves": ["CVE-2024-1646"], "vendors": ["parisneo/lollms-webui"], "researchers": ["Naveh Racovsky"]}, {"url": "https://research.jfrog.com/vulnerabilities/lollms-webui-sqli-dos-jfsa-2024-001028814/", "date": "2024-04-15", "cves": ["CVE-2024-1601"], "vendors": ["parisneo/lollms-webui"], "researchers": ["Naveh Racovsky"]}, {"url": "https://research.jfrog.com/vulnerabilities/lollms-webui-dos-jfsa-2024-001028813/", "date": "2024-04-15", "cves": ["CVE-2024-1569"], "vendors": ["parisneo/lollms-webui"], "researchers": ["Naveh Racovsky"]}, {"url": "https://research.jfrog.com/vulnerabilities/mlflow-spark-udf-localpriv-jfsa-2024-000639017/", "date": "2024-02-23", "cves": ["CVE-2024-27134"], "vendors": ["mlflow"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/mlflow-untrusted-dataset-xss-jfsa-2024-000631932/", "date": "2024-02-23", "cves": ["CVE-2024-27133"], "vendors": ["mlflow"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/mlflow-untrusted-recipe-xss-jfsa-2024-000631930/", "date": "2024-02-23", "cves": ["CVE-2024-27132"], "vendors": ["mlflow"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/vector-admin-filter-bypass/", "date": "2024-01-25", "cves": ["CVE-2024-0879"], "vendors": ["vector-admin"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/anythingllm-path-traversal-dos/", "date": "2024-01-22", "cves": ["CVE-2024-22422"], "vendors": ["AnythingLLM"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/couchdb-session-hijacking-localpriv/", "date": "2023-12-14", "cves": ["CVE-2023-45725"], "vendors": ["couchdb"], "researchers": ["Natan Nehorai"]}, {"url": "https://research.jfrog.com/vulnerabilities/mleap-path-traversal-rce-xray-532656/", "date": "2023-11-15", "cves": ["CVE-2023-5245"], "vendors": ["ml.combust.mleap.mleap-tensorflow"], "researchers": ["David Fadida"]}, {"url": "https://research.jfrog.com/vulnerabilities/libxpm-heap-overflow-rce-xray-532777/", "date": "2023-10-04", "cves": ["CVE-2023-43787"], "vendors": ["libx11"], "researchers": ["Yair Mizrahi"]}, {"url": "https://research.jfrog.com/vulnerabilities/libxpm-stack-exhaustion-dos-xray-532775/", "date": "2023-10-04", "cves": ["CVE-2023-43786"], "vendors": ["libx11"], "researchers": ["Yair Mizrahi"]}, {"url": "https://research.jfrog.com/vulnerabilities/plexus-archiver-arbitrary-file-overwrite-xray-526292/", "date": "2023-07-26", "cves": ["CVE-2023-37460"], "vendors": ["org.codehaus.plexus:plexus-archiver"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/apache-sharding-sphere-agent-deserialization-rce-xray-526292/", "date": "2023-07-23", "cves": ["CVE-2023-28754"], "vendors": ["org.apache.shardingsphere:shardingsphere"], "researchers": ["Liav Gutman"]}, {"url": "https://research.jfrog.com/vulnerabilities/okhttp-client-brotli-dos/", "date": "2023-07-19", "cves": ["CVE-2023-3782"], "vendors": ["com.squareup.okhttp3:okhttp-brotli"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/okio-gzip-source-unhandled-exception-dos-xray-589879/", "date": "2023-07-12", "cves": ["CVE-2023-3635"], "vendors": ["com.squareup.okio:okio"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/jetty-xml-parser-xxe-xray-523189/", "date": "2023-07-12", "cves": [], "vendors": ["org.eclipse.jetty:xml"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/snappy-java-integer-overflow-in-compress-leads-to-dos-xray-522075/", "date": "2023-06-19", "cves": ["CVE-2023-34454"], "vendors": ["org.xerial.snappy:snappy-java"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/snappy-java-integer-overflow-in-shuffle-leads-to-dos-xray-522076/", "date": "2023-06-19", "cves": ["CVE-2023-34453"], "vendors": ["org.xerial.snappy:snappy-java"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/snappy-java-unchecked-chunk-length-dos-xray-522074/", "date": "2023-06-19", "cves": ["CVE-2023-34455"], "vendors": ["org.xerial.snappy:snappy-java"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/libtiff-nullderef-dos-xray-522144/", "date": "2023-06-19", "cves": ["CVE-2023-3316"], "vendors": ["libtiff:libtiff"], "researchers": ["Yair Mizrahi"]}, {"url": "https://research.jfrog.com/vulnerabilities/undefined-variable-usage-in-proxy-leads-to-remote-denial-of-service-xray-520917/", "date": "2023-05-30", "cves": ["CVE-2023-2968"], "vendors": ["proxy"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/qemu-rce-xray-520621/", "date": "2023-05-23", "cves": ["CVE-2023-1601", "CVE-2021-4206"], "vendors": ["QEMU"], "researchers": ["Yair Mizrahi"]}, {"url": "https://research.jfrog.com/vulnerabilities/jettison-json-array-dos-xray-427911/", "date": "2023-03-16", "cves": ["CVE-2023-1436"], "vendors": ["org.codehaus.jettison:jettison"], "researchers": ["Nitay Meiron"]}, {"url": "https://research.jfrog.com/vulnerabilities/stack-exhaustion-in-json-smart-leads-to-denial-of-service-when-parsing-malformed-json-xray-427633/", "date": "2023-03-13", "cves": ["CVE-2023-1370"], "vendors": ["net.minidev:json-smart"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/caret-xss-rce/", "date": "2023-01-10", "cves": ["CVE-2022-42967"], "vendors": ["Caret Editor"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/libtiff-buffer-overflow-dos-xray-259933/", "date": "2022-11-16", "cves": ["CVE-2022-34526"], "vendors": ["libtiff"], "researchers": ["Nitay Meiron"]}, {"url": "https://research.jfrog.com/vulnerabilities/conduit-hyper-dos/", "date": "2022-11-01", "cves": ["CVE-2022-39294"], "vendors": ["conduit-hyper"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/snowflake-connector-python-redos-xray-257185/", "date": "2022-10-15", "cves": ["CVE-2022-42965"], "vendors": ["snowflake-connector-python"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/pymatgen-redos-xray-257184/", "date": "2022-10-15", "cves": ["CVE-2022-42964"], "vendors": ["pymatgen"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/cleo-redos-xray-257186/", "date": "2022-10-15", "cves": ["CVE-2022-42966"], "vendors": ["cleo"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nodejs-http-smuggling-xray-231662/", "date": "2022-10-04", "cves": ["CVE-2022-32215"], "vendors": ["Node.js"], "researchers": ["Zhang Zeyu"]}, {"url": "https://research.jfrog.com/vulnerabilities/rust-cargo-symlink-arbitrary-file-overwrite/", "date": "2022-09-14", "cves": ["CVE-2022-36113", "CVE-2022-36114"], "vendors": ["Cargo"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/rust-cargo-zip-bomb-dos/", "date": "2022-09-14", "cves": ["CVE-2022-36114", "CVE-2022-36113"], "vendors": ["Cargo"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/axum-core-dos/", "date": "2022-08-31", "cves": ["CVE-2022-3212"], "vendors": ["axum-core"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/javassist-lce/", "date": "2022-08-11", "cves": [], "vendors": ["Javassist"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/eth-account-redos-xray-248681/", "date": "2022-08-11", "cves": ["CVE-2022-1930"], "vendors": ["eth-account"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/uri-template-lite-redos-xray-211351/", "date": "2022-08-03", "cves": ["CVE-2021-43309"], "vendors": ["uri-template-lite"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-net-standard-stack-dos-xray-229139/", "date": "2022-06-16", "cves": ["CVE-2022-29866"], "vendors": ["UA .NET"], "researchers": ["Uriya Yavniely"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-net-standard-stack-dos-xray-229142/", "date": "2022-06-16", "cves": ["CVE-2022-29863"], "vendors": ["UA .NET"], "researchers": ["Uriya Yavniely"]}, {"url": "https://research.jfrog.com/vulnerabilities/envoy-decompressor-dos-xray-227941/", "date": "2022-06-09", "cves": ["CVE-2022-29225"], "vendors": ["Envoy Proxy"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/apache-httpd-mod-sed-dos-xray-228464/", "date": "2022-06-09", "cves": ["CVE-2022-30522"], "vendors": ["Apache's mod_sed filter module"], "researchers": ["Brian Moussalli"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-ua-extensionobject-type-confusion-xray-75752/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ Based OPC UA PubSub"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-ua-int32-null-deref-xray-75753/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ Based OPC UA PubSub"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-uaunistring-1-byte-oob-xray-75754/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ based OPC UA Client Server"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-unlimited-file-handles-dos-xray-75758/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ based OPC UA Client Server"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-replaceargs-oob-write-xray-75751/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ Based OPC UA PubSub"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-uavariant-null-deref-xray-75756/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ based OPC UA Client Server"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-uavariant-oob-read-xray-75757/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ based OPC UA Client Server"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/ua-cpp-uaunistring-infoleak-xray-75755/", "date": "2022-06-01", "cves": [], "vendors": ["Unified Automation C++ based OPC UA Client Server"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/semver-regex-redos-xray-211349/", "date": "2022-05-30", "cves": ["CVE-2021-43307"], "vendors": ["semver-regex"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/markdown-link-extractor-redos-xray-211350/", "date": "2022-05-30", "cves": ["CVE-2021-43308"], "vendors": ["markdown-link-extractor"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/jquery-validation-redos-xray-211348/", "date": "2022-05-30", "cves": ["CVE-2021-43306"], "vendors": ["jquery-validation"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/hawk-redos-xray-209780/", "date": "2022-05-30", "cves": ["CVE-2022-29167"], "vendors": ["hawk"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/devcert-redos-xray-211352/", "date": "2022-05-30", "cves": ["CVE-2022-1929"], "vendors": ["devcert"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-delta-divide-by-zero-dos-xray-199946/", "date": "2022-03-15", "cves": ["CVE-2021-42389"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-doubledelta-divide-by-zero-dos-xray-199947/", "date": "2022-03-15", "cves": ["CVE-2021-42390"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-gorilla-divide-by-zero-dos-xray-199948/", "date": "2022-03-15", "cves": ["CVE-2021-42391"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-lz4-oob-r-xray-199962/", "date": "2022-03-15", "cves": ["CVE-2021-42388", "CVE-2021-42387"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-lz4-oob-r-xray-199963/", "date": "2022-03-15", "cves": ["CVE-2021-42387", "CVE-2021-42388"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-lz4-rce-xray-199960/", "date": "2022-03-15", "cves": ["CVE-2021-43305", "CVE-2021-43304"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/clickhouse-lz4-rce-xray-199961/", "date": "2022-03-15", "cves": ["CVE-2021-43304", "CVE-2021-43305"], "vendors": ["ClickHouse"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/pjlib-pjsua-recorder-create-oob-r-xray-198027/", "date": "2022-03-01", "cves": ["CVE-2021-43302"], "vendors": ["PJLIB"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/pjlib-pjsua-call-dump-dos-xray-198028/", "date": "2022-03-01", "cves": ["CVE-2021-43303"], "vendors": ["PJLIB"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/pjlib-pjsua-player-create-rce-xray-198024/", "date": "2022-03-01", "cves": ["CVE-2021-43299"], "vendors": ["PJLIB"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/pjlib-pjsua-playlist-create-rce-xray-198026/", "date": "2022-03-01", "cves": ["CVE-2021-43301"], "vendors": ["PJLIB"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/pjlib-pjsua-recorder-create-rce-xray-198025/", "date": "2022-03-01", "cves": ["CVE-2021-43300"], "vendors": ["PJLIB"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/cassandra-udf-rce-197962/", "date": "2022-02-15", "cves": ["CVE-2021-44521"], "vendors": ["Apache Cassandra"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/h2-console-jndi-rce-xray-193805/", "date": "2022-01-06", "cves": ["CVE-2021-42392"], "vendors": ["H2 Database"], "researchers": ["Andrey Polkovnychenko"]}, {"url": "https://research.jfrog.com/vulnerabilities/goahead-timing-attack-auth-bypass-xray-194044/", "date": "2022-01-01", "cves": ["CVE-2021-43298"], "vendors": ["GoAhead"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/tensorflow-python-code-injection-xray-189178/", "date": "2021-11-16", "cves": ["CVE-2021-41228"], "vendors": ["TensorFlow"], "researchers": ["Omer Kaspi"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-next-input-file-uaf-xray-189476/", "date": "2021-11-09", "cves": ["CVE-2021-42379"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-getvar-s-uaf-xray-189479/", "date": "2021-11-09", "cves": ["CVE-2021-42382"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-handle-special-uaf-xray-189481/", "date": "2021-11-09", "cves": ["CVE-2021-42384"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-hash-init-uaf-xray-189478/", "date": "2021-11-09", "cves": ["CVE-2021-42381"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-hush-null-pointer-dereference-xray-189794/", "date": "2021-11-09", "cves": ["CVE-2021-42376"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-man-null-pointer-dereference-xray-189471/", "date": "2021-11-09", "cves": ["CVE-2021-42373"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-clrvar-uaf-xray-189477/", "date": "2021-11-09", "cves": ["CVE-2021-42380"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-evaluate-uaf-xray-189480/", "date": "2021-11-09", "cves": ["CVE-2021-42383"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-evaluate-uaf-xray-189482/", "date": "2021-11-09", "cves": ["CVE-2021-42385"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-nvalloc-uaf-xray-189483/", "date": "2021-11-09", "cves": ["CVE-2021-42386"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-hush-untrusted-free-xray-189474/", "date": "2021-11-09", "cves": ["CVE-2021-42377"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-lzma-oob-r-xray-189472/", "date": "2021-11-09", "cves": ["CVE-2021-42374"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-ash-dos-xray-189473/", "date": "2021-11-09", "cves": ["CVE-2021-42375"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/civetweb-file-upload-rce-xray-188861/", "date": "2021-10-19", "cves": ["CVE-2020-27304"], "vendors": ["CivetWeb"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/busybox-awk-getvar-i-uaf-xray-189475/", "date": "2021-10-09", "cves": ["CVE-2021-42378"], "vendors": ["BusyBox"], "researchers": ["JFrog Collab"]}, {"url": "https://research.jfrog.com/vulnerabilities/yamale-schema-code-injection-xray-182135/", "date": "2021-10-05", "cves": ["CVE-2021-38305"], "vendors": ["Yamale"], "researchers": ["Andrey Polkovnychenko"]}, {"url": "https://research.jfrog.com/vulnerabilities/netty-bzip2-decoder-dos-xray-186801/", "date": "2021-09-09", "cves": ["CVE-2021-37136"], "vendors": ["Netty"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/netty-snappy-decoder-dos-xray-186810/", "date": "2021-09-09", "cves": ["CVE-2021-37137"], "vendors": ["Netty"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-dns-client-does-not-set-sufficiently-random-source-ports-xray-194058/", "date": "2021-08-04", "cves": ["CVE-2021-31228"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-tcp-isns-are-generated-in-a-predictable-manner-xray-194054/", "date": "2021-08-04", "cves": ["CVE-2020-35685"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-dns-client-txid-weak-random-xray-194057/", "date": "2021-08-04", "cves": ["CVE-2020-25926"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-dns-client-oob-r-xray-194047/", "date": "2021-08-04", "cves": ["CVE-2020-25767"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-dns-client-oob-r-xray-194048/", "date": "2021-08-04", "cves": ["CVE-2020-25927"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-icmp-payload-oob-r-xray-194052/", "date": "2021-08-04", "cves": ["CVE-2020-35683"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-icmp-payload-oob-r-xray-194053/", "date": "2021-08-04", "cves": ["CVE-2020-35684"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-tftp-filename-oob-r-xray-194059/", "date": "2021-08-04", "cves": ["CVE-2021-36762"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-http-server-dos-xray-194049/", "date": "2021-08-04", "cves": ["CVE-2021-31227"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-ip-length-dos-xray-194051/", "date": "2021-08-04", "cves": ["CVE-2021-31401"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-tcp-urg-dos-xray-194050/", "date": "2021-08-04", "cves": ["CVE-2021-31400"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/nichestack-unknown-http-panic-xray-194055/", "date": "2021-08-04", "cves": ["CVE-2020-27565"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/interniche-dns-client-heap-overflow-xray-194045/", "date": "2021-08-04", "cves": ["CVE-2020-25928", "CVE-2020-25926", "CVE-2021-31228"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/interniche-http-server-heap-overflow-xray-194046/", "date": "2021-08-04", "cves": ["CVE-2021-31226"], "vendors": ["InterNiche TCP/IP"], "researchers": ["Denys Vozniuk"]}, {"url": "https://research.jfrog.com/vulnerabilities/integer-overflow-in-haproxy-leads-to-http-smuggling-xray-184496/", "date": "2021-07-09", "cves": ["CVE-2021-40346"], "vendors": ["HAProxy"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-8710-wpa2-stack-overflow-xray-194060/", "date": "2021-06-02", "cves": ["CVE-2020-27301"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-8710-wpa2-stack-overflow-xray-194061/", "date": "2021-06-02", "cves": ["CVE-2020-27302"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/xss-in-nanohttpd-xray-141192/", "date": "2021-02-23", "cves": ["CVE-2020-13697"], "vendors": [], "researchers": ["Andrey Polkovnychenko"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-multiple-wi-fi-modules-rce-xray-194071/", "date": "2021-02-03", "cves": ["CVE-2020-9395"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-rtl8195-a-dos-xray-194066/", "date": "2021-02-03", "cves": ["CVE-2020-25857"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-rtl8195-a-rce-xray-194067/", "date": "2021-02-03", "cves": ["CVE-2020-25856"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-rtl8195-a-rce-xray-194068/", "date": "2021-02-03", "cves": ["CVE-2020-25855"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-rtl8195-a-rce-xray-194069/", "date": "2021-02-03", "cves": ["CVE-2020-25854"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/realtek-rtl8195-a-rce-xray-194070/", "date": "2021-02-03", "cves": ["CVE-2020-25853"], "vendors": ["Realtek Ameba"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/pengutronix-rauc-signature-bypass-xray-194062/", "date": "2020-12-21", "cves": ["CVE-2020-25860"], "vendors": ["Pengutronix RAUC"], "researchers": ["Uriya Yavnieli"]}, {"url": "https://research.jfrog.com/vulnerabilities/qcmap-web-interface-null-pointer-dereference-xray-194064/", "date": "2020-10-14", "cves": ["CVE-2020-25858", "CVE-2020-3657", "CVE-2020-25859"], "vendors": ["Qualcomm QCMAP"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/qcmap-cli-command-injection-xray-194065/", "date": "2020-10-14", "cves": ["CVE-2020-25859", "CVE-2020-3657", "CVE-2020-25858"], "vendors": ["Qualcomm QCMAP"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/qcmap-web-interface-rce-xray-194063/", "date": "2020-10-14", "cves": ["CVE-2020-3657"], "vendors": ["Qualcomm QCMAP"], "researchers": ["Ori Hollander"]}, {"url": "https://research.jfrog.com/vulnerabilities/qnx-slinger-path-traversal-rce-xray-194072/", "date": "2020-08-12", "cves": ["CVE-2020-6932"], "vendors": ["QNX slinger"], "researchers": ["Ilya Khivrich"]}, {"url": "https://research.jfrog.com/vulnerabilities/libmodbus-modbus-fc-write-multiple-coils-oob-r-xray-150047/", "date": "2019-07-31", "cves": ["CVE-2019-14462", "CVE-2019-14463"], "vendors": ["libmodbus"], "researchers": ["Maor Vermucht"]}, {"url": "https://research.jfrog.com/vulnerabilities/libmodbus-modbus-fc-write-multiple-registers-oob-r-xray-150046/", "date": "2019-07-31", "cves": ["CVE-2019-14463", "CVE-2019-14462"], "vendors": ["libmodbus"], "researchers": ["Maor Vermucht"]}, {"url": "https://research.jfrog.com/vulnerabilities/miniupnpd-copyipv6-ifdifferent-null-pointer-dereference-xray-162485/", "date": "2019-02-06", "cves": ["CVE-2019-12111"], "vendors": ["MiniUPnP"], "researchers": ["Ben Barnea"]}, {"url": "https://research.jfrog.com/vulnerabilities/miniupnpd-addportmapping-null-pointer-dereference-xray-148211/", "date": "2019-02-06", "cves": ["CVE-2019-12110"], "vendors": ["MiniUPnP"], "researchers": ["Ben Barnea"]}, {"url": "https://research.jfrog.com/vulnerabilities/miniupnpd-getoutboundpinholetimeout-null-pointer-dereference-xray-148212/", "date": "2019-02-06", "cves": ["CVE-2019-12109"], "vendors": ["MiniUPnP"], "researchers": ["Ben Barnea"]}, {"url": "https://research.jfrog.com/vulnerabilities/miniupnpd-getoutboundpinholetimeout-null-pointer-dereference-xray-148213/", "date": "2019-02-06", "cves": ["CVE-2019-12108"], "vendors": ["MiniUPnP"], "researchers": ["Ben Barnea"]}, {"url": "https://research.jfrog.com/vulnerabilities/miniupnpd-upnp-event-prepare-infoleak-xray-148214/", "date": "2019-02-06", "cves": ["CVE-2019-12107"], "vendors": ["MiniUPnP"], "researchers": ["Ben Barnea"]}, {"url": "https://research.jfrog.com/vulnerabilities/minissdpd-updatedevice-uaf-xray-161552/", "date": "2019-02-06", "cves": ["CVE-2019-12106"], "vendors": ["MiniUPnP"], "researchers": ["Ben Barnea"]}]}, {"lab": "Mandiant", "url": "https://github.com/mandiant/Vulnerability-Disclosures", "A": 157, "Q": 144, "V": 44, "R": 35, "researchers": [{"name": "Ronnie Salomonsen", "count": 12}, {"name": "Andrew Oliveau", "count": 7}, {"name": "Jake Valletta", "count": 5}, {"name": "Abdulrahman Nour", "count": 5}, {"name": "Josh Fleischer", "count": 4}, {"name": "Chris DiGiamo", "count": 3}, {"name": "Joshua Mason", "count": 3}, {"name": "Genwei Jiang", "count": 3}, {"name": "Sam Sabetan", "count": 2}, {"name": "Michael Maturi", "count": 2}, {"name": "Cameron Stokes", "count": 2}, {"name": "Louis Dion-Marcil", "count": 2}, {"name": "Joshua Triplett", "count": 1}, {"name": "Doug McClouds", "count": 1}, {"name": "Chris Ingram", "count": 1}, {"name": "Andrew Tappert", "count": 1}, {"name": "Chuck Gabriele", "count": 1}, {"name": "Roderic Deichler", "count": 1}, {"name": "Greg MacManus", "count": 1}, {"name": "Dhanesh Kizhakkinan", "count": 1}, {"name": "David Lebrun", "count": 1}, {"name": "EnerSys in 2022", "count": 1}, {"name": "Nick Guttilla", "count": 1}, {"name": "Neal Trischitta", "count": 1}, {"name": "Cory Baker", "count": 1}, {"name": "2025-04-28: Initial report to Explorance", "count": 1}, {"name": "2025-05-02: Initial Patch released", "count": 1}, {"name": "2025-05-06: Final patch released to customers", "count": 1}, {"name": "[Explorance Blue Website]", "count": 1}, {"name": "[cve org CVE-2025-57793](https://www cve org/CVERecord?id=CVE-2025-57793)", "count": 1}, {"name": "[Explorance Blue Security Advisories", "count": 1}, {"name": "[Explorance Blue Security Advisory", "count": 1}, {"name": "Peter Ukhanov", "count": 1}, {"name": "Jake Murphy", "count": 1}, {"name": "Matthias Heil", "count": 1}], "vendors": [{"name": "- 26 August 2019 - Second attempt to con", "count": 5}, {"name": "- 20 September 2021 - Issue confirmed", "count": 3}, {"name": "Contacted\r- 22 Apr 2022 – Issue confirme", "count": 3}, {"name": "is unresponsive and possibly defunct", "count": 3}, {"name": "- 4 November 2019 - vendor response", "count": 2}, {"name": "- 02 July 2020 - Issue confirmed", "count": 2}, {"name": "- 14 July 2020 - Issue confirmed", "count": 2}, {"name": "- 9 September 2020 - CVE reserved with M", "count": 2}, {"name": "Contacted", "count": 2}, {"name": "- 20 October 2021 - Issue confirmed", "count": 2}, {"name": "- 18 March 2019 - VMWare responded confi", "count": 1}, {"name": "- 2 February 2019 - Vendor response", "count": 1}, {"name": "- 11 February 2019 - Confirmed issue was", "count": 1}, {"name": "- 11 November 2019 - Second attempt to c", "count": 1}, {"name": "- 31 January 2019 - Vendor confirmation", "count": 1}, {"name": "- 18 October 2019 - Second attempt to co", "count": 1}, {"name": "- 24 January 2019 - Adobe responded conf", "count": 1}, {"name": "- 06 February 2019 - Adobe responded con", "count": 1}, {"name": "- 10 December 2019 - Microsoft confirmed", "count": 1}, {"name": "- 18 February 2020 - Issue confirmed", "count": 1}, {"name": "- 04 March 2020 - Issue confirmed", "count": 1}, {"name": "- 03 June 2020 - Issue confirmed by Cohe", "count": 1}, {"name": "- 06 July 2020 - Issue confirmed", "count": 1}, {"name": "- 13 July 2020 - Issue confirmed", "count": 1}, {"name": "- 22 July 2020 - Issue confirmed", "count": 1}, {"name": "- 31 July 2020 - Issue confirmed", "count": 1}, {"name": "- 01 September 2020 - Issue confirmed", "count": 1}, {"name": "- 14 August 2020 - Issue confirmed", "count": 1}, {"name": "- 24 August 2020 - Issue confirmed", "count": 1}, {"name": "- 04 Februrary 2020 - Issue confirmed by", "count": 1}, {"name": "- 11 March 2020 - Issue confirmed by Dig", "count": 1}, {"name": "- 11 May 2021 - Issue confirmed", "count": 1}, {"name": "- 7 June 2021 - Issue confirmed by Throu", "count": 1}, {"name": "- 04 October 2021 - Issue confirmed", "count": 1}, {"name": "- 14 September 2021 - Issue confirmed", "count": 1}, {"name": "- 23 April 2021 - Issue confirmed", "count": 1}, {"name": "- 15 November 2021 - Issue confirmed", "count": 1}, {"name": "* 28 April 2022 - Vendor created patch a", "count": 1}, {"name": "patches for this vulnerability", "count": 1}, {"name": "updated the security bulletin for CVE-20", "count": 1}, {"name": "to provide additional information", "count": 1}, {"name": "* March 26", "count": 1}, {"name": "* March 8", "count": 1}, {"name": "* 2025-09-16: Vulnerability patched by v", "count": 1}], "advisories": [{"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5535"], "vendors": ["- 18 March 2019 - VMWare responded confi"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7245"], "vendors": ["- 2 February 2019 - Vendor response"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7630"], "vendors": ["- 11 February 2019 - Confirmed issue was"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7240"], "vendors": ["- 11 November 2019 - Second attempt to c"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15661"], "vendors": ["- 26 August 2019 - Second attempt to con"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15662"], "vendors": ["- 26 August 2019 - Second attempt to con"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15663"], "vendors": ["- 26 August 2019 - Second attempt to con"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15664"], "vendors": ["- 26 August 2019 - Second attempt to con"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15665"], "vendors": ["- 26 August 2019 - Second attempt to con"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7244"], "vendors": ["- 31 January 2019 - Vendor confirmation"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-18626"], "vendors": ["- 18 October 2019 - Second attempt to co"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7113"], "vendors": ["- 24 January 2019 - Adobe responded conf"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8066"], "vendors": ["- 06 February 2019 - Adobe responded con"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7247"], "vendors": ["- 4 November 2019 - vendor response"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2019-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7246"], "vendors": ["- 4 November 2019 - vendor response"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-0853"], "vendors": ["- 10 December 2019 - Microsoft confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0002", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0003", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0004", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1117"], "vendors": ["- 18 February 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1397"], "vendors": ["- 04 March 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-15467"], "vendors": ["- 03 June 2020 - Issue confirmed by Cohe"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-0997"], "vendors": ["- 02 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16968"], "vendors": ["- 02 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17022"], "vendors": ["- 06 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17101"], "vendors": ["- 13 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17107"], "vendors": ["- 14 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17106"], "vendors": ["- 14 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17108"], "vendors": ["- 22 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17109"], "vendors": ["- 31 July 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17110"], "vendors": ["- 01 September 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17105"], "vendors": ["- 14 August 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14871"], "vendors": ["- 24 August 2020 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-9306"], "vendors": ["- 04 Februrary 2020 - Issue confirmed by"], "researchers": ["Jake Valletta", "Sam Sabetan"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2020-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12878"], "vendors": ["- 11 March 2020 - Issue confirmed by Dig"], "researchers": ["Jake Valletta", "Sam Sabetan"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25218", "CVE-2020-25217"], "vendors": ["- 9 September 2020 - CVE reserved with M"], "researchers": ["Jake Valletta", "Michael Maturi"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25217", "CVE-2020-25218"], "vendors": ["- 9 September 2020 - CVE reserved with M"], "researchers": ["Jake Valletta", "Michael Maturi"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0003", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0004", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0005", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0006", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0007", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0008", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0009", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0010", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0011", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0012", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0013", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-20021"], "vendors": [], "researchers": ["Josh Fleischer", "Chris DiGiamo"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-20021", "CVE-2021-20022"], "vendors": [], "researchers": ["Josh Fleischer", "Chris DiGiamo"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-20021", "CVE-2021-20023"], "vendors": [], "researchers": ["Josh Fleischer", "Chris DiGiamo"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32559"], "vendors": ["- 11 May 2021 - Issue confirmed"], "researchers": ["Joshua Triplett", "Doug McClouds", "Chris Ingram", "Andrew Tappert"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-20099"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33889"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-28372"], "vendors": ["- 7 June 2021 - Issue confirmed by Throu"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-36921"], "vendors": ["Contacted"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-36921", "CVE-2021-36982"], "vendors": ["Contacted"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37597"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-37598"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/FEYE-2021-0025", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38671", "CVE-2021-34483", "CVE-2021-26878", "CVE-2020-1030"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0002", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0003", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0004", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0005", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0006", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-30359"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42254"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27356"], "vendors": [], "researchers": ["Chuck Gabriele"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42711"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41526"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/MNDT-2021-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44207"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-30360"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42810"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22717", "CVE-2021-38671", "CVE-2021-34483", "CVE-2021-26878", "CVE-2020-1030"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23280"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42714"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42713"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42712"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21917"], "vendors": ["- 20 September 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21844"], "vendors": ["- 04 October 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21926"], "vendors": ["- 14 September 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21927"], "vendors": ["- 20 September 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22006"], "vendors": ["- 20 September 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22007"], "vendors": ["- 23 April 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24453"], "vendors": ["- 20 October 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24456"], "vendors": ["- 15 November 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24457"], "vendors": ["- 20 October 2021 - Issue confirmed"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23296"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24319"], "vendors": [], "researchers": ["Cameron Stokes"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-24320"], "vendors": [], "researchers": ["Cameron Stokes"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33616"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-38362"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42255"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27765"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27766"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27767"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-26691"], "vendors": [], "researchers": ["Joshua Mason"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-33615"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-29594"], "vendors": ["* 28 April 2022 - Vendor created patch a"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22187"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0030", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-6917", "CVE-2020-6918", "CVE-2020-6919", "CVE-2020-6920", "CVE-2020-6921", "CVE-2020-6922"], "vendors": [], "researchers": ["Jake Valletta", "Roderic Deichler"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0031", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21558"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0032", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-26704"], "vendors": [], "researchers": ["Joshua Mason"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0033", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-32819"], "vendors": [], "researchers": ["Joshua Mason"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0034", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28741", "CVE-2022-28742", "CVE-2022-28740"], "vendors": ["Contacted\r- 22 Apr 2022 – Issue confirme"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0035", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28741"], "vendors": ["Contacted\r- 22 Apr 2022 – Issue confirme"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0036", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-28741", "CVE-2022-28742"], "vendors": ["Contacted\r- 22 Apr 2022 – Issue confirme"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0037", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-25657"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0038", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-30170"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0039", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-37969"], "vendors": [], "researchers": ["Genwei Jiang"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0040", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-34827"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/tree/master/2022/MNDT-2022-0041", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-46366", "CVE-2020-17531"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0001.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41989"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0002.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41988"], "vendors": [], "researchers": ["Ronnie Salomonsen"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0003.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-42455"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0004.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-21823"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0005.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28252"], "vendors": [], "researchers": ["Genwei Jiang"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0006.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28478"], "vendors": [], "researchers": ["Greg MacManus"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0007.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33162"], "vendors": [], "researchers": ["Dhanesh Kizhakkinan", "Genwei Jiang"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0008.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26077"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0009.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26078"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0010.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-37243"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0011.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-27470"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0012.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28614"], "vendors": ["patches for this vulnerability"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0013.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-36762"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0015.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-3181"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0016.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-37244"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0017.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-0321"], "vendors": ["updated the security bulletin for CVE-20"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0018.md", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["to provide additional information"], "researchers": ["David Lebrun"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2023/MNDT-2023-0019.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-7101"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0001.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-47145"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0002.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-4472"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0003.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26603"], "vendors": [], "researchers": ["Andrew Oliveau"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0004.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-38287"], "vendors": ["is unresponsive and possibly defunct"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0005.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-38288"], "vendors": ["is unresponsive and possibly defunct"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0006.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-38289"], "vendors": ["is unresponsive and possibly defunct"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0007.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6585"], "vendors": ["* March 26"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0008.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-6586"], "vendors": ["* March 8"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2024/MNDT-2024-0009.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-6080"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0001.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-11861"], "vendors": [], "researchers": ["EnerSys in 2022"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0002.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-12442"], "vendors": [], "researchers": ["Nick Guttilla", "Neal Trischitta"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0003.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-2171"], "vendors": [], "researchers": ["Louis Dion-Marcil"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0004.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-2172"], "vendors": [], "researchers": ["Louis Dion-Marcil"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0005.md", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0006.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-4665"], "vendors": ["* 2025-09-16: Vulnerability patched by v"], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0007.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53690"], "vendors": [], "researchers": ["Josh Fleischer"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0008.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-12480"], "vendors": [], "researchers": []}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2025/MNDT-2025-0009.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-64740"], "vendors": [], "researchers": ["Cory Baker"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0001.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-57792"], "vendors": [], "researchers": ["Abdulrahman Nour"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0002.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-57793"], "vendors": [], "researchers": ["Abdulrahman Nour", "2025-04-28: Initial report to Explorance", "2025-05-02: Initial Patch released", "2025-05-06: Final patch released to customers", "[Explorance Blue Website]", "[cve org CVE-2025-57793](https://www cve org/CVERecord?id=CVE-2025-57793)", "[Explorance Blue Security Advisories", "[Explorance Blue Security Advisory"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0003.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-57794"], "vendors": [], "researchers": ["Abdulrahman Nour"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0004.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-57795"], "vendors": [], "researchers": ["Abdulrahman Nour"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0005.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-57796"], "vendors": [], "researchers": ["Abdulrahman Nour"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0006.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-22769"], "vendors": [], "researchers": ["Peter Ukhanov"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0007.md", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-26365", "CVE-2026-2636"], "vendors": [], "researchers": ["Jake Murphy"]}, {"url": "https://github.com/mandiant/Vulnerability-Disclosures/blob/master/2026/MNDT-2026-0008.md", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": ["Matthias Heil"]}]}, {"lab": "NCC Group", "url": "https://www.nccgroup.com", "A": 115, "Q": 273, "V": 103, "R": 48, "researchers": [{"name": "Richard Warren", "count": 9}, {"name": "Soroush Dalili", "count": 7}, {"name": "Dan Rosenberg", "count": 3}, {"name": "James Chambers", "count": 2}, {"name": "Neil Bergman", "count": 2}, {"name": "Ilya Zhuravlev", "count": 2}, {"name": "Nick Bloor /", "count": 2}, {"name": "Balazs Bucsay", "count": 2}, {"name": "Gérald Doussot", "count": 2}, {"name": "Robert Wessen", "count": 2}, {"name": "George D. Gal", "count": 2}, {"name": "Alex Plaskett", "count": 1}, {"name": "<Juan Marco Sanchez> <>", "count": 1}, {"name": "Liyun Li <liyun li[at]nccgroup[dot]com>", "count": 1}, {"name": "Liew Hock Lai", "count": 1}, {"name": "Álvaro Martín Fraguas", "count": 1}, {"name": "Viktor Gazdag viktor gazdag[at]nccgroup[dot]trust", "count": 1}, {"name": "Noah Beddome", "count": 1}, {"name": "Ben Lincoln", "count": 1}, {"name": "Daniel Romero – daniel romero[at]nccgroup[dot]trust", "count": 1}, {"name": "Scott Leitch", "count": 1}, {"name": "Ollie Whitehouse", "count": 1}, {"name": "Peter Winter-Smith peter winter-smith[at]nccgroup com", "count": 1}, {"name": "Sebastian Parker-Fitch", "count": 1}, {"name": "Derek Stoeckenius", "count": 1}, {"name": "Liam Glanfield", "count": 1}, {"name": "Lucas Rosevear", "count": 1}, {"name": "Dan Hastings – dan hastings[at]nccgroup[dot]com", "count": 1}, {"name": "mark tedman[at]nccgroup[dot]com", "count": 1}, {"name": "Siddarth Adukia sid adukia[at]nccgroup[dot]com", "count": 1}, {"name": "Dan Hastings dan hastings[at]nccgroup[dot]trust", "count": 1}, {"name": "tmorgan {a} vsecurity * com", "count": 1}, {"name": "Sultan Qasim Khan", "count": 1}, {"name": "Timothy D. Morgan", "count": 1}, {"name": "Jesus Olmos", "count": 1}, {"name": "Bill Marquette", "count": 1}, {"name": "Richard Appleby", "count": 1}, {"name": "Dan Rosenberg < drosenberg vsecurity com >", "count": 1}, {"name": "Will Enright", "count": 1}, {"name": "Anthony Ferrillo", "count": 1}, {"name": "Paul Bottinelli", "count": 1}, {"name": "Stephen Tomkinson", "count": 1}, {"name": "Jay Houppermans", "count": 1}, {"name": "Manuel Ginés Rodríguez - manuel gines[at]nccgroup[dot]com", "count": 1}, {"name": "McCaulay Hudson ()", "count": 1}, {"name": "Gary Swales", "count": 1}, {"name": "Jason Crowder", "count": 1}, {"name": "Mattia Reggiani mattia reggiani[at]nccgroup[dot]com", "count": 1}], "vendors": [{"name": "– SonicWall SMA 100 Series", "count": 5}, {"name": "Pulse Connect Secure", "count": 3}, {"name": "– Linksys", "count": 2}, {"name": "– Jitsi Meet Electron", "count": 2}, {"name": "Tesla Telematics Control Unit", "count": 1}, {"name": "Condeon CMS", "count": 1}, {"name": "Espressif Systems", "count": 1}, {"name": "Multiple Vulnerabilities in TCPDF", "count": 1}, {"name": "– Hash Denial", "count": 1}, {"name": "Cross", "count": 1}, {"name": "Xiaomi 13 Pro Code Execution via GetApps DOM Cross", "count": 1}, {"name": "Unauthenticated SQL Injection in Lansweeper", "count": 1}, {"name": "Sonos Era 100 Secure Boot Bypass Through Unchecked setenv call", "count": 1}, {"name": "SQL Injection and Reflected Cross", "count": 1}, {"name": "Stored and Reflected XSS Vulnerability in Nagios Log Server", "count": 1}, {"name": "Shell Injection in SourceTree", "count": 1}, {"name": "Ruby on Rails", "count": 1}, {"name": "Shell Injection in MacVim mvim URI Handler", "count": 1}, {"name": "Reflected Cross", "count": 1}, {"name": "OS Command Injection in Silver Peak EdgeConnect Appliances", "count": 1}, {"name": "Nexpose Hard‐coded Java Key Store Passphrase Allows Decryption of Stored Credentials", "count": 1}, {"name": "Multiple Vulnerabilities in ManageEngine Desktop Central", "count": 1}, {"name": "Multiple Vulnerabilities in Lexmark Printers", "count": 1}, {"name": "Multiple Vulnerabilities in MailEnable", "count": 1}, {"name": "Multiple Vulnerabilities in HP Printers", "count": 1}, {"name": "Mosquitto Broker DoS through a Memory Leak vulnerability", "count": 1}, {"name": "Multiple Vulnerabilities in Accellion File Transfer Appliance", "count": 1}, {"name": "Intel Driver Support & Assistance", "count": 1}, {"name": "Heartbleed chained with a Pass", "count": 1}, {"name": "Insufficient Proxyman HelperTool XPC Validation", "count": 1}, {"name": "CVE", "count": 1}, {"name": "Citrix Workspace / Receiver Remote Code Execution Vulnerability", "count": 1}, {"name": "Authentication Bypass in libSSH", "count": 1}, {"name": "Authentication rule bypass", "count": 1}, {"name": "Adobe ColdFusion RMI Registry.bind Deserialisation RCE", "count": 1}, {"name": "Adobe ColdFusion Object Deserialisation RCE", "count": 1}, {"name": "“ROHNP”", "count": 1}, {"name": "– SonicWall Global Management System & Analytics", "count": 1}, {"name": "– NULL Pointer Derefence in McAfee Drive Encryption", "count": 1}, {"name": "– Ollama DNS Rebinding Attack", "count": 1}, {"name": "– Multiple Vulnerabilities in Nagios XI", "count": 1}, {"name": "– Multiple Vulnerabilities in Juplink", "count": 1}, {"name": "– ICTFAX 7", "count": 1}, {"name": "– wolfSSL TLS 1.3 Client Man", "count": 1}, {"name": "– Apple macOS XAR", "count": 1}, {"name": "– U", "count": 1}, {"name": "– Sunhillo SureLine Unauthenticated OS Command Injection", "count": 1}, {"name": "– Pulse Connect Secure", "count": 1}, {"name": "– Shop app sends pasteboard data to Shopify’s servers", "count": 1}, {"name": "– play", "count": 1}, {"name": "– playSMS Pre", "count": 1}, {"name": "– ParcelTrack sends all pasteboard data to ParcelTrack’s servers on startup", "count": 1}, {"name": "– OpenOffice.org Multiple Memory Corruption Vulnerabilities", "count": 1}, {"name": "– NXP i.MX SDP_READ_DISABLE Fuse Bypass", "count": 1}, {"name": "– Open5GS", "count": 1}, {"name": "– New York State Excelsior Pass Vaccine Passport Credential Forgery", "count": 1}, {"name": "– Multiple Vulnerabilities in U", "count": 1}, {"name": "– Multiple vulnerabilities in Nuki smart locks", "count": 1}, {"name": "– macOS Installer Local Root Privilege Escalation", "count": 1}, {"name": "– libraptor", "count": 1}, {"name": "– Lenovo ImController Local Privilege Escalation", "count": 1}, {"name": "– Kwikset/Weiser BLE Proximity Authentication in Kevo Smart Locks Vulnerable to Relay Attacks", "count": 1}, {"name": "– IBM TAM: Remote Directory Traversal and File Retrieval via web server plug", "count": 1}, {"name": "– Garuda Linux Insecure User Creation", "count": 1}, {"name": "– HTC IQRD Android Permission Leakage", "count": 1}, {"name": "– FreePBX", "count": 1}, {"name": "– FUJITSU CentricStor Control Center <= V8.1", "count": 1}, {"name": "– ExpressLRS vulnerabilities allow for hijack of control link", "count": 1}, {"name": "– Coda Filesystem Kernel Memory Disclosure", "count": 1}, {"name": "– DelTek Vision", "count": 1}, {"name": "– Bomgar Remote Support", "count": 1}, {"name": "– Citrix Access Gateway Command Injection Vulnerability", "count": 1}, {"name": "– Authorization Bypass Allows for Pinboard Corruption", "count": 1}, {"name": "– BLE Proximity Authentication Vulnerable to Relay Attacks", "count": 1}, {"name": "– Authenticated SQL Injection in SOAP Request in Broadcom CA Network Flow Analysis", "count": 1}, {"name": "– Arbitrary Signature Forgery in Stark Bank ECDSA Libraries", "count": 1}, {"name": "– ARM MbedOS USB Mass Storage Driver Memory Corruption", "count": 1}, {"name": "– Apple XAR", "count": 1}, {"name": "– Arbitrary File Read in Dell Wyse Management Suite", "count": 1}, {"name": "– Apple HFS+ Information Disclosure Vulnerability", "count": 1}, {"name": "– Apple iOS / OSX: Foundation NSXMLParser XXE Vulnerability", "count": 1}, {"name": "– Multiple HTML Injection Vulnerabilities in KaiOS Pre", "count": 1}, {"name": "– Multiple Vulnerabilities in Connectize G6", "count": 1}, {"name": "– Multiple Vulnerabilities in the Galaxy App Store", "count": 1}, {"name": "– Lansweeper Privilege Escalation via CSRF Using HTTP Method Interchange", "count": 1}, {"name": "– Multiple Vulnerabilities in Faronics Insight", "count": 1}, {"name": "– Multiple Vulnerabilities in Netgear ProSAFE Plus", "count": 1}, {"name": "– Multiple Vulnerabilities in PandoraFMS Enterprise", "count": 1}, {"name": "– Multiple Vulnerabilities in Trendnet TEW", "count": 1}, {"name": "Adobe ColdFusion WDDX Deserialization Gadgets", "count": 1}, {"name": "Bypassing Workflows Protection Mechanisms", "count": 1}, {"name": "Code Execution by Unsafe Resource Handling in Multiple Microsoft Products", "count": 1}, {"name": "Command Injection", "count": 1}, {"name": "CyberArk EPM Non", "count": 1}, {"name": "IP Office Stored Cross Site Scripting Vulnerability", "count": 1}, {"name": "Mitel MiVoice 5330e Memory Corruption Flaw", "count": 1}, {"name": "Multiple Vulnerabilities in Brother Printers", "count": 1}, {"name": "Multiple Vulnerabilities in Kyocera Printers", "count": 1}, {"name": "Multiple Vulnerabilities in Ricoh Printers", "count": 1}, {"name": "Multiple Vulnerabilities in SmarterMail", "count": 1}, {"name": "Multiple Vulnerabilities in Xerox Printers", "count": 1}, {"name": "SMB Hash Hijacking and User Tracking in MS Outlook", "count": 1}, {"name": "Unauthenticated Remote Command Execution through Multiple Vulnerabilities in Virgin Media Hub 3.0", "count": 1}], "advisories": [{"url": "https://www.nccgroup.com/research/technical-advisory-tesla-telematics-control-unit-adb-auth-bypass/", "date": "2025-09-29", "cves": [], "vendors": ["Tesla Telematics Control Unit"], "researchers": ["Alex Plaskett"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-condeon-cms/", "date": "2025-02-25", "cves": ["CVE-2025-44202", "CVE-2025-44200"], "vendors": ["Condeon CMS"], "researchers": ["<Juan Marco Sanchez> <>"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-tcp-dopnm/", "date": "2025-02-25", "cves": ["CVE-2024-56519", "CVE-2024-56520", "CVE-2024-56521", "CVE-2024-56522"], "vendors": ["Multiple Vulnerabilities in TCPDF"], "researchers": ["Neil Bergman"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-hash-denial-of-service-attack-in-multiple-quic-implementations/", "date": "2025-01-09", "cves": ["CVE-2025-23020", "CVE-2025-24947", "CVE-2025-24946"], "vendors": ["– Hash Denial"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-xiaomi-13-pro-code-execution-via-getapps-dom-cross-site-scripting-xss/", "date": "2024-09-24", "cves": ["CVE-2024-4406"], "vendors": ["Xiaomi 13 Pro Code Execution via GetApps DOM Cross"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-ollama-dns-rebinding-attack-cve-2024-28224/", "date": "2024-04-08", "cves": ["CVE-2024-28224"], "vendors": ["– Ollama DNS Rebinding Attack"], "researchers": ["Gérald Doussot"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-pandorafms-enterprise/", "date": "2024-01-02", "cves": ["CVE-2023-4677", "CVE-2023-41786", "CVE-2023-41788", "CVE-2023-41789", "CVE-2023-41808", "CVE-2023-41787", "CVE-2023-41807", "CVE-2023-41790", "CVE-2023-41792", "CVE-2023-41791", "CVE-2023-41809", "CVE-2023-41806", "CVE-2023-41813", "CVE-2023-41793", "CVE-2023-41810", "CVE-2023-41811", "CVE-2023-41794"], "vendors": ["– Multiple Vulnerabilities in PandoraFMS Enterprise"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-nagios-xi/", "date": "2023-12-13", "cves": ["CVE-2023-47401", "CVE-2023-47408", "CVE-2023-47400", "CVE-2023-47412", "CVE-2023-47409", "CVE-2023-47414", "CVE-2023-47411", "CVE-2023-47410", "CVE-2023-47413", "CVE-2023-47403", "CVE-2023-47399", "CVE-2023-47402", "CVE-2023-47406", "CVE-2023-47407", "CVE-2023-47405"], "vendors": ["– Multiple Vulnerabilities in Nagios XI"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonos-era-100-secure-boot-bypass-through-unchecked-setenv-call/", "date": "2023-12-04", "cves": [], "vendors": ["Sonos Era 100 Secure Boot Bypass Through Unchecked setenv call"], "researchers": ["Ilya Zhuravlev"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-adobe-coldfusion-wddx-deserialization-gadgets/", "date": "2023-11-21", "cves": ["CVE-2023-44353", "CVE-2023-29300", "CVE-2023-38203", "CVE-2023-38204"], "vendors": ["Adobe ColdFusion WDDX Deserialization Gadgets"], "researchers": ["McCaulay Hudson ()"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-insufficient-proxyman-helpertool-xpc-validation/", "date": "2023-10-31", "cves": ["CVE-2023-45732", "CVE-2019-20057", "CVE-2020-0984"], "vendors": ["Insufficient Proxyman HelperTool XPC Validation"], "researchers": ["Scott Leitch"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-connectize-g6-ac2100-dual-band-gigabit-wifi-router-cve-2023-24046-cve-2023-24047-cve-2023-24048-cve-2023-24049-cve-2023-24050-cve-2023-24051-cve-2023-24052/", "date": "2023-10-19", "cves": ["CVE-2023-24046", "CVE-2023-24047", "CVE-2023-24048", "CVE-2023-24049", "CVE-2023-24050", "CVE-2023-24051", "CVE-2023-24052"], "vendors": ["– Multiple Vulnerabilities in Connectize G6"], "researchers": ["Jay Houppermans"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonicwall-global-management-system-gms-analytics-multiple-critical-vulnerabilities/", "date": "2023-08-24", "cves": ["CVE-2023-34133", "CVE-2023-34124", "CVE-2023-34135", "CVE-2023-34129", "CVE-2023-34134", "CVE-2023-34123", "CVE-2023-34137", "CVE-2023-34127", "CVE-2023-34125", "CVE-2023-34126", "CVE-2023-34132", "CVE-2023-34128", "CVE-2023-34136", "CVE-2023-34131", "CVE-2023-34130"], "vendors": ["– SonicWall Global Management System & Analytics"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-faronics-insight-cve-2023-28344-cve-2023-28345-cve-2023-28346-cve-2023-28347-cve-2023-28348-cve-2023-28349-cve-2023-28350-cve-2023-28351-cve-2023-28352-cve-2023-28353/", "date": "2023-05-30", "cves": ["CVE-2023-28344", "CVE-2023-28345", "CVE-2023-28346", "CVE-2023-28347", "CVE-2023-28348", "CVE-2023-28349", "CVE-2023-28350", "CVE-2023-28351", "CVE-2023-28352", "CVE-2023-28353"], "vendors": ["– Multiple Vulnerabilities in Faronics Insight"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-u-boot-unchecked-download-size-and-direction-in-usb-dfu-cve-2022-2347/", "date": "2023-01-20", "cves": ["CVE-2022-2347"], "vendors": ["– U"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-the-galaxy-app-store-cve-2023-21433-cve-2023-21434/", "date": "2023-01-20", "cves": ["CVE-2023-21433", "CVE-2023-21434"], "vendors": ["– Multiple Vulnerabilities in the Galaxy App Store"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-nxp-imx-sdp_read_disable-fuse-bypass-cve-2022-45163/", "date": "2022-11-17", "cves": ["CVE-2022-45163"], "vendors": ["– NXP i.MX SDP_READ_DISABLE Fuse Bypass"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-juplink-rx4-1800-wifi-router-cve-2022-37413-cve-2022-37414/", "date": "2022-09-22", "cves": ["CVE-2022-37413", "CVE-2022-37414"], "vendors": ["– Multiple Vulnerabilities in Juplink"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-nuki-smart-locks-cve-2022-32509-cve-2022-32504-cve-2022-32502-cve-2022-32507-cve-2022-32503-cve-2022-32510-cve-2022-32506-cve-2022-32508-cve-2022-32505/", "date": "2022-07-25", "cves": ["CVE-2022-32509", "CVE-2022-32504", "CVE-2022-32502", "CVE-2022-32507", "CVE-2022-32503", "CVE-2022-32510", "CVE-2022-32506", "CVE-2022-32508", "CVE-2022-32505"], "vendors": ["– Multiple vulnerabilities in Nuki smart locks"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-expresslrs-vulnerabilities-allow-for-hijack-of-control-link/", "date": "2022-06-30", "cves": [], "vendors": ["– ExpressLRS vulnerabilities allow for hijack of control link"], "researchers": ["Richard Appleby"]}, {"url": "https://www.nccgroup.com/research/updated-technical-advisory-and-proofs-of-concept-multiple-vulnerabilities-in-u-boot-cve-2022-30790-cve-2022-30552/", "date": "2022-06-16", "cves": ["CVE-2022-30790", "CVE-2022-30552"], "vendors": [], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-trendnet-tew-831dr-wifi-router-cve-2022-30325-cve-2022-30326-cve-2022-30327-cve-2022-30328-cve-2022-30329/", "date": "2022-06-10", "cves": ["CVE-2022-30325", "CVE-2022-30326", "CVE-2022-30327", "CVE-2022-30328", "CVE-2022-30329"], "vendors": ["– Multiple Vulnerabilities in Trendnet TEW"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-u-boot-cve-2022-30790-cve-2022-30552/", "date": "2022-06-03", "cves": ["CVE-2022-30790", "CVE-2022-30552"], "vendors": ["– Multiple Vulnerabilities in U"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-fujitsu-centricstor-control-center-v81-unauthenticated-command-injection-cve-2022-31794-and-cve-2022-31795/", "date": "2022-05-27", "cves": ["CVE-2022-31794", "CVE-2022-31795"], "vendors": ["– FUJITSU CentricStor Control Center <= V8.1"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-kwiksetweiser-ble-proximity-authentication-in-kevo-smart-locks-vulnerable-to-relay-attacks/", "date": "2022-05-15", "cves": [], "vendors": ["– Kwikset/Weiser BLE Proximity Authentication in Kevo Smart Locks Vulnerable to Relay Attacks"], "researchers": ["Sultan Qasim Khan"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-ble-proximity-authentication-vulnerable-to-relay-attacks/", "date": "2022-05-15", "cves": [], "vendors": ["– BLE Proximity Authentication Vulnerable to Relay Attacks"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-ruby-on-rails-possible-xss-vulnerability-in-actionview-tag-helpers-cve-2022-27777/", "date": "2022-05-06", "cves": ["CVE-2022-27777"], "vendors": ["Ruby on Rails"], "researchers": ["Álvaro Martín Fraguas"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-apple-macos-xar-arbitrary-file-write-cve-2022-22582/", "date": "2022-03-15", "cves": ["CVE-2022-22582", "CVE-2021-30833"], "vendors": ["– Apple macOS XAR"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-lenovo-imcontroller-local-privilege-escalation-cve-2021-3922-cve-2021-3969/", "date": "2021-12-15", "cves": ["CVE-2021-3922", "CVE-2021-3969"], "vendors": ["– Lenovo ImController Local Privilege Escalation"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonicwall-sma-100-series-unauthenticated-arbitrary-file-deletion/", "date": "2021-12-10", "cves": ["CVE-2021-20044", "CVE-2021-20034"], "vendors": ["– SonicWall SMA 100 Series"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonicwall-sma-100-series-unauthenticated-stored-xss/", "date": "2021-12-10", "cves": ["CVE-2021-20040", "CVE-2021-20044"], "vendors": ["– SonicWall SMA 100 Series"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonicwall-sma-100-series-unauthenticated-file-upload-path-traversal-cve-2021-20040/", "date": "2021-12-09", "cves": ["CVE-2021-20040"], "vendors": ["– SonicWall SMA 100 Series"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonicwall-sma-100-series-multiple-unauthenticated-heap-based-and-stack-based-buffer-overflow-cve-2021-20045/", "date": "2021-12-09", "cves": ["CVE-2021-20045"], "vendors": ["– SonicWall SMA 100 Series"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-sonicwall-sma-100-series-post-authentication-remote-command-execution-cve-2021-20044/", "date": "2021-12-09", "cves": ["CVE-2021-20044"], "vendors": ["– SonicWall SMA 100 Series"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-authenticated-sql-injection-in-soap-request-in-broadcom-ca-network-flow-analysis-cve-2021-44050/", "date": "2021-12-02", "cves": ["CVE-2021-44050"], "vendors": ["– Authenticated SQL Injection in SOAP Request in Broadcom CA Network Flow Analysis"], "researchers": ["Anthony Ferrillo"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-arbitrary-signature-forgery-in-stark-bank-ecdsa-libraries-cve-2021-43572-cve-2021-43570-cve-2021-43569-cve-2021-43568-cve-2021-43571/", "date": "2021-11-08", "cves": ["CVE-2021-43572", "CVE-2021-43570", "CVE-2021-43569", "CVE-2021-43568", "CVE-2021-43571"], "vendors": ["– Arbitrary Signature Forgery in Stark Bank ECDSA Libraries"], "researchers": ["Paul Bottinelli"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-apple-xar-arbitrary-file-write-cve-2021-30833/", "date": "2021-10-28", "cves": ["CVE-2021-30833"], "vendors": ["– Apple XAR"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-open5gs-stack-buffer-overflow-during-pfcp-session-establishment-on-upf-cve-2021-41794/", "date": "2021-10-06", "cves": ["CVE-2021-41794"], "vendors": ["– Open5GS"], "researchers": ["mark tedman[at]nccgroup[dot]com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-null-pointer-derefence-in-mcafee-drive-encryption-cve-2021-23893/", "date": "2021-10-04", "cves": ["CVE-2021-23893"], "vendors": ["– NULL Pointer Derefence in McAfee Drive Encryption"], "researchers": ["Balazs Bucsay"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-garuda-linux-insecure-user-creation-cve-2021-3784/", "date": "2021-09-29", "cves": ["CVE-2021-3784"], "vendors": ["– Garuda Linux Insecure User Creation"], "researchers": ["Jesus Olmos"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-new-york-state-excelsior-pass-vaccine-passport-credential-forgery/", "date": "2021-09-01", "cves": [], "vendors": ["– New York State Excelsior Pass Vaccine Passport Credential Forgery"], "researchers": ["Siddarth Adukia sid adukia[at]nccgroup[dot]com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-new-york-state-excelsior-pass-vaccine-passport-scanner-app-sends-data-to-a-third-party-not-specified-in-privacy-policy/", "date": "2021-09-01", "cves": [], "vendors": [], "researchers": ["Dan Hastings dan hastings[at]nccgroup[dot]trust"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-pulse-connect-secure-rce-via-uncontrolled-archive-extraction-cve-2021-22937-patch-bypass/", "date": "2021-08-05", "cves": ["CVE-2021-22937", "CVE-2020-8260", "CVE-2020-22900"], "vendors": ["Pulse Connect Secure"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-sunhillo-sureline-unauthenticated-os-command-injection-cve-2021-36380/", "date": "2021-07-26", "cves": ["CVE-2021-36380"], "vendors": ["– Sunhillo SureLine Unauthenticated OS Command Injection"], "researchers": ["Liam Glanfield"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-stored-and-reflected-xss-vulnerability-in-nagios-log-server-cve-2021-35478-cve-2021-35479/", "date": "2021-07-22", "cves": ["CVE-2021-35478", "CVE-2021-35479"], "vendors": ["Stored and Reflected XSS Vulnerability in Nagios Log Server"], "researchers": ["Liew Hock Lai"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-ictfax-7-4-indirect-object-reference/", "date": "2021-07-22", "cves": [], "vendors": ["– ICTFAX 7"], "researchers": ["Derek Stoeckenius"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-arbitrary-file-read-in-dell-wyse-management-suite-cve-2021-21586-cve-2021-21587/", "date": "2021-07-06", "cves": ["CVE-2021-21586", "CVE-2021-21587"], "vendors": ["– Arbitrary File Read in Dell Wyse Management Suite"], "researchers": ["Stephen Tomkinson"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-shop-app-sends-pasteboard-data-to-shopify-s-servers/", "date": "2021-07-02", "cves": [], "vendors": ["– Shop app sends pasteboard data to Shopify’s servers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-parceltrack-sends-all-pasteboard-data-to-parceltrack-s-servers-on-startup/", "date": "2021-03-30", "cves": [], "vendors": ["– ParcelTrack sends all pasteboard data to ParcelTrack’s servers on startup"], "researchers": ["Dan Hastings – dan hastings[at]nccgroup[dot]com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-netgear-prosafe-plus-jgs516pe-gs116ev2-switches/", "date": "2021-03-08", "cves": ["CVE-2020-26919", "CVE-2020-35231", "CVE-2020-35220", "CVE-2020-35232", "CVE-2020-35224", "CVE-2020-35221", "CVE-2020-35229", "CVE-2020-35228", "CVE-2020-35227", "CVE-2020-35226", "CVE-2020-35222", "CVE-2020-35233", "CVE-2020-35230", "CVE-2020-35225", "CVE-2020-35223"], "vendors": ["– Multiple Vulnerabilities in Netgear ProSAFE Plus"], "researchers": ["Manuel Ginés Rodríguez - manuel gines[at]nccgroup[dot]com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-administrative-passcode-recovery-and-authenticated-remote-buffer-overflow-vulnerabilities-in-gigaset-dx600a-handset-cve-2021-25309-cve-2021-25306/", "date": "2021-02-28", "cves": ["CVE-2021-25309", "CVE-2021-25306"], "vendors": [], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-linksys-wrt160nl-authenticated-command-injection-cve-2021-25310/", "date": "2021-01-28", "cves": ["CVE-2021-25310"], "vendors": ["– Linksys"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-os-command-injection-in-silver-peak-edgeconnect-appliances-cve-2020-12148-cve-2020-12149/", "date": "2020-12-17", "cves": ["CVE-2020-12148", "CVE-2020-12149"], "vendors": ["OS Command Injection in Silver Peak EdgeConnect Appliances"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-sql-injection-and-reflected-cross-site-scripting-xss-vulnerabilities-in-oracle-communications-diameter-signaling-router-cve-2020-14787-cve-2020-14788/", "date": "2020-11-03", "cves": ["CVE-2020-14787", "CVE-2020-14788"], "vendors": ["SQL Injection and Reflected Cross"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-command-injection/", "date": "2020-11-02", "cves": ["CVE-2020-8429"], "vendors": ["Command Injection"], "researchers": ["Gary Swales"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-pulse-connect-secure-rce-via-uncontrolled-gzip-extraction-cve-2020-8260/", "date": "2020-10-26", "cves": ["CVE-2020-8260"], "vendors": ["Pulse Connect Secure"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-pulse-connect-secure-arbitrary-file-read-via-logon-message-cve-2020-8255/", "date": "2020-10-26", "cves": ["CVE-2020-8255"], "vendors": ["Pulse Connect Secure"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-jitsi-meet-electron-limited-certificate-validation-bypass-cve-2020-27161/", "date": "2020-10-23", "cves": ["CVE-2020-27161"], "vendors": ["– Jitsi Meet Electron"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-jitsi-meet-electron-arbitrary-client-remote-code-execution-cve-2020-27162/", "date": "2020-10-23", "cves": ["CVE-2020-27162"], "vendors": ["– Jitsi Meet Electron"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-linksys-wrt160nl-authenticated-remote-buffer-overflow-cve-2020-26561/", "date": "2020-10-20", "cves": ["CVE-2020-26561"], "vendors": ["– Linksys"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-pulse-connect-secure-rce-via-template-injection-cve-2020-8243/", "date": "2020-10-06", "cves": ["CVE-2020-8243", "CVE-2019-19781"], "vendors": ["– Pulse Connect Secure"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-lansweeper-privilege-escalation-via-csrf-using-http-method-interchange-cve-2020-13658/", "date": "2020-09-25", "cves": ["CVE-2020-13658"], "vendors": ["– Lansweeper Privilege Escalation via CSRF Using HTTP Method Interchange"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-wolfssl-tls-13-client-man-in-the-middle-attack-cve-2020-24613/", "date": "2020-08-24", "cves": ["CVE-2020-24613"], "vendors": ["– wolfSSL TLS 1.3 Client Man"], "researchers": ["Gérald Doussot"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-freepbx-multiple-authenticated-sql-injections-in-ucp-application/", "date": "2020-08-21", "cves": [], "vendors": ["– FreePBX"], "researchers": ["Bill Marquette"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-html-injection-vulnerabilities-in-kaios-pre-installed-mobile-applications/", "date": "2020-08-21", "cves": ["CVE-2019-14756", "CVE-2019-14757", "CVE-2019-14758", "CVE-2019-14760", "CVE-2019-14761", "CVE-2019-14759"], "vendors": ["– Multiple HTML Injection Vulnerabilities in KaiOS Pre"], "researchers": ["Neil Bergman"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-heartbleed-chained-with-a-pass-the-hash-attack-leads-to-device-compromise-on-tp-link-c200-ip-camera/", "date": "2020-07-21", "cves": [], "vendors": ["Heartbleed chained with a Pass"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-macos-installer-local-root-privilege-escalation-cve-2020-9817/", "date": "2020-07-02", "cves": ["CVE-2020-9817"], "vendors": ["– macOS Installer Local Root Privilege Escalation"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-arm-mbedos-usb-mass-storage-driver-memory-corruption/", "date": "2020-06-11", "cves": [], "vendors": ["– ARM MbedOS USB Mass Storage Driver Memory Corruption"], "researchers": ["Ilya Zhuravlev"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-playsms-pre-authentication-remote-code-execution-cve-2020-8644/", "date": "2020-02-11", "cves": ["CVE-2020-8644"], "vendors": ["– playSMS Pre"], "researchers": ["Lucas Rosevear"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-gaining-root-access-on-sumpple-s610-ip-camera-via-telnet-and-unprotected-client-and-server-data-transmission-between-android-and-ios-clients/", "date": "2019-11-28", "cves": ["CVE-2019-12085", "CVE-2019-16727"], "vendors": [], "researchers": ["Sebastian Parker-Fitch"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-cyberark-epm-non-paged-pool-buffer-overflow/", "date": "2019-08-03", "cves": ["CVE-2019-9627"], "vendors": ["CyberArk EPM Non"], "researchers": ["Jason Crowder"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-unauthenticated-sql-injection-in-lansweeper/", "date": "2019-07-26", "cves": ["CVE-2019-13462"], "vendors": ["Unauthenticated SQL Injection in Lansweeper"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-brother-printers/", "date": "2019-07-08", "cves": ["CVE-2019-13193", "CVE-2019-13192", "CVE-2019-13194"], "vendors": ["Multiple Vulnerabilities in Brother Printers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-kyocera-printers/", "date": "2019-07-08", "cves": ["CVE-2019-13196", "CVE-2019-13197", "CVE-2019-13202", "CVE-2019-13203", "CVE-2019-13206", "CVE-2019-13204", "CVE-2019-13201", "CVE-2019-13195", "CVE-2019-13205", "CVE-2019-13198", "CVE-2019-13200", "CVE-2019-13199"], "vendors": ["Multiple Vulnerabilities in Kyocera Printers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-ricoh-printers/", "date": "2019-07-08", "cves": ["CVE-2019-14300", "CVE-2019-14305", "CVE-2019-14307", "CVE-2019-14308", "CVE-2019-14299", "CVE-2019-14301", "CVE-2019-14306", "CVE-2019-14303", "CVE-2019-14304", "CVE-2019-14310", "CVE-2019-14302", "CVE-2019-14309"], "vendors": ["Multiple Vulnerabilities in Ricoh Printers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-xerox-printers/", "date": "2019-07-08", "cves": ["CVE-2019-13171", "CVE-2019-13165", "CVE-2019-13168", "CVE-2019-13169", "CVE-2019-13172", "CVE-2019-13167", "CVE-2019-13170", "CVE-2019-13166"], "vendors": ["Multiple Vulnerabilities in Xerox Printers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-hp-printers/", "date": "2019-06-25", "cves": ["CVE-2019-6327", "CVE-2019-6326", "CVE-2019-6323", "CVE-2019-6324", "CVE-2019-6325"], "vendors": ["Multiple Vulnerabilities in HP Printers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-authorization-bypass-allows-for-pinboard-corruption/", "date": "2019-06-10", "cves": ["CVE-2019-12782"], "vendors": ["– Authorization Bypass Allows for Pinboard Corruption"], "researchers": ["Will Enright"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-lexmark-printers/", "date": "2019-05-28", "cves": ["CVE-2019-9931", "CVE-2019-9930", "CVE-2019-9932", "CVE-2019-9933", "CVE-2019-9934", "CVE-2019-9935", "CVE-2019-10059", "CVE-2019-10057", "CVE-2019-10058"], "vendors": ["Multiple Vulnerabilities in Lexmark Printers"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-intel-driver-support-assistance-local-privilege-escalation/", "date": "2019-05-15", "cves": ["CVE-2019-11114"], "vendors": ["Intel Driver Support & Assistance"], "researchers": ["Richard Warren"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-citrix-workspace-receiver-remote-code-execution-vulnerability/", "date": "2019-05-14", "cves": ["CVE-2019-11634"], "vendors": ["Citrix Workspace / Receiver Remote Code Execution Vulnerability"], "researchers": ["Ollie Whitehouse"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-smartermail/", "date": "2019-04-16", "cves": ["CVE-2019-7214", "CVE-2019-7211", "CVE-2019-7212", "CVE-2019-7213"], "vendors": ["Multiple Vulnerabilities in SmarterMail"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-deltek-vision-arbitrary-sql-execution-sqli/", "date": "2019-04-09", "cves": ["CVE-2018-18251"], "vendors": ["– DelTek Vision"], "researchers": ["Robert Wessen"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-mailenable/", "date": "2019-02-07", "cves": ["CVE-2019-12923", "CVE-2019-12924", "CVE-2019-12925", "CVE-2019-12926", "CVE-2019-12927"], "vendors": ["Multiple Vulnerabilities in MailEnable"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-ip-office-stored-cross-site-scripting-xss-vulnerability/", "date": "2019-02-01", "cves": ["CVE-2018-15614"], "vendors": ["IP Office Stored Cross Site Scripting Vulnerability"], "researchers": ["Mattia Reggiani mattia reggiani[at]nccgroup[dot]com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-smb-hash-hijacking-and-user-tracking-in-ms-outlook/", "date": "2018-11-05", "cves": ["CVE-2017-8572", "CVE-2017-11927"], "vendors": ["SMB Hash Hijacking and User Tracking in MS Outlook"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-authentication-bypass-in-libssh/", "date": "2018-10-17", "cves": ["CVE-2018-10933"], "vendors": ["Authentication Bypass in libSSH"], "researchers": ["Peter Winter-Smith peter winter-smith[at]nccgroup com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-bypassing-workflows-protection-mechanisms-remote-code-execution-on-sharepoint/", "date": "2018-08-30", "cves": ["CVE-2018-8284"], "vendors": ["Bypassing Workflows Protection Mechanisms"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-mosquitto-broker-dos-through-a-memory-leak-vulnerability/", "date": "2018-08-29", "cves": ["CVE-2017-7654"], "vendors": ["Mosquitto Broker DoS through a Memory Leak vulnerability"], "researchers": ["Daniel Romero – daniel romero[at]nccgroup[dot]trust"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-mitel-mivoice-5330e-memory-corruption-flaw/", "date": "2018-08-21", "cves": ["CVE-2018-15497"], "vendors": ["Mitel MiVoice 5330e Memory Corruption Flaw"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-unauthenticated-remote-command-execution-through-multiple-vulnerabilities-in-virgin-media-hub-30/", "date": "2018-07-12", "cves": [], "vendors": ["Unauthenticated Remote Command Execution through Multiple Vulnerabilities in Virgin Media Hub 3.0"], "researchers": ["Balazs Bucsay"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-rohnp-key-extraction-side-channel-in-multiple-crypto-libraries/", "date": "2018-06-14", "cves": ["CVE-2018-0495"], "vendors": ["“ROHNP”"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-manageengine-desktop-central/", "date": "2018-04-17", "cves": ["CVE-2018-5337", "CVE-2018-5338", "CVE-2018-5339", "CVE-2018-5340", "CVE-2018-5341", "CVE-2018-5342"], "vendors": ["Multiple Vulnerabilities in ManageEngine Desktop Central"], "researchers": ["Ben Lincoln"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-code-execution-by-unsafe-resource-handling-in-multiple-microsoft-products/", "date": "2018-02-08", "cves": ["CVE-2018-8172", "CVE-2018-8260", "CVE-2018-8300"], "vendors": ["Code Execution by Unsafe Resource Handling in Multiple Microsoft Products"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-reflected-cross-site-scripting-xss-vulnerability-in-jenkins-delivery-pipeline-plugin/", "date": "2018-02-01", "cves": [], "vendors": ["Reflected Cross"], "researchers": ["Viktor Gazdag viktor gazdag[at]nccgroup[dot]trust"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-bomgar-remote-support-local-privilege-escalation/", "date": "2017-10-26", "cves": ["CVE-2017-5996"], "vendors": ["– Bomgar Remote Support"], "researchers": ["Robert Wessen"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-adobe-coldfusion-rmi-registrybind-deserialisation-rce/", "date": "2017-10-16", "cves": ["CVE-2017-11284"], "vendors": ["Adobe ColdFusion RMI Registry.bind Deserialisation RCE"], "researchers": ["Nick Bloor /"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-adobe-coldfusion-object-deserialisation-rce/", "date": "2017-10-16", "cves": ["CVE-2017-11283"], "vendors": ["Adobe ColdFusion Object Deserialisation RCE"], "researchers": ["Nick Bloor /"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-authentication-rule-bypass/", "date": "2017-09-19", "cves": [], "vendors": ["Authentication rule bypass"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-play-pac4j-authentication-rule-bypass/", "date": "2017-09-18", "cves": [], "vendors": ["– play"], "researchers": ["James Chambers"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-cve-2017-8592-xmlhttprequest-in-ie-followed-307-redirections-with-additional-or-customised-headers/", "date": "2017-07-14", "cves": ["CVE-2017-8592"], "vendors": ["CVE"], "researchers": ["Soroush Dalili"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-shell-injection-in-sourcetree/", "date": "2017-02-24", "cves": [], "vendors": ["Shell Injection in SourceTree"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-shell-injection-in-macvim-mvim-uri-handler/", "date": "2017-02-24", "cves": [], "vendors": ["Shell Injection in MacVim mvim URI Handler"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-multiple-vulnerabilities-in-accellion-file-transfer-appliance/", "date": "2017-02-20", "cves": ["CVE-2005-0710", "CVE-2016-2351"], "vendors": ["Multiple Vulnerabilities in Accellion File Transfer Appliance"], "researchers": []}, {"url": "https://www.nccgroup.com/research/technical-advisory-nexpose-hard-coded-java-key-store-passphrase-allows-decryption-of-stored-credentials/", "date": "2017-02-03", "cves": [], "vendors": ["Nexpose Hard‐coded Java Key Store Passphrase Allows Decryption of Stored Credentials"], "researchers": ["Noah Beddome"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-apple-ios-osx-foundation-nsxmlparser-xxe-vulnerability/", "date": "2014-09-17", "cves": ["CVE-2014-4374"], "vendors": ["– Apple iOS / OSX: Foundation NSXMLParser XXE Vulnerability"], "researchers": ["George D. Gal"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-htc-iqrd-android-permission-leakage/", "date": "2012-04-20", "cves": ["CVE-2012-2217"], "vendors": ["– HTC IQRD Android Permission Leakage"], "researchers": ["Dan Rosenberg"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-libraptor-xxe-in-rdfxml-file-interpretation/", "date": "2012-03-24", "cves": ["CVE-2012-0037"], "vendors": ["– libraptor"], "researchers": ["tmorgan {a} vsecurity * com"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-apple-hfsplus-information-disclosure-vulnerability/", "date": "2011-03-22", "cves": ["CVE-2011-0180"], "vendors": ["– Apple HFS+ Information Disclosure Vulnerability"], "researchers": ["Dan Rosenberg"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-openofficeorg-multiple-memory-corruption-vulnerabilities/", "date": "2011-01-26", "cves": ["CVE-2010-3451", "CVE-2010-3452", "CVE-2010-3453", "CVE-2010-3454"], "vendors": ["– OpenOffice.org Multiple Memory Corruption Vulnerabilities"], "researchers": ["Dan Rosenberg"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-citrix-access-gateway-command-injection-vulnerability/", "date": "2010-12-21", "cves": ["CVE-2010-4566"], "vendors": ["– Citrix Access Gateway Command Injection Vulnerability"], "researchers": ["George D. Gal"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-coda-filesystem-kernel-memory-disclosure/", "date": "2010-08-16", "cves": ["CVE-2010-3014"], "vendors": ["– Coda Filesystem Kernel Memory Disclosure"], "researchers": ["Dan Rosenberg < drosenberg vsecurity com >"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-ibm-tam-remote-directory-traversal-and-file-retrieval-via-web-server-plug-in/", "date": "2006-02-03", "cves": ["CVE-2006-0513"], "vendors": ["– IBM TAM: Remote Directory Traversal and File Retrieval via web server plug"], "researchers": ["Timothy D. Morgan"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-espressif-systems-esp32-blufi-reference-application-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-55297"], "vendors": ["Espressif Systems"], "researchers": ["James Chambers"]}, {"url": "https://www.nccgroup.com/research/technical-advisory-cross-site-scripting-in-umbraco-rich-text-display/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55488"], "vendors": ["Cross"], "researchers": ["Liyun Li <liyun li[at]nccgroup[dot]com>"]}]}, {"lab": "Nozomi Networks", "url": "https://www.nozominetworks.com/vulnerability-advisories", "A": 203, "Q": 203, "V": 24, "R": 8, "researchers": [{"name": "Gabriele Quagliarella", "count": 66}, {"name": "Diego Giubertoni", "count": 43}, {"name": "Andrea Palanca", "count": 40}, {"name": "Diego Zaffaroni", "count": 36}, {"name": "Luca Borzacchiello", "count": 22}, {"name": "Raffaele Bova", "count": 4}, {"name": "Nicolò Facchi", "count": 3}, {"name": "Ivan Speziale", "count": 1}], "vendors": [{"name": "Q-Free MaxTime", "count": 43}, {"name": "libfluid", "count": 37}, {"name": "Lanner", "count": 13}, {"name": "AiLux", "count": 12}, {"name": "Owl", "count": 11}, {"name": "Mongoose", "count": 10}, {"name": "RT-Labs P-Net", "count": 10}, {"name": "Mavic 3", "count": 6}, {"name": "Sensor Net Connect V2", "count": 4}, {"name": "DroneScout ds230", "count": 3}, {"name": "Zettler 130.8005", "count": 3}, {"name": "Merative Merge", "count": 3}, {"name": "Thermoscan IP", "count": 3}, {"name": "GoAhead", "count": 3}, {"name": "This issue affect the GE Vernova EnerVista UR Setup", "count": 3}, {"name": "Mini 3", "count": 2}, {"name": "Cesanta Frozen", "count": 2}, {"name": "Shelly Pro", "count": 2}, {"name": "libplctag", "count": 2}, {"name": "This issue affect the GE Vernova UR IED device family", "count": 2}, {"name": "The vulnerability affects the following Valmet DNA", "count": 1}, {"name": "Tyan S5552 BMC", "count": 1}, {"name": "libmodbus", "count": 1}, {"name": "firmware", "count": 1}], "advisories": [{"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-3588", "date": "2026-03-10", "cves": ["CVE-2026-3588"], "vendors": ["firmware"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-2333", "date": "2026-02-23", "cves": ["CVE-2026-2333"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26093", "date": "2026-02-23", "cves": ["CVE-2026-26093"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26094", "date": "2026-02-23", "cves": ["CVE-2026-26094"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26095", "date": "2026-02-23", "cves": ["CVE-2026-26095"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26096", "date": "2026-02-23", "cves": ["CVE-2026-26096"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26097", "date": "2026-02-23", "cves": ["CVE-2026-26097"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26098", "date": "2026-02-23", "cves": ["CVE-2026-26098"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26099", "date": "2026-02-23", "cves": ["CVE-2026-26099"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26100", "date": "2026-02-23", "cves": ["CVE-2026-26100"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26101", "date": "2026-02-23", "cves": ["CVE-2026-26101"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2026-26102", "date": "2026-02-23", "cves": ["CVE-2026-26102"], "vendors": ["Owl"], "researchers": ["Luca Borzacchiello", "Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50358", "date": "2025-11-26", "cves": ["CVE-2024-50358"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50359", "date": "2025-11-26", "cves": ["CVE-2024-50359"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50360", "date": "2025-11-26", "cves": ["CVE-2024-50360"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50361", "date": "2025-11-26", "cves": ["CVE-2024-50361"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50362", "date": "2025-11-26", "cves": ["CVE-2024-50362"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50363", "date": "2025-11-26", "cves": ["CVE-2024-50363"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50364", "date": "2025-11-26", "cves": ["CVE-2024-50364"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50365", "date": "2025-11-26", "cves": ["CVE-2024-50365"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50366", "date": "2025-11-26", "cves": ["CVE-2024-50366"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50367", "date": "2025-11-26", "cves": ["CVE-2024-50367"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50368", "date": "2025-11-26", "cves": ["CVE-2024-50368"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50369", "date": "2025-11-26", "cves": ["CVE-2024-50369"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50370", "date": "2025-11-26", "cves": ["CVE-2024-50370"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50371", "date": "2025-11-26", "cves": ["CVE-2024-50371"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50372", "date": "2025-11-26", "cves": ["CVE-2024-50372"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50373", "date": "2025-11-26", "cves": ["CVE-2024-50373"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50374", "date": "2025-11-26", "cves": ["CVE-2024-50374"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50375", "date": "2025-11-26", "cves": ["CVE-2024-50375"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50376", "date": "2025-11-26", "cves": ["CVE-2024-50376"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-50377", "date": "2025-11-26", "cves": ["CVE-2024-50377"], "vendors": [], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-11243", "date": "2025-11-18", "cves": ["CVE-2025-11243"], "vendors": ["Shelly Pro"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-12056", "date": "2025-11-18", "cves": ["CVE-2025-12056"], "vendors": ["Shelly Pro"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-11677", "date": "2025-10-08", "cves": ["CVE-2025-11677"], "vendors": [], "researchers": ["Raffaele Bova"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-11678", "date": "2025-10-08", "cves": ["CVE-2025-11678"], "vendors": [], "researchers": ["Raffaele Bova"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-11679", "date": "2025-10-08", "cves": ["CVE-2025-11679"], "vendors": [], "researchers": ["Raffaele Bova"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-11680", "date": "2025-10-08", "cves": ["CVE-2025-11680"], "vendors": [], "researchers": ["Raffaele Bova"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-1399", "date": "2025-05-06", "cves": ["CVE-2025-1399"], "vendors": ["libplctag"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-1400", "date": "2025-05-06", "cves": ["CVE-2025-1400"], "vendors": ["libplctag"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32396", "date": "2025-05-05", "cves": ["CVE-2025-32396"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32397", "date": "2025-05-05", "cves": ["CVE-2025-32397"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32398", "date": "2025-05-05", "cves": ["CVE-2025-32398"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32399", "date": "2025-05-05", "cves": ["CVE-2025-32399"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32400", "date": "2025-05-05", "cves": ["CVE-2025-32400"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32401", "date": "2025-05-05", "cves": ["CVE-2025-32401"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32402", "date": "2025-05-05", "cves": ["CVE-2025-32402"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32403", "date": "2025-05-05", "cves": ["CVE-2025-32403"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32404", "date": "2025-05-05", "cves": ["CVE-2025-32404"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-32405", "date": "2025-05-05", "cves": ["CVE-2025-32405"], "vendors": ["RT-Labs P-Net"], "researchers": ["Luca Borzacchiello"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-41975", "date": "2025-03-23", "cves": ["CVE-2024-41975"], "vendors": [], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-27253", "date": "2025-03-07", "cves": ["CVE-2025-27253"], "vendors": ["This issue affect the GE Vernova UR IED device family"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-27254", "date": "2025-03-07", "cves": ["CVE-2025-27254"], "vendors": ["This issue affect the GE Vernova EnerVista UR Setup"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-27255", "date": "2025-03-07", "cves": ["CVE-2025-27255"], "vendors": ["This issue affect the GE Vernova EnerVista UR Setup"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-27256", "date": "2025-03-07", "cves": ["CVE-2025-27256"], "vendors": ["This issue affect the GE Vernova EnerVista UR Setup"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-27257", "date": "2025-03-07", "cves": ["CVE-2025-27257"], "vendors": ["This issue affect the GE Vernova UR IED device family"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-10918", "date": "2025-02-24", "cves": ["CVE-2024-10918"], "vendors": ["libmodbus"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-12011", "date": "2025-02-17", "cves": ["CVE-2024-12011"], "vendors": ["Zettler 130.8005"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-12012", "date": "2025-02-17", "cves": ["CVE-2024-12012"], "vendors": ["Zettler 130.8005"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-12013", "date": "2025-02-17", "cves": ["CVE-2024-12013"], "vendors": ["Zettler 130.8005"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-1100", "date": "2025-02-11", "cves": ["CVE-2025-1100"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-1101", "date": "2025-02-11", "cves": ["CVE-2025-1101"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-1102", "date": "2025-02-11", "cves": ["CVE-2025-1102"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26339", "date": "2025-02-11", "cves": ["CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26340", "date": "2025-02-11", "cves": ["CVE-2025-26340"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26341", "date": "2025-02-11", "cves": ["CVE-2025-26341"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26342", "date": "2025-02-11", "cves": ["CVE-2025-26342"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26343", "date": "2025-02-11", "cves": ["CVE-2025-26343"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26344", "date": "2025-02-11", "cves": ["CVE-2025-26344"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26345", "date": "2025-02-11", "cves": ["CVE-2025-26345"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26346", "date": "2025-02-11", "cves": ["CVE-2025-26346", "CVE-2025-26345"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26347", "date": "2025-02-11", "cves": ["CVE-2025-26347"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26348", "date": "2025-02-11", "cves": ["CVE-2025-26348", "CVE-2025-26347"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26349", "date": "2025-02-11", "cves": ["CVE-2025-26349", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26350", "date": "2025-02-11", "cves": ["CVE-2025-26350", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26351", "date": "2025-02-11", "cves": ["CVE-2025-26351", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26352", "date": "2025-02-11", "cves": ["CVE-2025-26352", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26353", "date": "2025-02-11", "cves": ["CVE-2025-26353", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26354", "date": "2025-02-11", "cves": ["CVE-2025-26354", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26355", "date": "2025-02-11", "cves": ["CVE-2025-26355", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26356", "date": "2025-02-11", "cves": ["CVE-2025-26356", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26357", "date": "2025-02-11", "cves": ["CVE-2025-26357", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26358", "date": "2025-02-11", "cves": ["CVE-2025-26358", "CVE-2025-26339"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26359", "date": "2025-02-11", "cves": ["CVE-2025-26359"], "vendors": ["Q-Free MaxTime"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26360", "date": "2025-02-11", "cves": ["CVE-2025-26360"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26361", "date": "2025-02-11", "cves": ["CVE-2025-26361"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26362", "date": "2025-02-11", "cves": ["CVE-2025-26362"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26363", "date": "2025-02-11", "cves": ["CVE-2025-26363"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26364", "date": "2025-02-11", "cves": ["CVE-2025-26364"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26365", "date": "2025-02-11", "cves": ["CVE-2025-26365"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26366", "date": "2025-02-11", "cves": ["CVE-2025-26366"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26367", "date": "2025-02-11", "cves": ["CVE-2025-26367"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26368", "date": "2025-02-11", "cves": ["CVE-2025-26368"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26369", "date": "2025-02-11", "cves": ["CVE-2025-26369"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26370", "date": "2025-02-11", "cves": ["CVE-2025-26370"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26371", "date": "2025-02-11", "cves": ["CVE-2025-26371"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26372", "date": "2025-02-11", "cves": ["CVE-2025-26372"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26373", "date": "2025-02-11", "cves": ["CVE-2025-26373"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26374", "date": "2025-02-11", "cves": ["CVE-2025-26374"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26375", "date": "2025-02-11", "cves": ["CVE-2025-26375"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26376", "date": "2025-02-11", "cves": ["CVE-2025-26376"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26377", "date": "2025-02-11", "cves": ["CVE-2025-26377"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-26378", "date": "2025-02-11", "cves": ["CVE-2025-26378"], "vendors": ["Q-Free MaxTime"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-0695", "date": "2025-01-31", "cves": ["CVE-2025-0695"], "vendors": ["Cesanta Frozen"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2025-0696", "date": "2025-01-31", "cves": ["CVE-2025-0696"], "vendors": ["Cesanta Frozen"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42383", "date": "2024-11-14", "cves": ["CVE-2024-42383"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42384", "date": "2024-11-14", "cves": ["CVE-2024-42384"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella", "Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42385", "date": "2024-11-14", "cves": ["CVE-2024-42385"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42386", "date": "2024-11-14", "cves": ["CVE-2024-42386"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42387", "date": "2024-11-14", "cves": ["CVE-2024-42387"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42388", "date": "2024-11-14", "cves": ["CVE-2024-42388"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42389", "date": "2024-11-14", "cves": ["CVE-2024-42389"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42390", "date": "2024-11-14", "cves": ["CVE-2024-42390"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42391", "date": "2024-11-14", "cves": ["CVE-2024-42391"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-3184", "date": "2024-10-14", "cves": ["CVE-2024-3184"], "vendors": ["GoAhead"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-3186", "date": "2024-10-14", "cves": ["CVE-2024-3186"], "vendors": ["GoAhead"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-3187", "date": "2024-10-14", "cves": ["CVE-2024-3187"], "vendors": ["GoAhead"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-23915", "date": "2024-09-12", "cves": ["CVE-2024-23915"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-23916", "date": "2024-09-12", "cves": ["CVE-2024-23916"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31164", "date": "2024-09-12", "cves": ["CVE-2024-31164"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31165", "date": "2024-09-12", "cves": ["CVE-2024-31165"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31166", "date": "2024-09-12", "cves": ["CVE-2024-31166"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31167", "date": "2024-09-12", "cves": ["CVE-2024-31167"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31168", "date": "2024-09-12", "cves": ["CVE-2024-31168"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31169", "date": "2024-09-12", "cves": ["CVE-2024-31169"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31170", "date": "2024-09-12", "cves": ["CVE-2024-31170"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31171", "date": "2024-09-12", "cves": ["CVE-2024-31171"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31172", "date": "2024-09-12", "cves": ["CVE-2024-31172"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31173", "date": "2024-09-12", "cves": ["CVE-2024-31173"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-23912", "date": "2024-04-30", "cves": ["CVE-2024-23912"], "vendors": ["Merative Merge"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-23913", "date": "2024-04-30", "cves": ["CVE-2024-23913"], "vendors": ["Merative Merge"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-23914", "date": "2024-04-30", "cves": ["CVE-2024-23914"], "vendors": ["Merative Merge"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-51452", "date": "2024-03-29", "cves": ["CVE-2023-51452"], "vendors": ["Mavic 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-51453", "date": "2024-03-29", "cves": ["CVE-2023-51453"], "vendors": ["Mavic 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-51454", "date": "2024-03-29", "cves": ["CVE-2023-51454"], "vendors": ["Mavic 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-51455", "date": "2024-03-29", "cves": ["CVE-2023-51455"], "vendors": ["Mavic 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-51456", "date": "2024-03-29", "cves": ["CVE-2023-51456"], "vendors": ["Mavic 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-6948", "date": "2024-03-29", "cves": ["CVE-2023-6948"], "vendors": ["Mavic 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-6949", "date": "2024-03-29", "cves": ["CVE-2023-6949"], "vendors": ["Mini 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-6950", "date": "2024-03-29", "cves": ["CVE-2023-6950"], "vendors": ["Mini 3"], "researchers": ["Diego Giubertoni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45591", "date": "2024-03-04", "cves": ["CVE-2023-45591"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45592", "date": "2024-03-04", "cves": ["CVE-2023-45592"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45593", "date": "2024-03-04", "cves": ["CVE-2023-45593"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45594", "date": "2024-03-04", "cves": ["CVE-2023-45594"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45595", "date": "2024-03-04", "cves": ["CVE-2023-45595"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45596", "date": "2024-03-04", "cves": ["CVE-2023-45596"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45597", "date": "2024-03-04", "cves": ["CVE-2023-45597"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45598", "date": "2024-03-04", "cves": ["CVE-2023-45598"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45599", "date": "2024-03-04", "cves": ["CVE-2023-45599"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-45600", "date": "2024-03-04", "cves": ["CVE-2023-45600"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-5456", "date": "2024-03-04", "cves": ["CVE-2023-5456"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-5457", "date": "2024-03-04", "cves": ["CVE-2023-5457"], "vendors": ["AiLux"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-29156", "date": "2023-07-10", "cves": ["CVE-2023-29156"], "vendors": ["DroneScout ds230"], "researchers": ["Nicolò Facchi"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-31190", "date": "2023-07-10", "cves": ["CVE-2023-31190"], "vendors": ["DroneScout ds230"], "researchers": ["Nicolò Facchi"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-31191", "date": "2023-07-10", "cves": ["CVE-2023-31191"], "vendors": ["DroneScout ds230"], "researchers": ["Nicolò Facchi"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-3082", "date": "2023-07-07", "cves": ["CVE-2024-3082"], "vendors": ["Sensor Net Connect V2"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-3083", "date": "2023-07-07", "cves": ["CVE-2024-3083"], "vendors": ["Sensor Net Connect V2"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31199", "date": "2023-07-07", "cves": ["CVE-2024-31199"], "vendors": ["Sensor Net Connect V2"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31200", "date": "2023-07-07", "cves": ["CVE-2024-31200"], "vendors": ["Sensor Net Connect V2"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31201", "date": "2023-07-07", "cves": ["CVE-2024-31201"], "vendors": ["Thermoscan IP"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31202", "date": "2023-07-07", "cves": ["CVE-2024-31202"], "vendors": ["Thermoscan IP"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31203", "date": "2023-07-07", "cves": ["CVE-2024-31203"], "vendors": ["Thermoscan IP"], "researchers": ["Diego Zaffaroni"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2023-2538", "date": "2023-07-05", "cves": ["CVE-2023-2538"], "vendors": ["Tyan S5552 BMC"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26727", "date": "2022-10-21", "cves": ["CVE-2021-26727"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26728", "date": "2022-10-21", "cves": ["CVE-2021-26728"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26729", "date": "2022-10-21", "cves": ["CVE-2021-26729"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26730", "date": "2022-10-21", "cves": ["CVE-2021-26730"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26731", "date": "2022-10-21", "cves": ["CVE-2021-26731"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26732", "date": "2022-10-21", "cves": ["CVE-2021-26732"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26733", "date": "2022-10-21", "cves": ["CVE-2021-26733"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-4228", "date": "2022-10-21", "cves": ["CVE-2021-4228"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-44467", "date": "2022-10-21", "cves": ["CVE-2021-44467"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-44769", "date": "2022-10-21", "cves": ["CVE-2021-44769"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-44776", "date": "2022-10-21", "cves": ["CVE-2021-44776"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-45925", "date": "2022-10-21", "cves": ["CVE-2021-45925"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-46279", "date": "2022-10-21", "cves": ["CVE-2021-46279"], "vendors": ["Lanner"], "researchers": ["Andrea Palanca"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2021-26726", "date": "2022-02-16", "cves": ["CVE-2021-26726"], "vendors": ["The vulnerability affects the following Valmet DNA"], "researchers": ["Ivan Speziale"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31174", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31174"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31175", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31175"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31176", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31176"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31177", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31177"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31178", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31178"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31179", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31179"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31180", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31180"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31181", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31181"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31182", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31182"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31183", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31183"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31184", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31184"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31185", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31185"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31186", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31186"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31187", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31187"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31188", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31188"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31189", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31189"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31190", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31190"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31191", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31191"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31192", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31192"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31193", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31193"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31194", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31194"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31195", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31195"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31196", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31196"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31197", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31197"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-31198", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31198"], "vendors": ["libfluid"], "researchers": ["Gabriele Quagliarella"]}, {"url": "https://www.nozominetworks.com/labs/vulnerability-advisories-cve-2024-42392", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-42392"], "vendors": ["Mongoose"], "researchers": ["Gabriele Quagliarella"]}]}, {"lab": "Orange Cyberdefense", "url": "https://github.com/Orange-Cyberdefense/CVE-repository", "A": 65, "Q": 65, "V": 38, "R": 21, "researchers": [{"name": "Guilhem Rioux", "count": 17}, {"name": "Cyril Servieres", "count": 10}, {"name": "Mike Houziaux", "count": 7}, {"name": "Jean-Pascal Thomas", "count": 4}, {"name": "Mickael Dorigny", "count": 4}, {"name": "Alexandre Zanni", "count": 4}, {"name": "Claire Vacherot", "count": 3}, {"name": "Romain Penloup", "count": 3}, {"name": "Nicolas Bourras", "count": 2}, {"name": "Aurelien Chalot", "count": 2}, {"name": "Benoit Malaboeuf", "count": 2}, {"name": "Dylan Garnaud", "count": 2}, {"name": "Emmanuel Campa", "count": 1}, {"name": "Kevin Carli", "count": 1}, {"name": "Nidal Guedouar", "count": 1}, {"name": "Kevin Lehongre", "count": 1}, {"name": "Wilfried Pascault", "count": 1}, {"name": "Zakaria Brahimi", "count": 1}, {"name": "Aurélien Chalot", "count": 1}, {"name": "Romain Loisel", "count": 1}, {"name": "Guillaume GRABÉ", "count": 1}], "vendors": [{"name": "GLPI", "count": 7}, {"name": "Xerox Workplace Suite", "count": 7}, {"name": "Anybus X-Gateway", "count": 3}, {"name": "Fortinet FortiManager & FortiAnalyzer", "count": 3}, {"name": "Geomatika IsiGeo Web 6.0", "count": 3}, {"name": "Eyesofnetwork", "count": 3}, {"name": "rConfig", "count": 3}, {"name": "SuiteCRM", "count": 2}, {"name": "PMB", "count": 2}, {"name": "aapanel 6.6.6", "count": 2}, {"name": "VestaCP 0.9.8-26", "count": 2}, {"name": "GoSHS", "count": 1}, {"name": "Craft CMS", "count": 1}, {"name": "Sangoma Technologies driver pbsdrv.sys", "count": 1}, {"name": "Poweradmin", "count": 1}, {"name": "PineApp Mail Secure", "count": 1}, {"name": "Avid Nexis Agent", "count": 1}, {"name": "Yii Framework", "count": 1}, {"name": "Inetnum Gecco v6.00.017", "count": 1}, {"name": "Montala Resourcespace", "count": 1}, {"name": "Fortinet FortiEDR", "count": 1}, {"name": "Jorani/bbalet", "count": 1}, {"name": "CISCO IOS XE", "count": 1}, {"name": "Ovidentia 8.3", "count": 1}, {"name": "Ligeo Archives", "count": 1}, {"name": "TP-Link Omada SDN Controler V4.4.4", "count": 1}, {"name": "Safenet Authentication Client", "count": 1}, {"name": "evolucaire imaging", "count": 1}, {"name": "Pligg 2.0.3", "count": 1}, {"name": "WSO2 API Manager: 3.1.0 or earlier", "count": 1}, {"name": "Caldera 2.7.0", "count": 1}, {"name": "cacti", "count": 1}, {"name": "KumbiaPHP 1.1.1", "count": 1}, {"name": "Openupload 0.4.3", "count": 1}, {"name": "Alfresco 5.2.4", "count": 1}, {"name": "Sling CMS App 0.14.0 and previous releases", "count": 1}, {"name": "Cisco DNAC 1.3", "count": 1}, {"name": "REDCap 8.10/9.1", "count": 1}], "advisories": [{"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-46816", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-46816"], "vendors": ["GoSHS"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-32786", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-32786"], "vendors": ["GLPI"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-32432", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-32432"], "vendors": ["Craft CMS"], "researchers": ["Nicolas Bourras"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-32104", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-32104"], "vendors": ["Sangoma Technologies driver pbsdrv.sys"], "researchers": ["Jean-Pascal Thomas"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-22380", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-22380"], "vendors": ["Poweradmin"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-22379", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-22379"], "vendors": ["PineApp Mail Secure"], "researchers": ["Aurelien Chalot"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2025-22378", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-22378"], "vendors": ["Avid Nexis Agent"], "researchers": ["Aurelien Chalot"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-58136", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-58136"], "vendors": ["Yii Framework"], "researchers": ["Nicolas Bourras"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55931", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55931"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55930", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55930"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55929", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55929"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55928", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55928"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55927", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55927"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55926", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55926"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-55925", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55925"], "vendors": ["Xerox Workplace Suite"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-50339", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-50339"], "vendors": ["GLPI"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-40638", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-40638"], "vendors": ["GLPI"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-37149", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-37149"], "vendors": ["GLPI"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-29889", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-29889"], "vendors": ["GLPI"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-23767", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-23767"], "vendors": ["Anybus X-Gateway"], "researchers": ["Claire Vacherot"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-23766", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-23766"], "vendors": ["Anybus X-Gateway"], "researchers": ["Claire Vacherot"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2024-23765", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-23765"], "vendors": ["Anybus X-Gateway"], "researchers": ["Claire Vacherot"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-44256", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-44256"], "vendors": ["Fortinet FortiManager & FortiAnalyzer"], "researchers": ["Mickael Dorigny"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-44249", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-44249"], "vendors": ["Fortinet FortiManager & FortiAnalyzer"], "researchers": ["Mickael Dorigny"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-42787", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-42787"], "vendors": ["Fortinet FortiManager & FortiAnalyzer"], "researchers": ["Mickael Dorigny"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-41320", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-41320"], "vendors": ["GLPI"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-36626", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-36626"], "vendors": ["Inetnum Gecco v6.00.017"], "researchers": ["Emmanuel Campa"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-36625", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-36625"], "vendors": ["Montala Resourcespace"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-33303", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-33303"], "vendors": ["Fortinet FortiEDR"], "researchers": ["Kevin Carli"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-26469", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26469"], "vendors": ["Jorani/bbalet"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-23565", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-23565"], "vendors": ["Geomatika IsiGeo Web 6.0"], "researchers": ["Romain Penloup"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-23564", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-23564"], "vendors": ["Geomatika IsiGeo Web 6.0"], "researchers": ["Romain Penloup", "Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-23563", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-23563"], "vendors": ["Geomatika IsiGeo Web 6.0"], "researchers": ["Romain Penloup"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2023-20065", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-20065"], "vendors": ["CISCO IOS XE"], "researchers": ["Mickael Dorigny", "Benoit Malaboeuf"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-45186", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-45186"], "vendors": ["SuiteCRM"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-45185", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-45185"], "vendors": ["SuiteCRM"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-41573", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41573"], "vendors": ["Ovidentia 8.3"], "researchers": ["Nidal Guedouar"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-41572", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41572"], "vendors": ["Eyesofnetwork"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-41571", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41571"], "vendors": ["Eyesofnetwork"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-41570", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-41570"], "vendors": ["Eyesofnetwork"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-35914", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-35914"], "vendors": ["GLPI"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-34346", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-34346"], "vendors": ["PMB"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-34328", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-34328"], "vendors": ["PMB"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2021-46107", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-46107"], "vendors": ["Ligeo Archives"], "researchers": ["Guilhem Rioux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2021-44032", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44032"], "vendors": ["TP-Link Omada SDN Controler V4.4.4"], "researchers": ["Kevin Lehongre"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2021-42056", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-42056"], "vendors": ["Safenet Authentication Client"], "researchers": ["Wilfried Pascault"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2021-36355", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-36355"], "vendors": ["evolucaire imaging"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-25287", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-25287"], "vendors": ["Pligg 2.0.3"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-17454", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17454"], "vendors": ["WSO2 API Manager: 3.1.0 or earlier"], "researchers": ["Zakaria Brahimi"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-14950", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14950"], "vendors": ["aapanel 6.6.6"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-14462", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14462"], "vendors": ["Caldera 2.7.0"], "researchers": ["Aurélien Chalot"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-14421", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14421"], "vendors": ["aapanel 6.6.6"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-14295", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14295"], "vendors": ["cacti"], "researchers": ["Cyril Servieres"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-14146", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14146"], "vendors": ["KumbiaPHP 1.1.1"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-11712", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-11712"], "vendors": ["Openupload 0.4.3"], "researchers": ["Mike Houziaux"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-10787", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10787"], "vendors": ["VestaCP 0.9.8-26"], "researchers": ["Alexandre Zanni"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-10786", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10786"], "vendors": ["VestaCP 0.9.8-26"], "researchers": ["Alexandre Zanni"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-10220", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10220"], "vendors": ["rConfig"], "researchers": ["Jean-Pascal Thomas"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-8776", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-8776"], "vendors": ["Alfresco 5.2.4"], "researchers": ["Alexandre Zanni", "Romain Loisel"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2020-1949", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1949"], "vendors": ["Sling CMS App 0.14.0 and previous releases"], "researchers": ["Guillaume GRABÉ"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2019-19585", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19585"], "vendors": ["rConfig"], "researchers": ["Jean-Pascal Thomas"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2019-19509", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19509"], "vendors": ["rConfig"], "researchers": ["Jean-Pascal Thomas"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2019-15253", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15253"], "vendors": ["Cisco DNAC 1.3"], "researchers": ["Dylan Garnaud", "Benoit Malaboeuf"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2019-13029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-13029"], "vendors": ["REDCap 8.10/9.1"], "researchers": ["Alexandre Zanni", "Dylan Garnaud"]}, {"url": "https://github.com/Orange-Cyberdefense/CVE-repository#cve-2022-38346", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-38346"], "vendors": [], "researchers": []}]}, {"lab": "Patchstack", "url": "https://patchstack.com/database/", "A": 20, "Q": 20, "V": 4, "R": 17, "researchers": [{"name": "WordFence", "count": 3}, {"name": "Supakiad S. - E-CQURITY", "count": 2}, {"name": "Gibran Abdillah", "count": 1}, {"name": "hoshino", "count": 1}, {"name": "momopon1415", "count": 1}, {"name": "Hung Nguyen - Vn", "count": 1}, {"name": "Legion Hunter", "count": 1}, {"name": "san6051 - Pwc", "count": 1}, {"name": "Poli - Cmc Global", "count": 1}, {"name": "theviper17y", "count": 1}, {"name": "Nabil Irawan - Heroes Cyber Security", "count": 1}, {"name": "Quốc Huy - Puramu", "count": 1}, {"name": "Itthidej Aramsri", "count": 1}, {"name": "Muhammad Yudha - Dj", "count": 1}, {"name": "Michael Iden - Hack The Box", "count": 1}, {"name": "Ahmed Makawi", "count": 1}, {"name": "0xd4rk5id3", "count": 1}], "vendors": [{"name": "WPExperts", "count": 2}, {"name": "David Artiss", "count": 2}, {"name": "VeronaLabs", "count": 1}, {"name": "BdThemes", "count": 1}], "advisories": [{"url": "https://patchstack.com/database/wordpress/plugin/kivicare-clinic-management-system/vulnerability/wordpress-kivicare-clinic-patient-management-system-ehr-plugin-4-1-2-unauthenticated-authentication-bypass-via-social-login-token-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-2991"], "vendors": [], "researchers": ["Gibran Abdillah"]}, {"url": "https://patchstack.com/database/wordpress/plugin/kivicare-clinic-management-system/vulnerability/wordpress-kivicare-plugin-4-1-2-missing-authorization-to-unauthenticated-privilege-escalation-via-setup-wizard-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-2992"], "vendors": [], "researchers": ["WordFence"]}, {"url": "https://patchstack.com/database/wordpress/plugin/post-smtp/vulnerability/wordpress-post-smtp-plugin-3-8-0-unauthenticated-stored-cross-site-scripting-via-event-type-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-3090"], "vendors": ["WPExperts"], "researchers": ["hoshino"]}, {"url": "https://patchstack.com/database/wordpress/plugin/wp-slimstat/vulnerability/wordpress-slimstat-analytics-plugin-5-3-5-unauthenticated-stored-cross-site-scripting-via-fh-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-1238"], "vendors": ["VeronaLabs"], "researchers": ["Supakiad S. - E-CQURITY"]}, {"url": "https://patchstack.com/database/wordpress/plugin/restrict-content/vulnerability/wordpress-membership-plugin-restrict-content-plugin-3-2-24-unvalidated-redirect-in-password-reset-flow-via-rcp-redirect-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-4136"], "vendors": [], "researchers": ["Supakiad S. - E-CQURITY"]}, {"url": "https://patchstack.com/database/wordpress/plugin/simply-schedule-appointments/vulnerability/wordpress-appointment-booking-calendar-plugin-1-6-10-0-unauthenticated-sql-injection-via-fields-parameter-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-3658"], "vendors": [], "researchers": ["momopon1415"]}, {"url": "https://patchstack.com/database/wordpress/plugin/aimogen-pro/vulnerability/wordpress-aimogen-pro-plugin-2-7-5-unauthenticated-privilege-escalation-via-arbitrary-function-call-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-4038"], "vendors": [], "researchers": ["Hung Nguyen - Vn"]}, {"url": "https://patchstack.com/database/wordpress/plugin/wc-carta-docente/vulnerability/wordpress-ilghera-carta-docente-for-woocommerce-plugin-1-5-0-authenticated-administrator-path-traversal-to-arbitrary-file-deletion-via-cert-parameter-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-2421"], "vendors": [], "researchers": ["Legion Hunter"]}, {"url": "https://patchstack.com/database/wordpress/plugin/cm-custom-reports/vulnerability/wordpress-cm-custom-reports-plugin-1-2-7-authenticated-administrator-stored-cross-site-scripting-via-plugin-labels-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-2432"], "vendors": [], "researchers": ["san6051 - Pwc"]}, {"url": "https://patchstack.com/database/wordpress/plugin/ft-rockpress/vulnerability/wordpress-rockpress-plugin-1-0-17-missing-authorization-to-authenticated-subscriber-arbitrary-modification-via-ajax-actions-vulnerability", "date": "2026-03-20", "cves": ["CVE-2026-3550"], "vendors": [], "researchers": ["Poli - Cmc Global"]}, {"url": "https://patchstack.com/database/wordpress/plugin/instant-popup-builder/vulnerability/wordpress-instant-popup-builder-plugin-1-1-7-unauthenticated-arbitrary-shortcode-execution-via-token-parameter-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-3475"], "vendors": [], "researchers": ["theviper17y"]}, {"url": "https://patchstack.com/database/wordpress/plugin/add-custom-fields-to-media/vulnerability/wordpress-add-custom-fields-to-media-plugin-2-0-3-cross-site-request-forgery-to-custom-field-deletion-via-delete-parameter-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-4068"], "vendors": [], "researchers": ["Nabil Irawan - Heroes Cyber Security"]}, {"url": "https://patchstack.com/database/wordpress/plugin/simple-draft-list/vulnerability/wordpress-draft-list-plugin-2-6-2-authenticated-contributor-stored-cross-site-scripting-via-display-name-parameter-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-4006"], "vendors": ["David Artiss"], "researchers": ["WordFence"]}, {"url": "https://patchstack.com/database/wordpress/plugin/download-manager/vulnerability/wordpress-download-manager-plugin-3-3-49-missing-authorization-to-authenticated-subscriber-user-email-enumeration-via-user-parameter-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-2571"], "vendors": [], "researchers": ["Quốc Huy - Puramu"]}, {"url": "https://patchstack.com/database/wordpress/plugin/info-cards/vulnerability/wordpress-info-cards-plugin-2-0-7-authenticated-contributor-stored-cross-site-scripting-via-block-attributes-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-4120"], "vendors": [], "researchers": ["Itthidej Aramsri"]}, {"url": "https://patchstack.com/database/wordpress/plugin/nextgen-gallery/vulnerability/wordpress-photo-gallery-sliders-proofing-and-themes-nextgen-gallery-plugin-4-0-4-authenticated-author-local-file-inclusion-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-1463"], "vendors": [], "researchers": ["WordFence"]}, {"url": "https://patchstack.com/database/wordpress/plugin/simple-embed-code/vulnerability/wordpress-code-embed-plugin-2-5-1-authenticated-contributor-stored-cross-site-scripting-via-custom-fields-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-2512"], "vendors": ["David Artiss"], "researchers": ["Muhammad Yudha - Dj"]}, {"url": "https://patchstack.com/database/wordpress/plugin/post-smtp/vulnerability/wordpress-post-smtp-plugin-3-8-0-missing-authorization-to-authenticated-subscriber-office-365-oauth-configuration-overwrite-vulnerability", "date": "2026-03-19", "cves": ["CVE-2026-2559"], "vendors": ["WPExperts"], "researchers": ["Michael Iden - Hack The Box"]}, {"url": "https://patchstack.com/database/wordpress/plugin/json-content-importer/vulnerability/wordpress-get-use-apis-plugin-2-0-10-contributor-stored-xss-vulnerability", "date": "2026-03-19", "cves": ["CVE-2025-15363"], "vendors": [], "researchers": ["Ahmed Makawi"]}, {"url": "https://patchstack.com/database/wordpress/plugin/ultimate-post-kit/vulnerability/wordpress-ultimate-post-kit-plugin-4-0-21-broken-access-control-vulnerability", "date": "2026-03-18", "cves": ["CVE-2026-24362"], "vendors": ["BdThemes"], "researchers": ["0xd4rk5id3"]}]}, {"lab": "Portcullis Labs", "url": "https://labs.portcullis.co.uk/advisories/", "A": 20, "Q": 25, "V": 20, "R": 0, "researchers": [], "vendors": [{"name": "YouPHPTube /objects/video.php getVideo search", "count": 1}, {"name": "YouPHPTube /objects/video.php getVideo videoName", "count": 1}, {"name": "X11 Mesa 3D", "count": 1}, {"name": "YouPHPTube /objects/commentAddNew.json.php comments_id", "count": 1}, {"name": "YouPHPTube /objects/subscribeNotify.json.php user_id", "count": 1}, {"name": "YouPHPTube /objects/pluginSwitch.json.php Multiple", "count": 1}, {"name": "YouPHPTube /objects/subscribe.json.php", "count": 1}, {"name": "YouPHPTube /objects/videoAddNew.json.php", "count": 1}, {"name": "YouPHPTube /plugin/AD_Server/view/campaignsVideos.json.php id", "count": 1}, {"name": "YouPHPTube Encoder base64Url", "count": 1}, {"name": "Epignosis eFront LMS PHP Deserialization", "count": 1}, {"name": "Epignosis eFront LMS Unauthenticated", "count": 1}, {"name": "CVE-2018-3882, CVE-2018-3883, CVE-2018-3884, ERPNext", "count": 1}, {"name": "FocalScope XML External", "count": 1}, {"name": "IBM AIX rmsock", "count": 1}, {"name": "SAP BPC Web Application Information", "count": 1}, {"name": "IBM", "count": 1}, {"name": "Open Fire User", "count": 1}, {"name": "Information Builders WebFOCUS", "count": 1}, {"name": "ProcessMaker Enterprise Core", "count": 1}], "advisories": [{"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0940", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5150"], "vendors": ["YouPHPTube /objects/video.php getVideo search"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0941", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5151"], "vendors": ["YouPHPTube /objects/video.php getVideo videoName"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0857", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5068"], "vendors": ["X11 Mesa 3D"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0906", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5114"], "vendors": ["YouPHPTube /objects/commentAddNew.json.php comments_id"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0909", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5119"], "vendors": ["YouPHPTube /objects/subscribeNotify.json.php user_id"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0911", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5121", "CVE-2019-5123"], "vendors": ["YouPHPTube /objects/pluginSwitch.json.php Multiple"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0908", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5117"], "vendors": ["YouPHPTube /objects/subscribe.json.php"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0907", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5116"], "vendors": ["YouPHPTube /objects/videoAddNew.json.php"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0910", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5120"], "vendors": ["YouPHPTube /plugin/AD_Server/view/campaignsVideos.json.php id"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0917", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5127", "CVE-2019-5129"], "vendors": ["YouPHPTube Encoder base64Url"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0858", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5069"], "vendors": ["Epignosis eFront LMS PHP Deserialization"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2019-0859", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-5070"], "vendors": ["Epignosis eFront LMS Unauthenticated"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2018-0560", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-3882", "CVE-2018-3883", "CVE-2018-3884", "CVE-2018-3885"], "vendors": ["CVE-2018-3882, CVE-2018-3883, CVE-2018-3884, ERPNext"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2018-0559", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-3881"], "vendors": ["FocalScope XML External"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2018-0624", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-1655"], "vendors": ["IBM AIX rmsock"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/SAP", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16349"], "vendors": ["SAP BPC Web Application Information"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2018-0558", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-1105"], "vendors": ["IBM"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0316", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-2815"], "vendors": ["Open Fire User"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0315", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-9044"], "vendors": ["Information Builders WebFOCUS"], "researchers": []}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2017-0314", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-9045"], "vendors": ["ProcessMaker Enterprise Core"], "researchers": []}]}, {"lab": "Google Project Zero", "url": "https://bugs.chromium.org/p/project-zero/issues", "A": 0, "Q": 0, "V": 0, "R": 0, "researchers": [], "vendors": [], "advisories": []}, {"lab": "Positive Technologies", "url": "https://ptsecurity.com/ww-en/analytics/threatscape/", "A": 1127, "Q": 532, "V": 0, "R": 0, "researchers": [], "vendors": [], "advisories": [{"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2021-q2/", "date": "2021-02-01", "cves": ["CVE-2020-2509", "CVE-2020-36195", "CVE-2021-28799", "CVE-2020-3580", "CVE-2020-5902", "CVE-2021-24370", "CVE-2018-0798"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2018-q3/", "date": "2018-08-30", "cves": ["CVE-2017-11882", "CVE-2018-10562", "CVE-2018-17144"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-26/", "date": "2017-04-27", "cves": ["CVE-2018-8714"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-52/", "date": "2012-10-13", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-58163", "CVE-2025-43917", "CVE-2025-46351"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2019-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-0708", "CVE-2019-11043", "CVE-2018-0296"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2020-q1/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-0601", "CVE-2019-19781", "CVE-2018-0798"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2020-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19781", "CVE-2019-2725", "CVE-2019-11510", "CVE-2020-5902", "CVE-2020-2021", "CVE-2020-10173"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2020-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14882", "CVE-2020-1472", "CVE-2019-19781", "CVE-2018-1337"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2021/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-40444", "CVE-2021-44228", "CVE-2021-27101", "CVE-2021-27103", "CVE-2021-27104", "CVE-2021-27102", "CVE-2021-26855", "CVE-2021-26857", "CVE-2021-26858", "CVE-2021-27065", "CVE-2021-28799", "CVE-2021-34527", "CVE-2021-34473", "CVE-2021-34523", "CVE-2021-31207", "CVE-2021-21972"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2021-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41653", "CVE-2021-44228", "CVE-2021-44077", "CVE-2021-40539", "CVE-2018-0802"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2022-q1/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-40444"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/asia-cybersecurity-threatscape-2022-2023/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/middle-east-cybersecurity-threatscape-2022-2023/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2023-q1/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-23397", "CVE-2023-0669", "CVE-2021-21974", "CVE-2022-41080", "CVE-2022-41082"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-q1-2019/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-0802", "CVE-2014-3120", "CVE-2019-6340", "CVE-2019-5736"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/ics-vulnerabilities-2019/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/vulnerabilities-corporate-networks-2020/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-15473", "CVE-2016-2183", "CVE-2014-3566", "CVE-2016-0800", "CVE-2014-0160", "CVE-2017-12617", "CVE-2015-1635", "CVE-2016-6515", "CVE-2016-10010", "CVE-2013-2566"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2022-q2/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2019-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-0708", "CVE-2019-1181", "CVE-2019-1182", "CVE-2019-16759", "CVE-2018-0802", "CVE-2019-5840"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/vulnerabilities2018-2021/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/corporate-vulnerabilities-2019/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0143", "CVE-1999-0024", "CVE-2016-5195"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/problems-in-vulnerability-management-and-how-to-solve-them/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-0646", "CVE-2021-40444", "CVE-2021-34527", "CVE-2020-17087", "CVE-2021-41379", "CVE-2019-0708", "CVE-2021-1675", "CVE-2019-0541", "CVE-2022-22026", "CVE-2022-35744", "CVE-2021-44228", "CVE-2021-34473", "CVE-2021-34523", "CVE-2021-31207"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2022-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3180", "CVE-2021-24284", "CVE-2022-24086"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/web-application-vulnerabilities-statistics-2017-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-9798", "CVE-2017-5638"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/web-application-vulnerabilities-statistics-2017-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-9798"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2022/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44228", "CVE-2022-22965", "CVE-2022-24086", "CVE-2021-32648", "CVE-2022-3180"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2017-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11882"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/financial-application-vulnerabilities-2018/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2020-q2/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11510", "CVE-2018-0798", "CVE-2020-11651", "CVE-2020-11652", "CVE-2019-19781", "CVE-2019-18935", "CVE-2019-0604", "CVE-2020-0688", "CVE-2020-3187", "CVE-2020-3259", "CVE-2020-5902"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2020/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19781", "CVE-2019-11510", "CVE-2017-11882", "CVE-2020-11651", "CVE-2020-11652", "CVE-2020-14882", "CVE-2019-0708"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2019/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19781", "CVE-2019-11043", "CVE-2019-0708", "CVE-2019-1181", "CVE-2019-1182", "CVE-2019-11510", "CVE-2018-13379"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/web-application-vulnerabilities-statistics-2019/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2024-q1/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-46805", "CVE-2024-21887", "CVE-2024-1709", "CVE-2024-1708", "CVE-2023-48022", "CVE-2023-48788", "CVE-2024-21893", "CVE-2024-27198"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2018-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-2545", "CVE-2017-11882", "CVE-2018-15982"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/africa-cybersecurity-threatscape-2022-2023/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-21974"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2023-q4/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11882", "CVE-2023-34362", "CVE-2023-47246", "CVE-2023-6448", "CVE-2023-4966", "CVE-2023-20198", "CVE-2023-20273", "CVE-2023-22518", "CVE-2023-46604"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/latam-cybersecurity-threatscape-2022-2023/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/vulnerability-disclosure-and-researcher-vendor-interaction-experience-in-2022-2023/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/atm-vulnerabilities-2018/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-8464", "CVE-2018-1038", "CVE-2018-13014", "CVE-2018-13013", "CVE-2018-13012"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/vulnerability-management-instructions-for-use/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44228", "CVE-2020-1350", "CVE-2020-1472", "CVE-2019-0708", "CVE-2021-31166", "CVE-2020-1938", "CVE-2019-19521", "CVE-2019-0541", "CVE-2020-16898", "CVE-2021-34527", "CVE-2021-1675", "CVE-2017-0143", "CVE-2017-0144", "CVE-2017-0145", "CVE-2017-0146", "CVE-2017-0148", "CVE-2020-0601", "CVE-2021-26855", "CVE-2021-27065", "CVE-2021-1732", "CVE-2020-17087", "CVE-2021-26857", "CVE-2021-26858", "CVE-2017-6868", "CVE-2021-20090"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/web-vulnerabilities-2020-2021/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2017/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-5638"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2018-q2/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/mobile-application-security-threats-and-vulnerabilities-2019/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-5195"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/web-application-vulnerabilities-2018/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-3192", "CVE-2017-15277"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/web-vulnerabilities-2020/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2021-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-34473", "CVE-2021-34523", "CVE-2021-31207", "CVE-2021-40444"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/corporate-vulnerabilities-2018/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-1999-0532", "CVE-2016-6515", "CVE-2016-10010", "CVE-2013-3906", "CVE-2014-1761", "CVE-2017-0199", "CVE-2016-0189"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2017-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-0189", "CVE-2014-6332", "CVE-2015-8651", "CVE-2015-7645", "CVE-2017-7269", "CVE-2017-5638", "CVE-2016-10176"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2018/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2021-q1/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-1427", "CVE-2020-28188", "CVE-2021-3007", "CVE-2020-7961", "CVE-2021-21972", "CVE-2019-5544", "CVE-2020-3992", "CVE-2021-26855"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2023-q2/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0669", "CVE-2023-34362", "CVE-2022-24682", "CVE-2023-27350", "CVE-2023-27351", "CVE-2023-2868", "CVE-2018-9995", "CVE-2016-20016"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2023-q3/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-24489", "CVE-2023-3519", "CVE-2023-28121", "CVE-2023-42793"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/the-consequences-of-delays-in-remediating-vulnerabilities-2022-2023/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-29357"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/vulnerabilities-rbo-2019/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/vulnerabilities-mobile-banks-2020/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2018-q1/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-0144", "CVE-2017-0176", "CVE-2017-11882", "CVE-2018-0802"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2019-q2/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11882", "CVE-2019-0708", "CVE-2019-0604", "CVE-2019-2725", "CVE-2019-10149", "CVE-2019-3396"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/trending-vulnerability-digest-october-2025/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-20362", "CVE-2025-20333", "CVE-2025-32463"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/trending-vulnerability-digest-march-2026/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21519", "CVE-2026-21533", "CVE-2026-21510", "CVE-2026-21514"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-iran-h2-2024-h1-2025/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/retail-cybersecurity-threatscape-2023/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28121", "CVE-2023-34362"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/trending-vulnerability-digest-february-2026/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20805", "CVE-2026-21509"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/trending-vulnerability-digest-january-2026/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-62221", "CVE-2025-55182", "CVE-2025-14847"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/cybersecurity-threatscape-2022-q4/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/analytics/industrial-cybersecurity-threatscape-2022/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/pt-esc-threat-intelligence/sustes-rasprostranyaetsya-cherez-CVE-2019-10149/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-10149"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/pt-esc-threat-intelligence/falshivyj-attach-ataki-na-pochtovye-servery-roundcube-s-ispolzovaniem-uyazvimosti-cve-2024-37383/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-37383"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/webinar/new-features-of-pt-isim-5-antivirus-vulnerability-management-and-work-with-isolated-objects/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/webinar/doing-less-is-protecting-more-how-the-evolution-of-vulnerability-management-is-changing-the-rules-of-the-game/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-17/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-33997"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-18/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-33998"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-1220"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-8209"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-09/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-39360", "CVE-2023-49086"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49084"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-49085"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-41793", "CVE-2023-44090"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-44090", "CVE-2023-41793"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-15/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-44092", "CVE-2023-44091"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-16/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-44091", "CVE-2023-44092"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-20/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-35306", "CVE-2024-35305"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-21/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-35305", "CVE-2024-35306"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-22/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-28059"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-23/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-31215"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-24/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-7400"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2024-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2024-28/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-27/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-0253"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-97/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-96/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-95/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-94/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-92/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-76/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-93/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-91/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-90/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-89/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-88/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-87/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-86/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-25/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19411"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-85/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-84/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5467"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-83/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-82/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-81/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-80/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-79/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-78/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-77/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-76/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-75/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-15/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-14/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-09/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-10/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-13/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-12/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-11/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-74/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56733"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-73/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-72/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-52796"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-71/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-70/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55626"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-69/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56410"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-68/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56411"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-67/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56412"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-66/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56409"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-65/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56366"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-64/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56408"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-63/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56365"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-46/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-61/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-60/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-59/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-58/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-48353"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-57/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-48352"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-45/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-50337"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-56/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-56364"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-55/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55878"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-53/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-36825"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-54/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-55647"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-13/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-12/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-29220"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23699"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-26500"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-26503"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-37398"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2022-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-26501"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-43/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-52004"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-42/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-39/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-38/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-36/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-51992"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-37/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-43629"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-35/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22918"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22917"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22916"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22915"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22914"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22913"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-34/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-32/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-31/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-29/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-26/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-25/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-62/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2023-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-22357"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-44/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2024-30/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2022-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26060"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2022-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26061"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2022-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26059"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-49/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2022-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26057"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2022-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-26058"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-15/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25162"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25161"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-48/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25160"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25159"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25158"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25157"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25156"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-39/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16685"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-38/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7246"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-53/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-7903"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-25155"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-37/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7245"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9099"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2021-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-9100"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-36/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7244"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-31/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-27716"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-30/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-3470"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-29/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-5135"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17767"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-35/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7243"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-34/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20298"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-33/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5717"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-22/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14718"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17765"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-23/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14719"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-16/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17769"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-32/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-17668"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-31/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-0218"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-30/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-0207"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-29/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-6769"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-28/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-0147"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-21/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14713"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17771"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-26/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14717"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-17/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17770"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17768"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-19/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17773"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-24/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14712"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-20/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14711"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17774"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2019-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2019-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2019-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-91/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2350"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-0682"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-0681"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-28/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14715"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-18/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17772"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-27/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-14716"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-15/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17766"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-47/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7802"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-46/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7801"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-45/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7800"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-44/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-2366"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-43/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-2401"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14622"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-14622"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-5366"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-5902"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-42/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-41/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16678"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-5903"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-3259"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-3187"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2020-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-19781"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2019-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-18683"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2019-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-24/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19410"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-23/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19204"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-22/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19203"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-21/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7762"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-20/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7761"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-19/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7760"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-18/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7759"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-17/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7242"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-16/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7241"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-15/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7240"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10731"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10730"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10729"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10728"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-8939"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-8938"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5778"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5777"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5469"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-4838"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-4839"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-4840"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16743"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2018-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16741"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-56/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-55/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-15377"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-54/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-3223"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-52/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-7899"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-51/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-50/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-49/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-48/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-47/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-46/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-45/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-44/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-43/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-42/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-39/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-38/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-37/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-36/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-35/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-34/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-32/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-31/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-30/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-29/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-28/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-26/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-25/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-22/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-21/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-20/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-19/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-18/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-17/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-15/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-14/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-0263"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-5705", "CVE-2017-5706", "CVE-2017-5707"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-11/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5461"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5471"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5465"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-2636"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-6968"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-9338"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2017-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-9334"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-61/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-60/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-59/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-58/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-57/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-56/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-55/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-54/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-53/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-52/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-51/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-50/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-49/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-48/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-47/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-46/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-45/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-44/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-43/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-42/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-41/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-9360"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-39/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-8371"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-38/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-5685", "CVE-2017-5686"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-37/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-5684"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-36/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-8009"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-35/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-8348"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-34/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-8566"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-33/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-8567"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-32/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7460"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-31/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7459"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-30/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7458"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-29/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-5849"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-28/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-5848"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-26/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-25/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-22/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-21/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-20/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-19/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-18/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-17/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-15/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7960"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7959"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-5331"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-4527"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-4524"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-4516"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-4511"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-3943"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-6467"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-3946"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-3947"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-3948"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2016-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-0854"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-18/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-17/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-6486"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-16/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-6488"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-15/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-1009"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-2823"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-4686"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-1356"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-1358"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-1355"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2015-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-93/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-92/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-91/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-90/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-89/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-88/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-87/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-86/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-85/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-84/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-83/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-82/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-81/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-80/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-79/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-78/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-77/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-76/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-75/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-74/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-73/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-72/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-71/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-70/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-69/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-68/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-67/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-66/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-65/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-64/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-7251"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-63/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-62/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-61/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-60/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-59/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-58/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-57/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-56/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-55/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-54/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-53/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-52/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-51/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-50/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-47/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-46/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-45/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-44/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-43/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-42/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-39/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-38/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-37/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-36/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-35/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-34/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-32/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-31/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-30/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-29/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-28/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-26/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-0653"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-25/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-7876"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-22/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-21/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-5399"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-20/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-5398"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-19/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-5397"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-18/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2381"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-17/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2380"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-16/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-4686"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-15/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-4685"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-4684"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-4683"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-4682"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-11/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-10/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-09/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2014-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-90/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2349"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-89/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-88/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2252"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-87/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2250"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-86/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2253"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-85/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2248"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-84/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2251"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-83/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2247"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-82/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2246"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-81/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-2249"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-80/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-1699"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-79/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-1698"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-78/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-1697"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-77/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-1696"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-75/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-74/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-73/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3160"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-72/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3159"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-71/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-70/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-69/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-68/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-67/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-66/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-65/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-64/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-63/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-62/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3586"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-61/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3585"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-59/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-58/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-57/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-56/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-55/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-54/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-53/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-52/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-51/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-4912"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-50/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-4911"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-49/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-0414"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-48/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-0413"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-47/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2014-0426"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-46/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-45/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-44/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3959"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-43/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3958"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-42/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3957"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-40/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0685"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-39/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0686"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-38/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0684"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-37/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0688"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-36/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-4710"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-35/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0668"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-34/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0667"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-33/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0670"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-32/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0671"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-31/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0672"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-30/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0669"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-29/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0677"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-28/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0674"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-27/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0679"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-26/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0676"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-25/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0678"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-22/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-21/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-5771"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-18/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-17/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-15/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-1643"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-13/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-1635"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3841"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-5761"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-3840"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-5867"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-19/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2013-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-61/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-6025"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-60/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-59/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-58/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-57/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-56/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-55/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-54/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-53/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-50/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-49/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-1510"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-48/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3037"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-47/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-4903"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-46/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-4904"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-45/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3034"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-44/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3032"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-43/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3030"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-42/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3031", "CVE-2012-3028"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-38/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0382"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-37/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0381"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-36/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2013-0380"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-35/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-34/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-32/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-31/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-30/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-29/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-28/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-26/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-22/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-21/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-0429"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-20/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-0430"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-19/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-0428"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-18/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-17/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-15/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3309", "CVE-2012-3312"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-14/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3365"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-13/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-12/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3003"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-08/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-2596"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-10/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-2598"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-2595"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-2597"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-06/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-4963"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-2965", "CVE-2012-2966", "CVE-2012-2967", "CVE-2012-2968", "CVE-2012-2969"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3910"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3909"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-02/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3908"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2012-01/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2012-3907"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-48/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-47/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-46/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-45/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-44/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-43/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-39/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-38/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-37/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-36/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-35/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-34/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-32/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-31/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-30/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-4723"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-29/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-27/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-3317"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-26/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-3293"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-25/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-24/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-4637"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-21/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-20/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-19/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-18/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-4636"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-14/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-22/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-2137"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-13/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-12/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-11/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-10/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-09/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2011-2545"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2011-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-11/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-09/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-05/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2010-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-44/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-43/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-42/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-41/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-40/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-39/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-38/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-37/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-36/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-32/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-35/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-34/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-29/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-28/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-30/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-31/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-26/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-25/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-19/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-23/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-13/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-0825"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-12/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-22/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-15/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-14/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-21/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-20/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-18/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-17/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-11/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-0824"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-0686"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-07/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-04/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2009-02/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2008-09/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-1922"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2008-08/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2008-07/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-1146"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2008-06/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/pt-2008-05/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2009-1147"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-25/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-26/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-27/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-24/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-28/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-19/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-56547"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-17/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-56548"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-04/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-24804"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-03/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-24805"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-21/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-01/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-20/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-34/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-4404"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-30/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-53141"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-32/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-5349"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-43/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48389"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-31/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49689"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-36/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-35/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-43711"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-33/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-41/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-55297"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-42/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48388"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-44/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48390"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-45/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48471"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-47/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48473"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-48/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48474"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-49/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48475"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-55/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48481"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-51/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48477"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-46/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48472"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-56/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48482"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-50/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48476"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-52/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48478"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-63/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48489"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-53/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48479"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-54/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48480"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-62/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48488"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-60/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48486"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-57/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48483"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-61/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48487"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-58/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48484"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-59/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48485"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-64/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48875"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-65/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-48880"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-16/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-66/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-72/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3714"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-67/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-68/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3710"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-73/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-49686"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-69/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3711"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-70/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3712"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-71/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-3713"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-74/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-5687"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-81/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-90/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-56528"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-39/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-91/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-46351"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-92/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-93/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-84/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-94/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-43917"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-95/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-82/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-85/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-86/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-83/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-87/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-97/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-88/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-89/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-98/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-101/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-118/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-102/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-103/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-96/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-58163"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-99/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-108/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-100/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-133/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-134/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-105/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-132/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-104/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-54366"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-135/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-136/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-110/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-107/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-109/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-111/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-106/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-113/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-114/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-115/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-116/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-117/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-138/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-139/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2025-112/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/threatscape/PT-2026-03/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2021-22205/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2021-22986/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2021-26084/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2021-33690/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2022-0543/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2022-24086/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2022-27228/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2022-3405/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2022-38028/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-0386/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-1717/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-1719/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-1829/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-20159/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-20198/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-20273/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-2033/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-32315/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-2136/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-21706/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-21707/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-21822/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-21839/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-22515/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-22518/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-22527/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-22952/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-20887/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-23410/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-24489/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-24932/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-24955/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-26369/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-27350/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-27532/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-27997/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-28121/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-28229/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-28231/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-28310/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-2868/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-29199/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-29324/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-29325/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-29336/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-34362/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-29357/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-29360/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-30198/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-30547/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-32031/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-32046/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-32049/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-32243/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-3460/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35078/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35081/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35311/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35628/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35632/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35636/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-35788/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36011/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36025/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36033/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36036/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36424/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36563/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36584/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36761/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36844/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36845/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-40477/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36846/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36847/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36874/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-37580/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-38035/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-38831/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-40309/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-42115/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-42789/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-42793/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-44487/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-45249/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-4596/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-46604/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-46805/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-4863/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-48788/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-49103/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-49105/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-4911/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-50164/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-5129/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-5217/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-7028/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-0012/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-28000/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-1086/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-11667/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-11972/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21338/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21351/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21378/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21410/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21412/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21413/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21591/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21683/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21762/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21887/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-21893/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-23897/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-24919/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-26169/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-26229/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-26234/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-27198/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-29510/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-29849/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-29988/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-30040/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-30051/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-30088/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-31982/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-3400/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-37383/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38014/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38077/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38106/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38107/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38112/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38193/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38213/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-37079/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-37080/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38217/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-40711/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-4323/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-43461/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-4577/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-47575/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-48990/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-43573/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38812/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-49138/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-53677/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-8275/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-9474/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-0108/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-55591/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-1974/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-0411/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-49039/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-49040/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-22224/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-22225/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-22226/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24813/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21333/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21334/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21335/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21418/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24985/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-32433/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21391/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24993/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-26633/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-29824/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-27443/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-11182/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38475/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/BDU-2025-01331/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2021-34523/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-30085/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-43468/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-49112/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-30400/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-35250/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-38144/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-43451/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21204/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-21298/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24054/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24071/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24983/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-32706/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-33053/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/BDU-2025-01793/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-49113/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-48799/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2022-24521/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-36884/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-32701/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-33073/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-53770/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2024-30090/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-34048/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2023-20867/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-6218/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-8088/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/BDU-2025-10115/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/BDU-2025-10116/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-20333/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-55188/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/BDU-2025-10114/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-20362/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-27915/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-32463/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-49844/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-38001/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-59287/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-49704/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-9491/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24893/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-12735/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-48703/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-64459/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-31324/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-24990/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-59230/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-62215/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2026-21533/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-42999/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-55182/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-62221/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2025-14847/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2026-20805/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2026-21519/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2026-21510/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2026-21509/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/trend-vulnerabilities/CVE-2026-21514/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/research/knowledge-base/from-vulnerability-to-resilience/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/idc-vklyuchila-positive-technologies-v-reyting-mirovyh-liderov-security-vulnerability-management/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-helped-patch-vulnerabilities-in-xwiki-a-wiki-creation-platform/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-32429", "CVE-2025-32430"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/maxpatrol-vm-2-0-automated-control-of-compliance-with-standards-and-high-speed-delivery-of-data-on-trending-vulnerabilities-in-12-hours/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/k2-cloud-has-launched-a-public-vulnerability-search-program-on-standoff-bug-bounty/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/orion-soft-reported-results-vulnerability-search-program-standoff-bug-bounty/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/red-soft-has-launched-vulnerability-search-program-standoff-bug-bounty/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/a-pt-expert-helped-fix-a-vulnerability-in-the-usergate-ngfw-firewall/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/mozilla-patches-firefox-browser-vulnerability-discovered-by-pt/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6430"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-has-presented-the-september-digest-of-trending-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-6218", "CVE-2025-8088", "CVE-2025-55188", "CVE-2025-42999", "CVE-2025-31324"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-expert-helped-eliminate-vulnerability-in-windows-operating-systems/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-54916"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/the-developer-of-idrive-and-remotepc-services-fixed-the-vulnerabilities-found-by-pt/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-has-presented-the-october-digest-of-trending-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-20362", "CVE-2025-20333", "CVE-2025-32463"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-ai-5-2-advanced-code-analysis-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-expert-helped-eliminate-vulnerability-in-garmin-connect-fitness-app/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-44090", "CVE-2023-44091", "CVE-2023-49085"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-expert-helped-patch-vulnerabilities-broadcom-network-adapter-firmware/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-presented-the-march-digest-of-trending-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-21519", "CVE-2026-21533", "CVE-2026-21510", "CVE-2026-21514"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-expert-helped-fix-a-vulnerability-in-trend-micro-antivirus-software/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-59931", "CVE-2024-7400", "CVE-2024-6654"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/headhunter-will-pay-500-thousand-rubles-in-the-vulnerability-search-program-for-standoff-bug-bounty/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-isim-5-8-introduces-vulnerability-management-process-network/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-experts-helped-fix-22-vulnerabilities-in-freescout/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-experts-helped-patch-vulnerabilities-in-fastwel-controllers/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2024-0802", "CVE-2024-0803", "CVE-2024-1915", "CVE-2024-1916", "CVE-2024-1917", "CVE-2023-22357"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-has-released-its-february-digest-of-trending-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20805", "CVE-2026-21509"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/kontur-on-standoff-bug-bounty-the-company-will-pay-white-hat-hackers-up-to-a-million-rub-for-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/up-to-half-a-m-for-a-bug-bcs-bank-launches-a-pub-program-to-find-vulnerabilities-in-standoff-bug-bounty/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/1c-bitrix-has-launched-a-public-vulnerability-detection-program/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-blackbox-scanner-helps-developers-fix-vulnerabilities-in-web-applications-using-ai/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-has-introduced-a-next-generation-vulnerability-scanner/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-has-presented-the-december-digest-of-trending-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-62215", "CVE-2025-48703", "CVE-2025-12735", "CVE-2025-64459"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-expert-helped-fix-two-zero-day-vulnerabilities-in-the-windows-file-system/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/standoff-bug-bounty-year-end-results-32-of-finds-are-high-and-critical-level-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-helped-eliminate-a-vulnerability-in-windows-server-systems-that-threatened-enterprises/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-20931"], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/pt-experts-helped-fix-vulnerabilities-in-the-websoft-hcm-hr-platform/", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": [], "researchers": []}, {"url": "https://ptsecurity.com/ru-ru/about/news/positive-technologies-has-released-its-january-digest-of-trending-vulnerabilities/", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2025-62221", "CVE-2025-55182", "CVE-2025-14847"], "vendors": [], "researchers": []}]}, {"lab": "Qualys", "url": "https://www.qualys.com/research/security-advisories/", "A": 49, "Q": 70, "V": 0, "R": 1, "researchers": [{"name": "Daniel J. Bernstein:", "count": 1}], "vendors": [], "advisories": [{"url": "https://www.qualys.com/2025/05/29/apport-coredump/apport-coredump.txt", "date": "2025-05-28", "cves": ["CVE-2025-5054", "CVE-2025-4598"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2025/02/18/openssh-mitm-dos.txt", "date": "2025-02-17", "cves": ["CVE-2025-26465"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2025/02/18/openssh-mitm-dos.txt", "date": "2025-02-17", "cves": ["CVE-2025-26466"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2024/11/19/needrestart/needrestart.txt", "date": "2024-11-19", "cves": ["CVE-2024-48990", "CVE-2024-48991", "CVE-2024-48992", "CVE-2024-10224", "CVE-2024-11003"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2024/07/01/cve-2024-6387/regresshion.txt", "date": "2024-07-01", "cves": ["CVE-2024-6387"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2024/01/30/cve-2023-6246/syslog.txt", "date": "2024-01-30", "cves": ["CVE-2023-6246"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2023/10/03/cve-2023-4911/looney-tunables-local-privilege-escalation-glibc-ld-so.txt", "date": "2023-10-03", "cves": ["CVE-2023-4911"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2023/07/19/cve-2023-38408/rce-openssh-forwarded-ssh-agent.txt", "date": "2023-07-19", "cves": ["CVE-2023-38408"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2023/06/06/renderdoc/renderdoc.txt", "date": "2023-06-06", "cves": ["CVE-2023-33865", "CVE-2023-33864", "CVE-2023-33863"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2022/11/30/cve-2022-3328/advisory-snap.txt", "date": "2022-11-30", "cves": ["CVE-2022-3328"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2022/10/24/leeloo-multipath/leeloo-multipath.txt", "date": "2022-10-24", "cves": ["CVE-2022-41974", "CVE-2022-41973"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2022/02/17/cve-2021-44731/oh-snap-more-lemmings.txt", "date": "2022-02-17", "cves": ["CVE-2021-44731"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2022/01/25/cve-2021-4034/pwnkit.txt", "date": "2022-01-25", "cves": ["CVE-2021-4034"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2021/07/20/cve-2021-33910/denial-of-service-systemd.txt", "date": "2021-07-20", "cves": ["CVE-2021-33910"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2021/07/20/cve-2021-33909/sequoia-local-privilege-escalation-linux.txt", "date": "2021-07-20", "cves": ["CVE-2021-33909"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2021/01/26/cve-2021-3156/baron-samedit-heap-based-overflow-sudo.txt", "date": "2021-01-26", "cves": ["CVE-2021-3156"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2020/05/19/cve-2005-1513/remote-code-execution-qmail.txt", "date": "2020-05-19", "cves": ["CVE-2005-1513"], "vendors": [], "researchers": ["Daniel J. Bernstein:"]}, {"url": "https://www.qualys.com/2020/02/24/cve-2020-8793/local-information-disclosure-opensmtpd.txt", "date": "2020-02-24", "cves": ["CVE-2020-8793"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2020/02/24/cve-2020-8794/lpe-rce-opensmtpd-default-install.txt", "date": "2020-02-24", "cves": ["CVE-2020-8794"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2020/01/28/cve-2020-7247/lpe-rce-opensmtpd.txt", "date": "2020-01-28", "cves": ["CVE-2020-7247"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2019/12/11/cve-2019-19726/local-privilege-escalation-openbsd-dynamic-loader.txt", "date": "2019-12-11", "cves": ["CVE-2019-19726"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2019/12/04/cve-2019-19521/authentication-vulnerabilities-openbsd.txt", "date": "2019-12-04", "cves": ["CVE-2019-19521"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2019/06/05/cve-2019-10149/return-wizard-rce-exim.txt", "date": "2019-06-05", "cves": ["CVE-2019-10149"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2018/09/25/cve-2018-14634/mutagen-astronomy-integer-overflow-linux-create_elf_tables-cve-2018-14634.txt", "date": "2018-09-25", "cves": ["CVE-2018-14634"], "vendors": [], "researchers": []}, {"url": "http://seclists.org/oss-sec/2017/q4/394", "date": "2017-12-13", "cves": ["CVE-2017-17840"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2017/12/11/buffer-overflow-cve-2017-1000408-cve-2017-1000409/cve-2017-1000408-cve-2017-1000409.txt", "date": "2017-12-11", "cves": ["CVE-2017-10004"], "vendors": [], "researchers": []}, {"url": "https://ics-cert.us-cert.gov/advisories/ICSA-17-299-01", "date": "2017-10-26", "cves": ["CVE-2017-14021", "CVE-2017-14027"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2017/09/26/linux-pie-cve-2017-1000253/cve-2017-1000253.txt", "date": "2017-09-26", "cves": ["CVE-2017-10002"], "vendors": [], "researchers": []}, {"url": "https://threatprotect.qualys.com/2017/06/27/brickcom-devices-multiple-security-vulnerabilities/", "date": "2017-06-27", "cves": ["CVE-2017-9235", "CVE-2017-9236", "CVE-2017-9237", "CVE-2017-9238"], "vendors": [], "researchers": []}, {"url": "http://www.openwall.com/lists/oss-security/2017/06/08/3", "date": "2017-06-08", "cves": ["CVE-2017-9525"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2017/05/30/cve-2017-1000367/cve-2017-1000367.txt", "date": "2017-05-30", "cves": ["CVE-2017-10003"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2017/03/26/qsa-2017-03-26/qsa-2017-03-26.pdf", "date": "2017-03-26", "cves": ["CVE-2017-7851"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2017/03/12/qsa-2017-03-12/qsa-2017-03-12.pdf", "date": "2017-03-12", "cves": ["CVE-2017-7404", "CVE-2017-7405", "CVE-2017-7406"], "vendors": [], "researchers": []}, {"url": "https://www.kb.cert.org/vuls/id/355151", "date": "2017-03-07", "cves": ["CVE-2017-3184", "CVE-2017-3185", "CVE-2017-3186"], "vendors": [], "researchers": []}, {"url": "https://packetstormsecurity.com/files/140342/Netgear-DGN2200-DGND3700-WNDR4500-Information-Disclosure.html", "date": "2017-01-03", "cves": ["CVE-2016-5649", "CVE-2016-5638"], "vendors": [], "researchers": []}, {"url": "http://www.kb.cert.org/vuls/id/778696", "date": "2016-06-10", "cves": ["CVE-2015-8288", "CVE-2015-8289"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2016/01/14/cve-2016-0777-cve-2016-0778/openssh-cve-2016-0777-cve-2016-0778.txt", "date": "2016-01-14", "cves": ["CVE-2016-0777", "CVE-2016-0778"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2015/10/15/cve-2015-5333-cve-2015-5334/libressl-cve-2015-5333-cve-2015-5334.txt", "date": "2015-10-15", "cves": ["CVE-2015-5333", "CVE-2015-5334"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2015/10/02/opensmtpd-audit-report.txt", "date": "2015-10-02", "cves": ["CVE-2015-7687"], "vendors": [], "researchers": []}, {"url": "http://seclists.org/oss-sec/2015/q3/423", "date": "2015-08-24", "cves": ["CVE-2015-5224"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2015/07/23/cve-2015-3245-cve-2015-3246/cve-2015-3245-cve-2015-3246.txt", "date": "2015-07-23", "cves": ["CVE-2015-3245", "CVE-2015-3246"], "vendors": [], "researchers": []}, {"url": "https://www.qualys.com/2015/01/27/cve-2015-0235/GHOST-CVE-2015-0235.txt", "date": "2015-01-27", "cves": ["CVE-2015-0235"], "vendors": [], "researchers": []}, {"url": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-1849", "date": "2014-02-02", "cves": ["CVE-2014-1849"], "vendors": [], "researchers": []}, {"url": "https://community.qualys.com/docs/DOC-3511", "date": "2012-05-07", "cves": ["CVE-2012-0671"], "vendors": [], "researchers": []}, {"url": "https://community.qualys.com/docs/DOC-3512", "date": "2012-05-07", "cves": ["CVE-2011-2098"], "vendors": [], "researchers": []}, {"url": "https://community.qualys.com/docs/DOC-3513", "date": "2012-05-07", "cves": ["CVE-2012-2029"], "vendors": [], "researchers": []}, {"url": "https://community.qualys.com/docs/DOC-3514", "date": "2012-05-07", "cves": ["CVE-2012-2030"], "vendors": [], "researchers": []}, {"url": "https://community.qualys.com/docs/DOC-3515", "date": "2012-05-07", "cves": ["CVE-2012-2031"], "vendors": [], "researchers": []}, {"url": "https://community.qualys.com/docs/DOC-3501", "date": "2012-05-04", "cves": ["CVE-2011-4317"], "vendors": [], "researchers": []}]}, {"lab": "SafeBreach Labs", "url": "https://www.safebreach.com/blog/research/", "A": 57, "Q": 56, "V": 0, "R": 0, "researchers": [], "vendors": [], "advisories": [{"url": "https://www.safebreach.com/vulnerability/cve-2025-59199/", "date": "2026-01-26", "cves": ["CVE-2025-59199"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-59200/", "date": "2026-01-26", "cves": ["CVE-2025-59200"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-59502/", "date": "2026-01-26", "cves": ["CVE-2025-59502"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-49760/", "date": "2026-01-26", "cves": ["CVE-2025-49760"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-49716/", "date": "2026-01-26", "cves": ["CVE-2025-49716"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-49722/", "date": "2026-01-26", "cves": ["CVE-2025-49722"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-32724/", "date": "2026-01-26", "cves": ["CVE-2025-32724"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-29969/", "date": "2025-05-13", "cves": ["CVE-2025-29969"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2025-26673/", "date": "2025-04-08", "cves": ["CVE-2025-26673"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2024-10668/", "date": "2024-11-07", "cves": ["CVE-2024-10668"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2024-38202/", "date": "2024-08-07", "cves": ["CVE-2024-38202"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2024-21302/", "date": "2024-08-07", "cves": ["CVE-2024-21302"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2024-38272/", "date": "2024-06-26", "cves": ["CVE-2024-38272"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2024-38271/", "date": "2024-06-26", "cves": ["CVE-2024-38271"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2023-36396/", "date": "2023-12-21", "cves": ["CVE-2023-36396"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2023-36010-2/", "date": "2023-12-21", "cves": ["CVE-2023-36010"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2023-32054/", "date": "2023-12-21", "cves": ["CVE-2023-32054"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2023-24934/", "date": "2023-04-08", "cves": ["CVE-2023-24934"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2023-24934-2/", "date": "2023-04-06", "cves": ["CVE-2023-24860"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2023-23411/", "date": "2023-03-05", "cves": ["CVE-2023-23411"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2022-45797/", "date": "2022-12-12", "cves": ["CVE-2022-45797"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/141047/", "date": "2022-12-08", "cves": [], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2022-4173/", "date": "2022-11-10", "cves": ["CVE-2022-4173"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2022-38015/", "date": "2022-11-08", "cves": ["CVE-2022-38015"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2022-37971/", "date": "2022-10-08", "cves": ["CVE-2022-37971"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2021-34507/", "date": "2021-07-08", "cves": ["CVE-2021-34507"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2021-28476/", "date": "2021-05-08", "cves": ["CVE-2021-28476"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2020-1337/", "date": "2020-08-08", "cves": ["CVE-2020-1337"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2020-1048/", "date": "2020-05-08", "cves": ["CVE-2020-1048"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-20400/", "date": "2020-02-15", "cves": ["CVE-2019-20400"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-20406/", "date": "2020-02-10", "cves": ["CVE-2019-20406"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-19115/", "date": "2020-01-08", "cves": ["CVE-2019-19115"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-19235/", "date": "2019-12-20", "cves": ["CVE-2019-19235"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-19705/", "date": "2019-12-15", "cves": ["CVE-2019-19705"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-18670/", "date": "2019-12-10", "cves": ["CVE-2019-18670"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-20362/", "date": "2019-12-05", "cves": ["CVE-2019-20362"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-15628/", "date": "2019-11-20", "cves": ["CVE-2019-15628"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-16861/", "date": "2019-11-19", "cves": ["CVE-2019-16861"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-15689/", "date": "2019-11-18", "cves": ["CVE-2019-15689"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-7365/", "date": "2019-11-17", "cves": ["CVE-2019-7365"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-6189/", "date": "2019-11-15", "cves": ["CVE-2019-6189"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-14568/", "date": "2019-11-13", "cves": ["CVE-2019-14568"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-16647/", "date": "2019-10-26", "cves": ["CVE-2019-16647"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-3648/", "date": "2019-10-24", "cves": ["CVE-2019-3648"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-12758/", "date": "2019-10-22", "cves": ["CVE-2019-12758"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-18196/", "date": "2019-10-20", "cves": ["CVE-2019-18196"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-5695/", "date": "2019-10-18", "cves": ["CVE-2019-5695"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-5694/", "date": "2019-10-15", "cves": ["CVE-2019-5694"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-8461/", "date": "2019-10-13", "cves": ["CVE-2019-8461"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-18215/", "date": "2019-10-10", "cves": ["CVE-2019-18215"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-17449/", "date": "2019-10-07", "cves": ["CVE-2019-17449"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-17093/", "date": "2019-10-04", "cves": ["CVE-2019-17093"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-6333/", "date": "2019-09-15", "cves": ["CVE-2019-6333"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-15295/", "date": "2019-08-15", "cves": ["CVE-2019-15295"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-6145/", "date": "2019-08-13", "cves": ["CVE-2019-6145"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-14684/", "date": "2019-08-11", "cves": ["CVE-2019-14684"], "vendors": [], "researchers": []}, {"url": "https://www.safebreach.com/vulnerability/cve-2019-12280/", "date": "2019-06-08", "cves": ["CVE-2019-12280"], "vendors": [], "researchers": []}]}, {"lab": "SEC Consult", "url": "https://sec-consult.com/vulnerability-lab/", "A": 246, "Q": 526, "V": 228, "R": 105, "researchers": [{"name": "Steffen Robertz", "count": 16}, {"name": "T. Weber", "count": 13}, {"name": "Gerhard Hechenberger", "count": 11}, {"name": "Daniel Hirschberger", "count": 11}, {"name": "Stefan Viehböck", "count": 9}, {"name": "Armin Stock", "count": 8}, {"name": "Werner Schober", "count": 7}, {"name": "Thomas Weber", "count": 6}, {"name": "Tobias Niemann", "count": 6}, {"name": "Johannes Kruchem", "count": 5}, {"name": "Michael Baer", "count": 5}, {"name": "W. Ettlinger", "count": 4}, {"name": "Sandro Einfeldt", "count": 4}, {"name": "Fabian Hagg", "count": 4}, {"name": "S. Robertz", "count": 4}, {"name": "Thorger Jansen", "count": 4}, {"name": "Samandeep Singh", "count": 3}, {"name": "W. Schober", "count": 3}, {"name": "Wolfgang Ettlinger", "count": 3}, {"name": "Mingshuo Li", "count": 3}, {"name": "Fabian Densborn", "count": 3}, {"name": "Gorazd Jank", "count": 3}, {"name": "Constantin Schieber-Knöbl", "count": 3}, {"name": "Florian Stuhlmann", "count": 3}, {"name": "Clemens Stockenreitner", "count": 3}, {"name": "Wan Ikram", "count": 2}, {"name": "Fikri Fadzil", "count": 2}, {"name": "Jasveer Singh", "count": 2}, {"name": "Mohammad Shah Bin Mohammad Esa", "count": 2}, {"name": "Marc Nimmerrichter", "count": 2}, {"name": "M. Li", "count": 2}, {"name": "Ahmad Ramadhan Amizudin", "count": 2}, {"name": "R. Freingruber", "count": 2}, {"name": "Mantas Juskauskas", "count": 2}, {"name": "Marius Schwarz", "count": 2}, {"name": "Johannes Greil", "count": 2}, {"name": "M. Tomaselli", "count": 2}, {"name": "David Haintz", "count": 2}, {"name": "J. Kruchem", "count": 2}, {"name": "Stefan Michlits", "count": 2}, {"name": "Raschin Tavakoli", "count": 2}, {"name": "Mario Keck", "count": 2}, {"name": "G. Hechenberger", "count": 2}, {"name": "Timo Longin", "count": 2}, {"name": "Niklas Schilling", "count": 2}, {"name": "Armin Weihbold", "count": 2}, {"name": "Stefan Schweighofer", "count": 2}, {"name": "Lukas Donaubauer", "count": 2}, {"name": "Kai Zimmermann", "count": 2}, {"name": "Stefan Viehboeck", "count": 2}, {"name": "Constantin Schieber-Knoebl", "count": 2}, {"name": "Marius Renner", "count": 2}, {"name": "Florian Haselsteiner", "count": 2}, {"name": "Goh Zhi Hao", "count": 1}, {"name": "Daniel Ostovary", "count": 1}, {"name": "Mathias Frank", "count": 1}, {"name": "Sabine Degen", "count": 1}, {"name": "T. Silpavarangkura", "count": 1}, {"name": "N. Rai-Ngoen", "count": 1}, {"name": "Jean-Benjamin Rousseau", "count": 1}, {"name": "Johannes Moritz", "count": 1}, {"name": "Citrix StorageZones Controller", "count": 1}, {"name": "IoT Inspector", "count": 1}, {"name": "F. Lienhart", "count": 1}, {"name": "Aida Mynzhasova", "count": 1}, {"name": "T. Soo", "count": 1}, {"name": "Ting Meng Yean", "count": 1}, {"name": "Andreas Kolbeck", "count": 1}, {"name": "S. Viehböck", "count": 1}, {"name": "Anastasia Melnikova", "count": 1}, {"name": "Eneko Cruz Elejalde", "count": 1}, {"name": "Farhan Rahman", "count": 1}, {"name": "Azrul Ikhwan Zulkifli | Sec Consult Vulnerability Lab", "count": 1}, {"name": "Khalil Bijjou", "count": 1}, {"name": "Y. Shen", "count": 1}, {"name": "M. Koplin", "count": 1}, {"name": "Yew Chung Cheah", "count": 1}, {"name": "Natsasit Jirathammanuwat", "count": 1}, {"name": "Oliver Boehlk", "count": 1}, {"name": "Florian Lienhart", "count": 1}, {"name": "Daniel Teuchert", "count": 1}, {"name": "Sutthiwat Panithansuwan", "count": 1}, {"name": "Daniel Teo", "count": 1}, {"name": "Ian Chong", "count": 1}, {"name": "Oualid Lkhaouni", "count": 1}, {"name": "Lukas Eder", "count": 1}, {"name": "Steffen Rogge", "count": 1}, {"name": "A. Ovsyannikova", "count": 1}, {"name": "T. Longin", "count": 1}, {"name": "Philipp Espernberger", "count": 1}, {"name": "Timon Vogel", "count": 1}, {"name": "Anna Hartig", "count": 1}, {"name": "Heiner Liesegang", "count": 1}, {"name": "Bernhard Gründling", "count": 1}, {"name": "Christian Hager", "count": 1}, {"name": "Constantin Sch", "count": 1}, {"name": "Mike Klostermaier", "count": 1}, {"name": "Johannes Völpel", "count": 1}, {"name": "C. Schwarz", "count": 1}, {"name": "Initially by Rene Grubmair", "count": 1}, {"name": "Ksandros Apostoli", "count": 1}, {"name": "Paul Serban", "count": 1}, {"name": "Timo Müller", "count": 1}, {"name": "Marius Renner | Sec Consult Vulnerability Lab M", "count": 1}, {"name": "Eric Kahlert", "count": 1}], "vendors": [{"name": "F5 BIG-IP", "count": 3}, {"name": "ADB Broadband Gateways / Routers", "count": 3}, {"name": "OpenText™ Content Server component of OpenText™ Extended ECM", "count": 3}, {"name": "Microsoft .NET Framework", "count": 2}, {"name": "EMC Documentum eRoom", "count": 2}, {"name": "Symantec Endpoint Protection", "count": 2}, {"name": "OpenProject", "count": 2}, {"name": "flatCore CMS", "count": 2}, {"name": "BSCW Server", "count": 2}, {"name": "SAP Netweaver", "count": 2}, {"name": "SIEMENS-SINEMA Remote Connect", "count": 2}, {"name": "SAP® Application Server ABAP and ABAP® Platform", "count": 2}, {"name": "Plone", "count": 1}, {"name": "Check Point SSL VPN On-Demand applications", "count": 1}, {"name": "Microsoft Forefront Unified Access Gateway Remote Access Age", "count": 1}, {"name": "F5 FirePass SSL VPN", "count": 1}, {"name": "OpenOffice.org", "count": 1}, {"name": "Symantec Messaging Gateway", "count": 1}, {"name": "Oracle WebCenter Sites vulne", "count": 1}, {"name": "jforum", "count": 1}, {"name": "QlikView Desktop Client", "count": 1}, {"name": "Sophos Web Protection Appliance", "count": 1}, {"name": "Censornet Professional v4", "count": 1}, {"name": "Nitro Pro", "count": 1}, {"name": "Java Web Start Launcher", "count": 1}, {"name": "Oracle WebCenter Sites Satellite Server", "count": 1}, {"name": "NetApp OnCommand System Manager", "count": 1}, {"name": "IBM WebSphere DataPower Integration Appliance", "count": 1}, {"name": "Apache CXF", "count": 1}, {"name": "Symantec Web Gateway", "count": 1}, {"name": "Zabbix", "count": 1}, {"name": "IBM Web Content Manager", "count": 1}, {"name": "Symantec LiveUpdate Administrator", "count": 1}, {"name": "WD Arkeia Virtual Appliance", "count": 1}, {"name": "IBM Algorithmics RICOS", "count": 1}, {"name": "Shopizer", "count": 1}, {"name": "Citrix NetScaler Application Delivery Controller Citrix NetS", "count": 1}, {"name": "GParted - Gnome Partition Editor", "count": 1}, {"name": "NetIQ Access Manager", "count": 1}, {"name": "NetIQ eDirectory NDS iMonitor", "count": 1}, {"name": "Multiple TP-LINK products", "count": 1}, {"name": "KCodes NetUSB", "count": 1}, {"name": "Polycom RealPresence Resource Manager vulnerable vers", "count": 1}, {"name": "Oracle Application Express", "count": 1}, {"name": "Websense Triton Content Manager", "count": 1}, {"name": "Several AMX devices, see section \"Vuln", "count": 1}, {"name": "Yeager CMS", "count": 1}, {"name": "Micro Focus Filr Appliance vulnerable versio", "count": 1}, {"name": "Micro Focus GroupWise", "count": 1}, {"name": "Kerio Control Unified Threat Management", "count": 1}, {"name": "Aruba AirWave", "count": 1}, {"name": "OpenEMR", "count": 1}, {"name": "IBM Infosphere Information Server / Datastage", "count": 1}, {"name": "Solare Datensysteme", "count": 1}, {"name": "PHP", "count": 1}, {"name": "MyBB", "count": 1}, {"name": "Portrait Display", "count": 1}, {"name": "Oracle Financial Services Analytical Applications", "count": 1}, {"name": "Cisco Prime Infrastructure", "count": 1}, {"name": "OSCI-Transport", "count": 1}, {"name": "SAP E-Recruiting", "count": 1}, {"name": "Fortinet FortiClient", "count": 1}, {"name": "ClipBucket", "count": 1}, {"name": "Micro Focus VisiBroker C++", "count": 1}, {"name": "Oracle Access Manager", "count": 1}, {"name": "SecurEnvoy SecurMail", "count": 1}, {"name": "InfoZip UnZip", "count": 1}, {"name": "Siemens SICAM RTUs SM-2556 COM Modules", "count": 1}, {"name": "RSA Authentication Manager", "count": 1}, {"name": "Fortinet FortiOS", "count": 1}, {"name": "Sonatype Nexus Repository Manager OSS/Pro", "count": 1}, {"name": "WSO2 Carbon", "count": 1}, {"name": "MyBiz MyProcureNet", "count": 1}, {"name": "miSafes Mi-Cam", "count": 1}, {"name": "Vgate iCar 2 WiFi", "count": 1}, {"name": "Miss Marple Enterprise Edition", "count": 1}, {"name": "WAGO e!DISPLAY 7300T", "count": 1}, {"name": "Microsoft Skype for Business 2016 / Lync 2013", "count": 1}, {"name": "Pimcore", "count": 1}, {"name": "DokuWiki", "count": 1}, {"name": "Moodle - Open-source learning platform", "count": 1}, {"name": "Citrix StorageZones Controller", "count": 1}, {"name": "Progress Kendo UI Editor", "count": 1}, {"name": "PTC ThingWorx", "count": 1}, {"name": "Xiongmai IP Cameras, NVRs and DVRs incl. 3rd party OEM devic", "count": 1}, {"name": "OpenPGP.js", "count": 1}, {"name": "Cisco VOIP Phones, e.g. models 88XX", "count": 1}, {"name": "CA Automic Workload Automation Web Interface, formerly", "count": 1}, {"name": "AVAYA One-X communicator", "count": 1}, {"name": "WAGO 852 Industrial Managed Switch Series", "count": 1}, {"name": "Supplementary Go Cryptography Libraries", "count": 1}, {"name": "Gemalto", "count": 1}, {"name": "Zoho Corporation ManageEngine ServiceDesk Plus", "count": 1}, {"name": "LimeSurvey", "count": 1}, {"name": "Cisco RV340, Cisco RV340W, Cisco RV345, Cisco RV345P, Cisco", "count": 1}, {"name": "RSA NetWitness", "count": 1}, {"name": "eBrigade", "count": 1}, {"name": "eIDAS-Node", "count": 1}, {"name": "Multiple Fortinet Products", "count": 1}, {"name": "SALTO ProAccess SPACE", "count": 1}, {"name": "Fronius Solar Inverter Series", "count": 1}, {"name": "ZOHO Manageengine ServiceDesk Plus", "count": 1}, {"name": "Umbraco CMS", "count": 1}, {"name": "Phoenix Contact TC Router & TC Cloud Client", "count": 1}, {"name": "Multiple Rittal Products based on same", "count": 1}, {"name": "SteelCentral Aternity Agent", "count": 1}, {"name": "Eikon Thomson Reuters", "count": 1}, {"name": "ZTE mobile Hotspot", "count": 1}, {"name": "Red Lion N-Tron 702-W, Red Lion N-Tron 702M12-W", "count": 1}, {"name": "RocketLinx Series", "count": 1}, {"name": "Sage DPW", "count": 1}, {"name": "konzept-ix publiXone", "count": 1}, {"name": "Trend Micro InterScan Messaging Security Virtual Appliance", "count": 1}, {"name": "Avaya Web License Manager", "count": 1}, {"name": "Trend Micro InterScan Web Security Virtual Appliance", "count": 1}, {"name": "Pepperl+Fuchs IO-Link-Master Series", "count": 1}, {"name": "Adobe Magento Commerce", "count": 1}, {"name": "IrfanView - WPG.dll plugin", "count": 1}, {"name": "Genua GenuGate High Resistance Firewall", "count": 1}, {"name": "Monospace Directus Headless CMS", "count": 1}, {"name": "Microsoft Azure DevOps Server", "count": 1}, {"name": "SIS Informatik - REWE GO", "count": 1}, {"name": "Korenix: JetNet 5428G-20SFP, JetNet 5810G, JetNet 4706F, Jet", "count": 1}, {"name": "Multiple Schneider Electric EVlink Charging Stations Vulnera", "count": 1}, {"name": "Multiple Altus Sistemas de Automacao products: Nexto", "count": 1}, {"name": "NetModule Router", "count": 1}, {"name": "see \"Vulnerable / tested versions\"", "count": 1}, {"name": "CODESYS Runtime Toolkit 32-bit, CODESYS PLCWinNT", "count": 1}, {"name": "IBM Sterling B2B Integrator", "count": 1}, {"name": "OrbiTeam BSCW Server", "count": 1}, {"name": "AbanteCart e-commerce platform", "count": 1}, {"name": "Sofico Miles RIA", "count": 1}, {"name": "Cisco IP Phone Series 78x1, 88x5, 88x1, 7832, 8832, 8821 and", "count": 1}, {"name": "TYPO3 extension \"femanager\"", "count": 1}, {"name": "Land", "count": 1}, {"name": "Ethercreative Logs plugin for Craft CMS", "count": 1}, {"name": "WAGO 750-8xxx PLC", "count": 1}, {"name": "Korenix Technology JetWave products", "count": 1}, {"name": "Siemens A8000 CP-8050/CP-8031 SICAM WEB", "count": 1}, {"name": "Miele Benchmark Programming Tool", "count": 1}, {"name": "Craft CMS", "count": 1}, {"name": "Multiple Konica Minolta bizhub MFP Printer Terminals Vulnera", "count": 1}, {"name": "Korenix JetPort 5601V3", "count": 1}, {"name": "Poly EagleEye Director II", "count": 1}, {"name": "Poly Studio X30, Studio X50, Studio X70, G7500", "count": 1}, {"name": "dbus-broker", "count": 1}, {"name": "Infiray IRAY-A8Z3 thermal camera", "count": 1}, {"name": "Gentics CMS", "count": 1}, {"name": "SoftGuard - A network management extension", "count": 1}, {"name": "Nexans FTTO GigaSwitch industrial/office switches in HW vers", "count": 1}, {"name": "Foxit PDF Reader", "count": 1}, {"name": "SAP® SAProuter", "count": 1}, {"name": "SAP® SAPControl Web Service Interface Vulnera", "count": 1}, {"name": "SAP® Sybase sybctrl", "count": 1}, {"name": "COVESA DLT daemon Connected Vehic", "count": 1}, {"name": "Simmeth System", "count": 1}, {"name": "BMC Remedy ITSM-Suite", "count": 1}, {"name": "Payara Platform", "count": 1}, {"name": "Planet Enterprises", "count": 1}, {"name": "Zhuhai Suny Technology ESL Tag / ETAG-TECH protocol", "count": 1}, {"name": "ILIAS eLearning platform", "count": 1}, {"name": "SAP Host Agent", "count": 1}, {"name": "Eclipse Business Intelligence Reporting Tool Vulnerab", "count": 1}, {"name": "B&R Systems Diagnostics Manager", "count": 1}, {"name": "Barracuda CloudGen WAN", "count": 1}, {"name": "Arris", "count": 1}, {"name": "Kiddoware Kids Place Parental Control Android App", "count": 1}, {"name": "Serenity and StartSharp", "count": 1}, {"name": "Wekan", "count": 1}, {"name": "Boomerang Parental Control App", "count": 1}, {"name": "Siemens A8000 CP-8050 MASTER MODULE, Siemens", "count": 1}, {"name": "Kyocera TASKalfa 4053ci printer", "count": 1}, {"name": "PTC - Codebeamer", "count": 1}, {"name": "Atos Unify OpenScape Session Border Controller, Atos Unify O", "count": 1}, {"name": "mb Support broker management solution openVIVA c2", "count": 1}, {"name": "m-privacy TightGate-Pro", "count": 1}, {"name": "Fortra Digital Guardian Agent Uninstaller", "count": 1}, {"name": "Atos Unify OpenScape Session Border Controller, Atos U", "count": 1}, {"name": "One Identity Password Manager Secure Password Extension Vuln", "count": 1}, {"name": "PDF24 Creator", "count": 1}, {"name": "Statamic CMS", "count": 1}, {"name": "OpenOLAT", "count": 1}, {"name": "Qognify VMS Client Viewer", "count": 1}, {"name": "Checkmk Agent", "count": 1}, {"name": "SAP Cloud Connector", "count": 1}, {"name": "HAWKI", "count": 1}, {"name": "Kiuwan SAST on-premise & cloud/SaaS & Kiuwan Local Ana", "count": 1}, {"name": "edu-sharing", "count": 1}, {"name": "Faronics WINSelect", "count": 1}, {"name": "Siemens CP-8000/CP-8021/CP8-022/CP-8031/CP-8050/SICORE Vulne", "count": 1}, {"name": "SoftMaker Office / FreeOffice", "count": 1}, {"name": "BlackBerry CylanceOPTICS Windows Installer Package Vulnerabl", "count": 1}, {"name": "Nitro PDF Pro", "count": 1}, {"name": "Palo Alto Networks GlobalProtect", "count": 1}, {"name": "Rittal IoT Interface & CMC III Processing Unit", "count": 1}, {"name": "Multiple Xerox printers", "count": 1}, {"name": "Lawo AG vsm LTC Time Sync", "count": 1}, {"name": "Ping Identity PingIDM", "count": 1}, {"name": "HASOMED Elefant and Elefant", "count": 1}, {"name": "Siemens Energy Omnivise T3000", "count": 1}, {"name": "Siemens SM-2558 Protocol Element", "count": 1}, {"name": "Omada Identity", "count": 1}, {"name": "Image Access Scan2Net", "count": 1}, {"name": "Numerix License Server Administration System Login Vulnerabl", "count": 1}, {"name": "Wind River", "count": 1}, {"name": "Wattsense - Wattsense Bridge", "count": 1}, {"name": "Siemens A8000 CP-8050 PLC, Siemens A8000 CP-8031 PLC Vulnera", "count": 1}, {"name": "Ivanti Endpoint Manager Security Scan Self Update", "count": 1}, {"name": "Honeywell MB-Secure", "count": 1}, {"name": "eCharge Hardy Barth cPH2 and cPP2 charging stations Vulnerab", "count": 1}, {"name": "SIMCom -", "count": 1}, {"name": "ONLYOFFICE Docs", "count": 1}, {"name": "Optimizely Episerver Content Management System", "count": 1}, {"name": "Shopware 6", "count": 1}, {"name": "KioSoft \"Stored Value\" Unattended Payment Solution", "count": 1}, {"name": "Shibboleth Service Provider", "count": 1}, {"name": "CleverControl employee monitoring", "count": 1}, {"name": "iMonitorSoft EAM", "count": 1}, {"name": "EfficientLab WorkExaminer Professional", "count": 1}, {"name": "MPDV Mikrolab MIP 2 / FEDRA 2 / HYDRA X Manufacturing Execut", "count": 1}, {"name": "dormakaba Access Manager", "count": 1}, {"name": "dormakaba Kaba exos 9300", "count": 1}, {"name": "dormakaba registration unit 9002", "count": 1}, {"name": "Various Solax Power Pocket WiFi models", "count": 1}, {"name": "NesterSoft WorkTime", "count": 1}, {"name": "CPSD CryptoPro Secure Disk for BitLocker", "count": 1}, {"name": "PEGA Infinity platform", "count": 1}, {"name": "Arturia", "count": 1}], "advisories": [{"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-privilege-escalation-vulnerabilities-in-arturia-software-center-macos/", "date": "2026-01-02", "cves": ["CVE-2026-24062", "CVE-2026-24063"], "vendors": ["Arturia"], "researchers": ["Florian Haselsteiner"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-native-instruments-native-access-macos/", "date": "2025-07-22", "cves": ["CVE-2026-24070", "CVE-2026-24071"], "vendors": [], "researchers": ["Florian Haselsteiner"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-local-file-disclosure-in-mpdv-mikrolab-mip-2-fedra-2-hydra-x-manufacturing-execution-system/", "date": "2025-06-23", "cves": ["CVE-2025-12055"], "vendors": ["MPDV Mikrolab MIP 2 / FEDRA 2 / HYDRA X Manufacturing Execut"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-sql-injection-vulnerability-in-shibboleth-service-provider-sp-odbc-interface/", "date": "2025-06-16", "cves": ["CVE-2025-9943"], "vendors": ["Shibboleth Service Provider"], "researchers": ["Florian Stuhlmann"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-efficientlab-workexaminer-professional/", "date": "2025-05-26", "cves": ["CVE-2025-10639", "CVE-2025-10640", "CVE-2025-10641"], "vendors": ["EfficientLab WorkExaminer Professional"], "researchers": ["Tobias Niemann", "Daniel Hirschberger", "Thorger Jansen", "Marius Renner | Sec Consult Vulnerability Lab M"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/missing-certificate-validation-leading-to-rce-in-clevercontrol-employee-monitoring-software/", "date": "2025-05-23", "cves": ["CVE-2025-10548"], "vendors": ["CleverControl employee monitoring"], "researchers": ["Daniel Hirschberger", "Thorger Jansen", "Tobias Niemann", "Marius Renner"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-nestersoft-worktime-on-prem-cloud/", "date": "2025-05-22", "cves": ["CVE-2025-15563", "CVE-2025-15562", "CVE-2025-15561", "CVE-2025-15560", "CVE-2025-15559"], "vendors": ["NesterSoft WorkTime"], "researchers": ["Tobias Niemann"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-imonitorsoft-eam/", "date": "2025-05-21", "cves": ["CVE-2025-10540", "CVE-2025-10541", "CVE-2025-10542"], "vendors": ["iMonitorSoft EAM"], "researchers": ["Marius Renner", "Daniel Hirschberger", "Tobias Niemann", "Thorger Jansen"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/race-condition-in-shopware-voucher-submission/", "date": "2025-05-14", "cves": ["CVE-2025-7954"], "vendors": ["Shopware 6"], "researchers": ["Timo Müller"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-various-solax-power-pocket-wifi-models/", "date": "2025-04-15", "cves": ["CVE-2025-15573", "CVE-2025-15574", "CVE-2025-15575"], "vendors": ["Various Solax Power Pocket WiFi models"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-cpsd-cryptopro-secure-disk-for-bitlocker/", "date": "2025-04-14", "cves": ["CVE-2025-10010"], "vendors": ["CPSD CryptoPro Secure Disk for BitLocker"], "researchers": ["Gorazd Jank"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-in-onlyoffice-docs-documentserver/", "date": "2025-02-14", "cves": ["CVE-2025-5301"], "vendors": ["ONLYOFFICE Docs"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/ivanti-endpoint-manager-local-privilege-escalation-via-dll-search-order-hijacking/", "date": "2025-02-07", "cves": ["CVE-2025-22458"], "vendors": ["Ivanti Endpoint Manager Security Scan Self Update"], "researchers": ["Paul Serban"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-pega-infinity-platform/", "date": "2024-12-12", "cves": ["CVE-2025-62181", "CVE-2025-9559"], "vendors": ["PEGA Infinity platform"], "researchers": ["Eric Kahlert"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/honeywell-mb-secure-authenticated-command-injection/", "date": "2024-11-04", "cves": ["CVE-2025-2605"], "vendors": ["Honeywell MB-Secure"], "researchers": ["Lukas Donaubauer"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-rittal-iot-interface-cmc-iii-processing-unit/", "date": "2024-06-03", "cves": ["CVE-2024-47943", "CVE-2024-47944", "CVE-2024-47945"], "vendors": ["Rittal IoT Interface & CMC III Processing Unit"], "researchers": ["Johannes Kruchem"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-siemens-energy-omnivise-t3000/", "date": "2024-06-02", "cves": ["CVE-2024-38876", "CVE-2024-38877", "CVE-2024-38878", "CVE-2024-38879"], "vendors": ["Siemens Energy Omnivise T3000"], "researchers": ["Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-stored-cross-site-scripting-vulnerabilities-in-optimizely-episerver-content-management-system/", "date": "2024-04-25", "cves": ["CVE-2025-27800", "CVE-2025-27801", "CVE-2025-27802"], "vendors": ["Optimizely Episerver Content Management System"], "researchers": ["Kai Zimmermann"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/arbitrary-file-upload-in-edu-sharing-metaventis-gmbh/", "date": "2024-04-24", "cves": ["CVE-2024-28147"], "vendors": ["edu-sharing"], "researchers": ["Kai Zimmermann"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-hasomed-elefant-and-elefant-software-updater/", "date": "2024-04-15", "cves": ["CVE-2024-50588", "CVE-2024-50589", "CVE-2024-50590", "CVE-2024-50591", "CVE-2024-50592", "CVE-2024-50593"], "vendors": ["HASOMED Elefant and Elefant"], "researchers": ["Tobias Niemann", "Daniel Hirschberger", "Florian Stuhlmann"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/query-filter-injection-in-ping-identity-pingidm-formerly-known-as-forgerock-identity-management/", "date": "2024-04-10", "cves": ["CVE-2024-23600"], "vendors": ["Ping Identity PingIDM"], "researchers": ["Ksandros Apostoli"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-in-numerix-license-server-administration-system-login/", "date": "2024-04-05", "cves": ["CVE-2024-50585"], "vendors": ["Numerix License Server Administration System Login Vulnerabl"], "researchers": ["Daniel Hirschberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/wind-river-software-vxworks-rtos-weak-password-hashing-algorithms/", "date": "2024-03-21", "cves": ["CVE-2010-2965"], "vendors": ["Wind River"], "researchers": ["Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-cross-site-scripting-in-omada-identity/", "date": "2024-03-20", "cves": ["CVE-2024-52951"], "vendors": ["Omada Identity"], "researchers": ["Daniel Hirschberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-dormakaba-access-manager/", "date": "2024-03-18", "cves": ["CVE-2025-59097", "CVE-2025-59098", "CVE-2025-59099", "CVE-2025-59100", "CVE-2025-59101", "CVE-2025-59102", "CVE-2025-59103", "CVE-2025-59104", "CVE-2025-59105", "CVE-2025-59106", "CVE-2025-59107", "CVE-2025-59108"], "vendors": ["dormakaba Access Manager"], "researchers": ["Clemens Stockenreitner", "Werner Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-dormakaba-kaba-exos-9300/", "date": "2024-03-18", "cves": ["CVE-2025-59090", "CVE-2025-59091", "CVE-2025-59092", "CVE-2025-59093", "CVE-2025-59094", "CVE-2025-59095", "CVE-2025-59096"], "vendors": ["dormakaba Kaba exos 9300"], "researchers": ["Clemens Stockenreitner", "Werner Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/uart-leaking-sensitive-data-in-dormakaba-registration-unit-9002-pin-pad/", "date": "2024-03-18", "cves": ["CVE-2025-59109"], "vendors": ["dormakaba registration unit 9002"], "researchers": ["Clemens Stockenreitner", "Werner Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-hawki/", "date": "2024-03-05", "cves": ["CVE-2024-25975", "CVE-2024-25976", "CVE-2024-25977"], "vendors": ["HAWKI"], "researchers": ["Florian Stuhlmann", "Thorger Jansen"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-allowing-complete-bypass-in-faronics-winselect-standard-enterprise/", "date": "2024-02-01", "cves": ["CVE-2024-36495", "CVE-2024-36496", "CVE-2024-36497"], "vendors": ["Faronics WINSelect"], "researchers": ["Daniel Hirschberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-path-traversal-vulnerability-in-lawo-ag-vsm-ltc-time-sync-vtimesync/", "date": "2024-01-11", "cves": ["CVE-2024-6049"], "vendors": ["Lawo AG vsm LTC Time Sync"], "researchers": ["Sandro Einfeldt"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-stored-cross-site-scripting-vulnerabilities/", "date": "2024-01-06", "cves": ["CVE-2024-24570"], "vendors": ["Statamic CMS"], "researchers": ["Niklas Schilling"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/mutiple-stored-cross-site-scripting-vulnerabilities-in-openolat-frentix-gmbh/", "date": "2023-12-20", "cves": ["CVE-2024-25973", "CVE-2024-25974"], "vendors": ["OpenOLAT"], "researchers": ["Mike Klostermaier", "Johannes Völpel"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-via-msi-installer-in-nitro-pdf-pro/", "date": "2023-12-19", "cves": ["CVE-2024-35288"], "vendors": ["Nitro PDF Pro"], "researchers": ["Sandro Einfeldt", "Michael Baer"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authenticated-remote-code-execution-in-multiple-xerox-printers/", "date": "2023-12-14", "cves": ["CVE-2024-6333"], "vendors": ["Multiple Xerox printers"], "researchers": ["Timo Longin"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/uninstall-password-bypass-in-blackberry-cylanceoptics-windows-installer-package/", "date": "2023-12-12", "cves": ["CVE-2024-35214"], "vendors": ["BlackBerry CylanceOPTICS Windows Installer Package Vulnerabl"], "researchers": ["Initially by Rene Grubmair"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-via-writable-files-in-checkmk-agent/", "date": "2023-12-01", "cves": ["CVE-2024-0670"], "vendors": ["Checkmk Agent"], "researchers": ["Michael Baer"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-via-msi-installer-in-softmaker-office-freeoffice/", "date": "2023-11-27", "cves": ["CVE-2023-7270"], "vendors": ["SoftMaker Office / FreeOffice"], "researchers": ["Michael Baer"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-via-dll-hijacking-in-qognify-vms-client-viewer/", "date": "2023-11-23", "cves": ["CVE-2023-49114"], "vendors": ["Qognify VMS Client Viewer"], "researchers": ["Sandro Einfeldt"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-wattsense-bridge/", "date": "2023-11-20", "cves": ["CVE-2025-26408", "CVE-2025-26409", "CVE-2025-26410", "CVE-2025-26411"], "vendors": ["Wattsense - Wattsense Bridge"], "researchers": ["Constantin Schieber-Knöbl", "Stefan Schweighofer", "Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/undocumented-root-shell-access-on-simcom-modem/", "date": "2023-11-20", "cves": ["CVE-2025-26412"], "vendors": ["SIMCom -"], "researchers": ["Constantin Schieber-Knöbl"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-via-msi-installer-in-palo-alto-networks-globalprotect/", "date": "2023-11-16", "cves": ["CVE-2024-9473"], "vendors": ["Palo Alto Networks GlobalProtect"], "researchers": ["Michael Baer"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/tolerating-self-signed-certificates-in-sap-cloud-connector/", "date": "2023-11-13", "cves": ["CVE-2024-25642"], "vendors": ["SAP Cloud Connector"], "researchers": ["Mingshuo Li"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-echarge-hardy-barth-cph2-and-cpp2-charging-stations/", "date": "2023-11-13", "cves": ["CVE-2025-27803", "CVE-2025-27804", "CVE-2025-48413", "CVE-2025-48414", "CVE-2025-48415", "CVE-2025-48416", "CVE-2025-48417"], "vendors": ["eCharge Hardy Barth cPH2 and cPP2 charging stations Vulnerab"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-via-msi-installer-in-pdf24-creator-geek-software-gmbh/", "date": "2023-10-16", "cves": ["CVE-2023-49147"], "vendors": ["PDF24 Creator"], "researchers": ["Lukas Donaubauer", "Mario Keck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/kiosk-escape-privilege-escalation-one-identity-password-manager-secure-password-extension/", "date": "2023-10-09", "cves": ["CVE-2023-48654"], "vendors": ["One Identity Password Manager Secure Password Extension Vuln"], "researchers": ["Stefan Schweighofer", "Constantin Schieber-Knöbl"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/nfc-card-vulnerability-exploitation-leading-to-free-top-up-kiosoft-payment-solution/", "date": "2023-10-01", "cves": ["CVE-2025-8699"], "vendors": ["KioSoft \"Stored Value\" Unattended Payment Solution"], "researchers": ["Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/argument-injection-vulnerability-in-multiple-atos-unify-openscape-products/", "date": "2023-09-01", "cves": ["CVE-2023-6269"], "vendors": ["Atos Unify OpenScape Session Border Controller, Atos U"], "researchers": ["Armin Weihbold"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-m-privacy-tightgate-pro/", "date": "2023-08-18", "cves": ["CVE-2023-47250", "CVE-2023-47251"], "vendors": ["m-privacy TightGate-Pro"], "researchers": ["Daniel Hirschberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unlocked-jtag-interface-and-buffer-overflow-in-siemens-sm-2558-protocol-element/", "date": "2023-07-11", "cves": ["CVE-2024-31484"], "vendors": ["Siemens SM-2558 Protocol Element"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-image-access-scan2net/", "date": "2023-06-22", "cves": ["CVE-2024-28138", "CVE-2024-28139", "CVE-2024-28140", "CVE-2024-28141", "CVE-2024-28142", "CVE-2024-28143", "CVE-2024-28144", "CVE-2024-28145", "CVE-2024-28146", "CVE-2024-47946", "CVE-2024-47947", "CVE-2024-36498", "CVE-2024-36494", "CVE-2024-50584"], "vendors": ["Image Access Scan2Net"], "researchers": ["Daniel Hirschberger", "Tobias Niemann"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/uninstall-key-caching-in-fortra-digital-guardian-agent-uninstaller/", "date": "2023-05-16", "cves": ["CVE-2023-6253"], "vendors": ["Fortra Digital Guardian Agent Uninstaller"], "researchers": ["J. Kruchem"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authenticated-remote-code-execution-missing-authentication-atos-unify-openscape/", "date": "2023-04-21", "cves": ["CVE-2023-36618", "CVE-2023-36619"], "vendors": ["Atos Unify OpenScape Session Border Controller, Atos Unify O"], "researchers": ["Armin Weihbold"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-xss-in-codebeamer-alm-solution-by-ptc/", "date": "2023-04-14", "cves": ["CVE-2023-4296"], "vendors": ["PTC - Codebeamer"], "researchers": ["Niklas Schilling"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-siemens-power-automation-products-cp-8000-cp-8021-cp8-022-cp-8031-cp-8050-sicore/", "date": "2023-04-03", "cves": ["CVE-2024-31484", "CVE-2024-31485", "CVE-2024-31486"], "vendors": ["Siemens CP-8000/CP-8021/CP8-022/CP-8031/CP-8050/SICORE Vulne"], "researchers": ["Stefan Viehboeck", "Steffen Robertz", "Gerhard Hechenberger", "Constantin Schieber-Knoebl"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-siemens-a8000-cp-8050-and-cp-8031-plc/", "date": "2023-04-03", "cves": ["CVE-2024-39601", "CVE-2024-53832"], "vendors": ["Siemens A8000 CP-8050 PLC, Siemens A8000 CP-8031 PLC Vulnera"], "researchers": ["Stefan Viehboeck", "Steffen Robertz", "Gerhard Hechenberger", "Constantin Schieber-Knoebl"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-serenity-and-startsharp-software/", "date": "2023-02-28", "cves": ["CVE-2023-31285", "CVE-2023-31286", "CVE-2023-31287"], "vendors": ["Serenity and StartSharp"], "researchers": ["Fabian Densborn"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-siemens-a8000/", "date": "2023-02-15", "cves": ["CVE-2023-28489", "CVE-2023-33919", "CVE-2023-33920", "CVE-2023-33921"], "vendors": ["Siemens A8000 CP-8050 MASTER MODULE, Siemens"], "researchers": ["Stefan Viehböck", "Christian Hager", "Steffen Robertz", "Gerhard Hechenberger", "Gorazd Jank", "Constantin Sch"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/os-command-injection-in-barracuda-cloudgen-wan/", "date": "2023-01-12", "cves": ["CVE-2023-26213"], "vendors": ["Barracuda CloudGen WAN"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-xss-vulnerability-in-rename-functionality-in-wekan-open-source-kanban/", "date": "2022-12-30", "cves": ["CVE-2023-28485"], "vendors": ["Wekan"], "researchers": ["Heiner Liesegang"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/path-traversal-bypass-denial-of-service-in-kyocera-printer/", "date": "2022-12-13", "cves": ["CVE-2023-34259", "CVE-2023-34260", "CVE-2023-34261"], "vendors": ["Kyocera TASKalfa 4053ci printer"], "researchers": ["Stefan Michlits", "Gorazd Jank"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-xss-vulnerabilities-in-br-systems-diagnostics-manager/", "date": "2022-10-28", "cves": ["CVE-2022-4286"], "vendors": ["B&R Systems Diagnostics Manager"], "researchers": ["S. Robertz", "G. Hechenberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-kiuwan-sast-on-premise-kop-cloud-saas-kiuwan-local-analyzer/", "date": "2022-10-28", "cves": ["CVE-2023-49110", "CVE-2023-49111", "CVE-2023-49112", "CVE-2023-49113"], "vendors": ["Kiuwan SAST on-premise & cloud/SaaS & Kiuwan Local Ana"], "researchers": ["C. Schwarz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-arris-dg3450-cable-gateway/", "date": "2022-10-21", "cves": ["CVE-2023-27571", "CVE-2023-27572"], "vendors": ["Arris"], "researchers": ["Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/remote-code-execution-bypass-eclipse-business-intelligence-reporting-birt/", "date": "2022-10-05", "cves": ["CVE-2021-34427"], "vendors": ["Eclipse Business Intelligence Reporting Tool Vulnerab"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-ilias-elearning-platform/", "date": "2022-09-30", "cves": ["CVE-2022-45915", "CVE-2022-45916", "CVE-2022-45917", "CVE-2022-45918"], "vendors": ["ILIAS eLearning platform"], "researchers": ["Anna Hartig"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/path-traversal-vulnerability-in-payara-platform/", "date": "2022-09-29", "cves": ["CVE-2022-45129"], "vendors": ["Payara Platform"], "researchers": ["Michael Baer"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-kiddoware-kids-place-parental-control-android-app/", "date": "2022-09-29", "cves": ["CVE-2023-28153", "CVE-2023-29078", "CVE-2023-29079"], "vendors": ["Kiddoware Kids Place Parental Control Android App"], "researchers": ["Fabian Densborn"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/app-restriction-bypass-and-other-vulnerabilities-in-boomerang-parental-control-app/", "date": "2022-09-29", "cves": ["CVE-2023-36620", "CVE-2023-36621"], "vendors": ["Boomerang Parental Control App"], "researchers": ["Fabian Densborn", "Bernhard Gründling"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/open-redirect-in-bsp-test-application-it00-bypass-for-cve-2020-6215-patch/", "date": "2022-09-23", "cves": ["CVE-2020-6215"], "vendors": ["SAP® Application Server ABAP and ABAP® Platform"], "researchers": ["Fabian Hagg"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/pre-authenticated-remote-code-execution-in-csexe-opentext-server-component/", "date": "2022-09-16", "cves": ["CVE-2022-45923"], "vendors": ["OpenText™ Content Server component of OpenText™ Extended ECM"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-post-authentication-vulnerabilities-including-rce-opentexttm-extended-ecm/", "date": "2022-09-16", "cves": ["CVE-2022-45924", "CVE-2022-45922", "CVE-2022-45925", "CVE-2022-45926", "CVE-2022-45928"], "vendors": ["OpenText™ Content Server component of OpenText™ Extended ECM"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/pre-authenticated-remote-code-execution-via-java-frontend-qds-endpoint-opentext-extended-ecm/", "date": "2022-09-16", "cves": ["CVE-2022-45927"], "vendors": ["OpenText™ Content Server component of OpenText™ Extended ECM"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-planet-enterprises-ltd-planet-estream/", "date": "2022-09-01", "cves": ["CVE-2022-45896", "CVE-2022-45893", "CVE-2022-45891", "CVE-2022-45889", "CVE-2022-45892", "CVE-2022-45890", "CVE-2022-45894", "CVE-2022-45895"], "vendors": ["Planet Enterprises"], "researchers": ["Timon Vogel"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/outdated-javascript-engine-leads-to-rce-in-foxit-pdf-reader/", "date": "2022-05-31", "cves": ["CVE-2020-6418", "CVE-2020-15638"], "vendors": ["Foxit PDF Reader"], "researchers": ["R. Freingruber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/replay-attacks-displaying-arbitrary-contents-in-zhuhai-suny-technology-esl-tag-etag-tech-protocol-electronic-shelf-labels/", "date": "2022-05-27", "cves": ["CVE-2022-45914"], "vendors": ["Zhuhai Suny Technology ESL Tag / ETAG-TECH protocol"], "researchers": ["Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-softguard-network-management-extension-snmp/", "date": "2022-04-14", "cves": ["CVE-2022-31201", "CVE-2022-31202"], "vendors": ["SoftGuard - A network management extension"], "researchers": ["Philipp Espernberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-cross-site-scripting-in-mb-support-broker-management-solution-openviva-c2/", "date": "2022-03-16", "cves": ["CVE-2022-39172"], "vendors": ["mb Support broker management solution openVIVA c2"], "researchers": ["Daniel Hirschberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/password-reset-poisoning-attack-craft-cms/", "date": "2022-03-14", "cves": ["CVE-2022-29933"], "vendors": ["Craft CMS"], "researchers": ["Sandro Einfeldt"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-in-siemens-sinema-remote-connect/", "date": "2022-03-01", "cves": ["CVE-2022-29034"], "vendors": ["SIEMENS-SINEMA Remote Connect"], "researchers": ["S. Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-simmeth-system-gmbh-lieferantenmanager/", "date": "2022-03-01", "cves": ["CVE-2022-44012", "CVE-2022-44013", "CVE-2022-44014", "CVE-2022-44015", "CVE-2022-44016", "CVE-2022-44017"], "vendors": ["Simmeth System"], "researchers": ["Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/improper-access-control-in-sap-saprouter/", "date": "2022-02-25", "cves": ["CVE-2022-27668"], "vendors": ["SAP® SAProuter"], "researchers": ["Fabian Hagg"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-in-sap-sapcontrol-web-service-interface-sapuxuserchk/", "date": "2022-02-24", "cves": ["CVE-2022-29614"], "vendors": ["SAP® SAPControl Web Service Interface Vulnera"], "researchers": ["Mingshuo Li"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-privilege-escalation-in-sap-sybase-sybctrl/", "date": "2022-02-18", "cves": ["CVE-2022-31594"], "vendors": ["SAP® Sybase sybctrl"], "researchers": ["Mingshuo Li"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/privilege-escalation-vulnerabilities-unix-insecure-file-handling-sap-saposcol/", "date": "2022-02-18", "cves": ["CVE-2022-35295"], "vendors": ["SAP Host Agent"], "researchers": ["Fabian Hagg"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/privilege-escalation-miele-benchmark-programming-tool/", "date": "2022-01-24", "cves": ["CVE-2022-22521"], "vendors": ["Miele Benchmark Programming Tool"], "researchers": ["Johannes Kruchem", "Werner Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/memory-corruption-vulnerabilities-dbus-broker/", "date": "2022-01-14", "cves": ["CVE-2022-31212", "CVE-2022-31213"], "vendors": ["dbus-broker"], "researchers": ["S. Robertz", "G. Hechenberger", "T. Weber", "T. Longin"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-memory-corruption-vulnerabilities-in-covesa-dlt-daemon/", "date": "2022-01-14", "cves": ["CVE-2022-39836", "CVE-2022-39837"], "vendors": ["COVESA DLT daemon Connected Vehic"], "researchers": ["Steffen Robertz", "Gerhard Hechenberger", "Thomas Weber", "Timo Longin"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/open-redirect-in-login-page-in-siemens-sinema-remote-connect/", "date": "2021-11-18", "cves": ["CVE-2022-23102"], "vendors": ["SIEMENS-SINEMA Remote Connect"], "researchers": ["A. Ovsyannikova"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/missing-authentication-at-file-download-denial-of-service-in-siemens-a8000/", "date": "2021-11-10", "cves": ["CVE-2022-27480"], "vendors": ["Siemens A8000 CP-8050/CP-8031 SICAM WEB"], "researchers": ["Steffen Robertz", "Gerhard Hechenberger", "Thomas Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-bscw-server/", "date": "2021-09-05", "cves": ["CVE-2021-44286", "CVE-2021-44284", "CVE-2021-44285", "CVE-2021-44287", "CVE-2021-44288", "CVE-2021-44291"], "vendors": ["OrbiTeam BSCW Server"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-moxa-devices/", "date": "2021-08-31", "cves": ["CVE-2021-39278", "CVE-2021-39279"], "vendors": ["see \"Vulnerable / tested versions\""], "researchers": ["Thomas Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/html-injection-in-bmc-remedy-itsm-suite/", "date": "2021-08-11", "cves": ["CVE-2022-26088"], "vendors": ["BMC Remedy ITSM-Suite"], "researchers": ["Daniel Hirschberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-abantecart-e-commerce-platform/", "date": "2021-07-19", "cves": ["CVE-2021-42050", "CVE-2021-42051"], "vendors": ["AbanteCart e-commerce platform"], "researchers": ["Daniel Teo", "Ian Chong"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/remote-abap-code-injection-in-sap-netweaver/", "date": "2021-07-16", "cves": ["CVE-2021-33701"], "vendors": ["SAP Netweaver"], "researchers": ["Raschin Tavakoli"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/critical-vulnerabilities-poly-eagleeye-director-ii/", "date": "2021-07-14", "cves": ["CVE-2022-26479", "CVE-2022-26482"], "vendors": ["Poly EagleEye Director II"], "researchers": ["Johannes Kruchem"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authenticated-command-injection-in-poly-studio/", "date": "2021-07-14", "cves": ["CVE-2022-26481"], "vendors": ["Poly Studio X30, Studio X50, Studio X70, G7500"], "researchers": ["Johannes Kruchem"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-cross-site-scripting-in-sofico-miles-ria/", "date": "2021-07-09", "cves": ["CVE-2021-41557"], "vendors": ["Sofico Miles RIA"], "researchers": ["Oualid Lkhaouni"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/remote-adbc-sql-injection-in-sap-netweaver/", "date": "2021-07-07", "cves": ["CVE-2021-33701"], "vendors": ["SAP Netweaver"], "researchers": ["Raschin Tavakoli"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authenticated-path-traversal-in-ethercreative-logs-plugin-for-craft-cms/", "date": "2021-07-06", "cves": ["CVE-2022-23409"], "vendors": ["Ethercreative Logs plugin for Craft CMS"], "researchers": ["Steffen Rogge"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authenticated-rce-in-bscw-server/", "date": "2021-06-30", "cves": ["CVE-2021-39271"], "vendors": ["BSCW Server"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xml-tag-injection-in-bscw-server/", "date": "2021-06-30", "cves": ["CVE-2021-36359"], "vendors": ["BSCW Server"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-cross-site-scripting-vulnerability-in-typo3-extension-femanager/", "date": "2021-06-01", "cves": ["CVE-2021-36787"], "vendors": ["TYPO3 extension \"femanager\""], "researchers": ["Lukas Eder"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-file-inclusion-vulnerability-in-land-software-faust-iserver/", "date": "2021-05-25", "cves": ["CVE-2021-34805"], "vendors": ["Land"], "researchers": ["Mario Keck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/critical-vulnerabilities-in-altus-sistemas-de-automacao-products/", "date": "2021-05-20", "cves": ["CVE-2021-39243", "CVE-2021-39244", "CVE-2021-39245"], "vendors": ["Multiple Altus Sistemas de Automacao products: Nexto"], "researchers": ["Daniel Teuchert", "Thomas Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-netmodule-router-software-nrsw/", "date": "2021-05-05", "cves": ["CVE-2021-39289", "CVE-2021-39290", "CVE-2021-39291"], "vendors": ["NetModule Router"], "researchers": ["Gerhard Hechenberger", "Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/codesys-v2-denial-of-service/", "date": "2021-05-05", "cves": ["CVE-2021-34593"], "vendors": ["CODESYS Runtime Toolkit 32-bit, CODESYS PLCWinNT"], "researchers": ["Gerhard Hechenberger", "Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/denial-of-service-user-enumeration-in-wago-750-8xxx-plc/", "date": "2021-05-05", "cves": ["CVE-2021-34593"], "vendors": ["WAGO 750-8xxx PLC"], "researchers": ["Gerhard Hechenberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/cleartext-storage-of-phone-password-in-cisco-ip-phones/", "date": "2021-04-15", "cves": ["CVE-2022-20660"], "vendors": ["Cisco IP Phone Series 78x1, 88x5, 88x1, 7832, 8832, 8821 and"], "researchers": ["Gerhard Hechenberger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilies-in-gentics-cms/", "date": "2021-04-02", "cves": ["CVE-2022-30981", "CVE-2022-30982"], "vendors": ["Gentics CMS"], "researchers": ["Gerhard Hechenberger", "Steffen Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authentication-bypass-remote-code-execution-in-schneider-electric-evlink-charging-stations/", "date": "2021-03-08", "cves": ["CVE-2021-22707", "CVE-2021-22708"], "vendors": ["Multiple Schneider Electric EVlink Charging Stations Vulnera"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-in-microsoft-azure-devops-server/", "date": "2021-03-03", "cves": ["CVE-2021-28459"], "vendors": ["Microsoft Azure DevOps Server"], "researchers": ["M. Li"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-vulnerabilities-in-sis-informatik-rewe-go/", "date": "2021-02-12", "cves": ["CVE-2021-31537"], "vendors": ["SIS Informatik - REWE GO"], "researchers": ["Steffen Robertz", "Florian Lienhart"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-irfanview-wpg/", "date": "2021-02-03", "cves": ["CVE-2021-27224", "CVE-2021-27362"], "vendors": ["IrfanView - WPG.dll plugin"], "researchers": ["Samandeep Singh"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-vulnerability-in-ibm-sterling-b2b-integrator/", "date": "2021-02-03", "cves": ["CVE-2021-20562"], "vendors": ["IBM Sterling B2B Integrator"], "researchers": ["Sutthiwat Panithansuwan"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/infiray-iray-thermal-camera-multiple-vulnerabilities/", "date": "2021-02-01", "cves": ["CVE-2022-31208", "CVE-2022-31209", "CVE-2022-31210", "CVE-2022-31211"], "vendors": ["Infiray IRAY-A8Z3 thermal camera"], "researchers": ["S. Robertz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authentication-bypass-genua-genugate/", "date": "2021-01-28", "cves": ["CVE-2021-27215"], "vendors": ["Genua GenuGate High Resistance Firewall"], "researchers": ["Armin Stock"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/arbitrary-file-upload-and-bypassing-htaccess-rules-in-monospace-directus-headless-cms/", "date": "2020-12-15", "cves": ["CVE-2021-29641"], "vendors": ["Monospace Directus Headless CMS"], "researchers": ["Oliver Boehlk"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-high-risk-vulnerabilities-in-flatcore-cms/", "date": "2020-11-20", "cves": ["CVE-2021-23835", "CVE-2021-23836", "CVE-2021-23837", "CVE-2021-23838"], "vendors": ["flatCore CMS"], "researchers": ["Yew Chung Cheah"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/critical-vulnerabilities-in-sap-application-server-and-platform/", "date": "2020-08-01", "cves": ["CVE-2020-6318", "CVE-2020-26808", "CVE-2020-26832", "CVE-2021-21465", "CVE-2021-21468", "CVE-2021-21466", "CVE-2021-21473", "CVE-2021-33678"], "vendors": ["SAP® Application Server ABAP and ABAP® Platform"], "researchers": ["Fabian Hagg"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-vulnerability-magento2/", "date": "2020-06-29", "cves": ["CVE-2021-21029"], "vendors": ["Adobe Magento Commerce"], "researchers": ["Natsasit Jirathammanuwat"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-and-unauthenticated-malicious-file-upload-in-sage-dpw-1/", "date": "2020-05-31", "cves": ["CVE-2020-26583"], "vendors": ["Sage DPW"], "researchers": ["Gerhard Hechenberger", "Stefan Michlits"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/hardcoded-backdoor-user-outdated-software-components-nexans-ftto-gigaswitch/", "date": "2020-05-25", "cves": ["CVE-2022-32985"], "vendors": ["Nexans FTTO GigaSwitch industrial/office switches in HW vers"], "researchers": ["Thomas Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-cisco-router-series-rv34x-rv26x-and-rv16x/", "date": "2020-05-15", "cves": ["CVE-2015-7547", "CVE-2017-16544", "CVE-2014-4043", "CVE-2014-9402", "CVE-2014-9761", "CVE-2014-9984", "CVE-2015-1472", "CVE-2015-5277", "CVE-2015-8778", "CVE-2015-8779", "CVE-2017-10003", "CVE-2016-2148", "CVE-2016-6301", "CVE-2015-9261", "CVE-2016-2147", "CVE-2018-20679", "CVE-2019-5747"], "vendors": ["Cisco RV340, Cisco RV340W, Cisco RV345, Cisco RV345P, Cisco"], "researchers": ["T. Weber", "S. Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-publixone/", "date": "2020-05-15", "cves": ["CVE-2020-27179", "CVE-2020-27183", "CVE-2020-27180", "CVE-2020-27181", "CVE-2020-27182"], "vendors": ["konzept-ix publiXone"], "researchers": ["Marius Schwarz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-pepperl-fuchs-io-link-master-series/", "date": "2020-04-23", "cves": ["CVE-2020-12511", "CVE-2020-12512", "CVE-2020-12513", "CVE-2020-12514"], "vendors": ["Pepperl+Fuchs IO-Link-Master Series"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-rocketlinx-series/", "date": "2020-04-06", "cves": ["CVE-2020-12500", "CVE-2020-12501", "CVE-2020-12502", "CVE-2020-12503", "CVE-2020-12504"], "vendors": ["RocketLinx Series"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-korenix-technology-westermo-pepperl-fuchs/", "date": "2020-04-06", "cves": ["CVE-2020-12500", "CVE-2020-12501", "CVE-2020-12502", "CVE-2020-12503", "CVE-2020-12504"], "vendors": ["Korenix: JetNet 5428G-20SFP, JetNet 5810G, JetNet 4706F, Jet"], "researchers": ["Thomas Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-korenix-technology-jetwave-products/", "date": "2020-04-06", "cves": ["CVE-2020-12500", "CVE-2020-12501", "CVE-2020-12502", "CVE-2020-12503", "CVE-2020-12504", "CVE-2021-39280"], "vendors": ["Korenix Technology JetWave products"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/backdoor-account-in-korenix-technology-jetport-series/", "date": "2020-04-06", "cves": ["CVE-2020-12501"], "vendors": ["Korenix JetPort 5601V3"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/vulnerabilities-in-trend-micro-interscan-messaging-security-virtual-appliance-imsva/", "date": "2020-04-01", "cves": ["CVE-2020-27016", "CVE-2020-27017", "CVE-2020-27018", "CVE-2020-27019", "CVE-2020-27693", "CVE-2020-27694"], "vendors": ["Trend Micro InterScan Messaging Security Virtual Appliance"], "researchers": ["W. Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-flatcore-cms/", "date": "2020-03-28", "cves": ["CVE-2020-17451", "CVE-2020-17452"], "vendors": ["flatCore CMS"], "researchers": ["Farhan Rahman", "Azrul Ikhwan Zulkifli | Sec Consult Vulnerability Lab"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/blind-out-of-band-xml-external-entity-injection-in-avaya-web-license-manager/", "date": "2020-03-01", "cves": ["CVE-2020-7032"], "vendors": ["Avaya Web License Manager"], "researchers": ["M. Koplin"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-red-lion-n-tron-702-w-red-lion-n-tron-702m12-w/", "date": "2020-02-28", "cves": ["CVE-2020-16210", "CVE-2020-16206", "CVE-2020-16208", "CVE-2020-16204"], "vendors": ["Red Lion N-Tron 702-W, Red Lion N-Tron 702M12-W"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authenticated-command-injection-in-phoenix-contact-tc-router-tc-cloud-client/", "date": "2020-01-23", "cves": ["CVE-2020-9436", "CVE-2020-9435"], "vendors": ["Phoenix Contact TC Router & TC Cloud Client"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/privilege-escalation-vulnerability-in-steelcentral-aternity-agent/", "date": "2019-12-13", "cves": ["CVE-2020-15592", "CVE-2020-15593"], "vendors": ["SteelCentral Aternity Agent"], "researchers": ["Eneko Cruz Elejalde"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-in-zoho-manageengine-servicedesk-plus/", "date": "2019-12-01", "cves": ["CVE-2020-6843"], "vendors": ["ZOHO Manageengine ServiceDesk Plus"], "researchers": ["Johannes Kruchem"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-multiple-rittal-products-based-on-same-software/", "date": "2019-12-01", "cves": ["CVE-2020-11951", "CVE-2020-11952", "CVE-2020-11953", "CVE-2020-11955", "CVE-2020-11956"], "vendors": ["Multiple Rittal Products based on same"], "researchers": ["J. Kruchem"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/sandbox-escape-with-root-access-clear-text-passwords-in-konica-minolta-bizhub-mfp-printer-terminals/", "date": "2019-11-25", "cves": ["CVE-2022-29586", "CVE-2022-29587", "CVE-2022-29588"], "vendors": ["Multiple Konica Minolta bizhub MFP Printer Terminals Vulnera"], "researchers": ["Werner Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/cross-site-request-forgery-csrf-in-umbraco-cms/", "date": "2019-10-01", "cves": ["CVE-2020-7210"], "vendors": ["Umbraco CMS"], "researchers": ["Anastasia Melnikova"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-xss-vulnerability-in-openproject-cve-2019-17092/", "date": "2019-09-27", "cves": ["CVE-2019-17092"], "vendors": ["OpenProject"], "researchers": ["David Haintz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-zte-mobile-hotspot-ms910s-cve-2019-3422/", "date": "2019-09-25", "cves": ["CVE-2019-3422"], "vendors": ["ZTE mobile Hotspot"], "researchers": ["Y. Shen", "T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authorization-bypass-vulnerability-in-rsa-netwitness-cve-2019-3724/", "date": "2019-09-18", "cves": ["CVE-2019-3724"], "vendors": ["RSA NetWitness"], "researchers": ["Mantas Juskauskas"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-and-reflected-xss-vulnerabilities-in-limesurvey-cve-2019-16172-cve-2019-16173/", "date": "2019-08-23", "cves": ["CVE-2019-16172", "CVE-2019-16173"], "vendors": ["LimeSurvey"], "researchers": ["Andreas Kolbeck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-trend-micro-interscan-web-security-virtual-appliance/", "date": "2019-07-15", "cves": ["CVE-2020-8461", "CVE-2020-8462", "CVE-2020-8463", "CVE-2020-8464", "CVE-2020-8465", "CVE-2020-8466"], "vendors": ["Trend Micro InterScan Web Security Virtual Appliance"], "researchers": ["Wolfgang Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-sensitive-information-leakage-in-zoho-servicedesk-software/", "date": "2019-06-27", "cves": ["CVE-2019-15045", "CVE-2019-15046"], "vendors": ["Zoho Corporation ManageEngine ServiceDesk Plus"], "researchers": ["Johannes Greil"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-sql-injection-vulnerabilities-in-ebrigade/", "date": "2019-06-06", "cves": ["CVE-2019-16743", "CVE-2019-16744", "CVE-2019-16745"], "vendors": ["eBrigade"], "researchers": ["David Haintz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/15587/", "date": "2019-06-01", "cves": ["CVE-2019-18632", "CVE-2019-18633"], "vendors": ["eIDAS-Node"], "researchers": ["Wolfgang Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-salto-proaccess-space/", "date": "2019-05-22", "cves": ["CVE-2019-19457", "CVE-2019-19458", "CVE-2019-19459", "CVE-2019-19460"], "vendors": ["SALTO ProAccess SPACE"], "researchers": ["Werner Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-sql-injection-vulnerability-in-openproject-cve-2019-11600/", "date": "2019-04-17", "cves": ["CVE-2019-11600"], "vendors": ["OpenProject"], "researchers": ["T. Soo"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/cleartext-message-spoofing-in-go-cryptography-libraries-cve-2019-11841/", "date": "2019-03-28", "cves": ["CVE-2019-11841"], "vendors": ["Supplementary Go Cryptography Libraries"], "researchers": ["Aida Mynzhasova"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/extensive-file-permissions-on-service-executable-in-eikon-thomson-reuters-cve-2019-10679/", "date": "2019-03-18", "cves": ["CVE-2019-10679"], "vendors": ["Eikon Thomson Reuters"], "researchers": ["Khalil Bijjou"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-wago-852-industrial-managed-switch-series-cve-2019-12550-cve-2019-12549/", "date": "2019-03-08", "cves": ["CVE-2019-12550", "CVE-2019-12549"], "vendors": ["WAGO 852 Industrial Managed Switch Series"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-gemalto-thales-group-ds3-authentication-server-ezio-server/", "date": "2019-02-11", "cves": ["CVE-2019-9156", "CVE-2019-9157", "CVE-2019-9158"], "vendors": ["Gemalto"], "researchers": ["Ting Meng Yean"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-openpgp-js/", "date": "2018-12-31", "cves": ["CVE-2019-9153", "CVE-2019-9154", "CVE-2019-9155"], "vendors": ["OpenPGP.js"], "researchers": ["Wolfgang Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/weak-configuration-file-encryption-in-avaya-one-x-communicator/", "date": "2018-11-01", "cves": ["CVE-2019-7006"], "vendors": ["AVAYA One-X communicator"], "researchers": ["W. Schober", "F. Lienhart"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilites-in-fronius-solar-inverter-series-cve-2019-19229-cve-2019-19228/", "date": "2018-10-31", "cves": ["CVE-2019-19228", "CVE-2019-19229"], "vendors": ["Fronius Solar Inverter Series"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/cross-site-scripting-in-ca-automic-workload-automation-web-interface-formerly-automic-automation-engine/", "date": "2018-10-15", "cves": ["CVE-2019-6504"], "vendors": ["CA Automic Workload Automation Web Interface, formerly"], "researchers": ["Marc Nimmerrichter"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/vulnerabilities-in-cisco-voip-phones-cve-2018-0461/", "date": "2018-10-01", "cves": ["CVE-2018-0461"], "vendors": ["Cisco VOIP Phones, e.g. models 88XX"], "researchers": ["W. Schober", "IoT Inspector"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/vulnerability-in-skype-for-business-lync-might-lead-to-denial-of-service-attack/", "date": "2018-08-01", "cves": ["CVE-2018-8546"], "vendors": ["Microsoft Skype for Business 2016 / Lync 2013"], "researchers": ["Sabine Degen"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-citrix-storagezones-controller-cve-2018-16968-cve-2018-16969/", "date": "2018-08-01", "cves": ["CVE-2018-16968", "CVE-2018-16969"], "vendors": ["Citrix StorageZones Controller"], "researchers": ["Citrix StorageZones Controller"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/dokuwiki-csv-formula-injection-vulnerability/", "date": "2018-07-09", "cves": ["CVE-2018-15474"], "vendors": ["DokuWiki"], "researchers": ["Jean-Benjamin Rousseau"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/remote-code-execution-php-unserialize-moodle-open-source-learning-platform-cve-2018-14630/", "date": "2018-07-08", "cves": ["CVE-2018-14630"], "vendors": ["Moodle - Open-source learning platform"], "researchers": ["Johannes Moritz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/sql-injection-xss-csrf-vulnerabilities-in-pimcore-software/", "date": "2018-06-11", "cves": ["CVE-2018-14057", "CVE-2018-14058", "CVE-2018-14059"], "vendors": ["Pimcore"], "researchers": ["T. Silpavarangkura", "N. Rai-Ngoen"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-miss-marple-enterprise-edition/", "date": "2018-05-29", "cves": ["CVE-2018-19233", "CVE-2018-19234"], "vendors": ["Miss Marple Enterprise Edition"], "researchers": ["Marius Schwarz"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/weak-encryption-cipher-and-hardcoded-cryptographic-keys-in-fortinet-products/", "date": "2018-05-16", "cves": ["CVE-2018-9195"], "vendors": ["Multiple Fortinet Products"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/remote-code-execution-via-multiple-attack-vectors-in-wago-edisplay/", "date": "2018-04-25", "cves": ["CVE-2018-12979", "CVE-2018-12980", "CVE-2018-12981"], "vendors": ["WAGO e!DISPLAY 7300T"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unprotected-wifi-access-unencrypted-data-transfer-in-vgate-icar2-wifi-obd2-dongle/", "date": "2018-04-24", "cves": ["CVE-2018-11476", "CVE-2018-11477", "CVE-2018-11478"], "vendors": ["Vgate iCar 2 WiFi"], "researchers": ["T. Weber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-cross-site-scripting-in-kendo-ui-editor-cve-2018-14037/", "date": "2018-04-23", "cves": ["CVE-2018-14037"], "vendors": ["Progress Kendo UI Editor"], "researchers": ["M. Tomaselli"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/password-disclosure-vulnerability-xss-in-ptc-thingworx/", "date": "2018-03-13", "cves": ["CVE-2018-17216", "CVE-2018-17217", "CVE-2018-17218"], "vendors": ["PTC ThingWorx"], "researchers": ["M. Tomaselli"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/vulnerabilities-xiongmai-ip-cameras-nvrs-dvrs-cve-2018-17915-cve-2018-17917-cve-2018-17919/", "date": "2018-03-05", "cves": ["CVE-2018-17915", "CVE-2018-17917", "CVE-2018-17919"], "vendors": ["Xiongmai IP Cameras, NVRs and DVRs incl. 3rd party OEM devic"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/arbitrary-file-upload-cross-site-scripting-in-mybiz-myprocurenet/", "date": "2018-01-29", "cves": ["CVE-2018-11090", "CVE-2018-11091"], "vendors": ["MyBiz MyProcureNet"], "researchers": ["Ahmad Ramadhan Amizudin"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-cross-site-scripting-vulnerabilities-in-sonatype-nexus-repository-manager-oss-pro/", "date": "2017-12-17", "cves": ["CVE-2018-5306", "CVE-2018-5307"], "vendors": ["Sonatype Nexus Repository Manager OSS/Pro"], "researchers": ["Werner Schober", "Daniel Ostovary"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-stored-xss-vulnerabilities-in-wso2-carbon-and-dashboard-server/", "date": "2017-12-13", "cves": ["CVE-2018-8716"], "vendors": ["WSO2 Carbon"], "researchers": ["W. Schober"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/hijacking-of-arbitrary-misafes-mi-cam-video-baby-monitors/", "date": "2017-11-30", "cves": ["CVE-2015-8041"], "vendors": ["miSafes Mi-Cam"], "researchers": ["Mathias Frank"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xxe-xss-vulnerabilities-in-rsa-authentication-manager/", "date": "2017-11-16", "cves": ["CVE-2018-1247"], "vendors": ["RSA Authentication Manager"], "researchers": ["Mantas Juskauskas"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-infozip-unzip/", "date": "2017-11-03", "cves": ["CVE-2018-10000"], "vendors": ["InfoZip UnZip"], "researchers": ["R. Freingruber"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authentication-bypass-in-oracle-access-manager/", "date": "2017-11-01", "cves": ["CVE-2018-2879"], "vendors": ["Oracle Access Manager"], "researchers": ["W. Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-securenvoy-securmail/", "date": "2017-11-01", "cves": ["CVE-2018-7701", "CVE-2018-7702", "CVE-2018-7703", "CVE-2018-7704", "CVE-2018-7705", "CVE-2018-7706", "CVE-2018-7707"], "vendors": ["SecurEnvoy SecurMail"], "researchers": ["W. Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/fortigate-ssl-vpn-portal-xss-vulnerability/", "date": "2017-10-02", "cves": ["CVE-2017-14186"], "vendors": ["Fortinet FortiOS"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/os-command-injection-arbitrary-file-upload-sql-injection-in-clipbucket/", "date": "2017-09-06", "cves": ["CVE-2018-7664", "CVE-2018-7665", "CVE-2018-7666"], "vendors": ["ClipBucket"], "researchers": ["Ahmad Ramadhan Amizudin", "Wan Ikram", "Fikri Fadzil", "Jasveer Singh"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/vpn-credentials-disclosure-in-fortinet-forticlient/", "date": "2017-08-29", "cves": ["CVE-2017-14184"], "vendors": ["Fortinet FortiClient"], "researchers": ["M. Li"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authentication-bypass-cross-site-scripting-in-siemens-sicam-rtus-sm-2556/", "date": "2017-08-17", "cves": ["CVE-2017-12737"], "vendors": ["Siemens SICAM RTUs SM-2556 COM Modules"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/email-verification-bypass-in-sap-e-recruiting/", "date": "2017-07-12", "cves": ["CVE-2017-14511"], "vendors": ["SAP E-Recruiting"], "researchers": ["Marc Nimmerrichter"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xxe-reflected-xss-in-oracle-financial-services-analytical-applications/", "date": "2017-06-15", "cves": ["CVE-2018-2660", "CVE-2018-2661"], "vendors": ["Oracle Financial Services Analytical Applications"], "researchers": ["Mohammad Shah Bin Mohammad Esa", "Samandeep Singh"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-micro-focus-visibroker-c/", "date": "2017-04-01", "cves": ["CVE-2017-9281", "CVE-2017-9282", "CVE-2017-9283"], "vendors": ["Micro Focus VisiBroker C++"], "researchers": ["W. Ettlinger"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-ibm-infosphere-information-server-datastage/", "date": "2017-03-16", "cves": ["CVE-2017-1495", "CVE-2017-1468", "CVE-2017-1383", "CVE-2017-1467"], "vendors": ["IBM Infosphere Information Server / Datastage"], "researchers": ["Goh Zhi Hao", "Mohammad Shah Bin Mohammad Esa", "Samandeep Singh"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/misbehavior-of-the-fsockopen-function/", "date": "2017-03-06", "cves": ["CVE-2017-7272"], "vendors": ["PHP"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/os-command-injection-reflected-cross-site-scripting-in-openemr/", "date": "2017-03-03", "cves": ["CVE-2017-16540"], "vendors": ["OpenEMR"], "researchers": ["Wan Ikram", "Fikri Fadzil", "Jasveer Singh"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/server-side-request-forgery-ssrf-vulnerability/", "date": "2017-03-03", "cves": ["CVE-2017-7566"], "vendors": ["MyBB"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/privilege-escalation-due-to-insecure-service-configuration/", "date": "2017-02-23", "cves": ["CVE-2017-3210"], "vendors": ["Portrait Display"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-solare-datensysteme-solar-log/", "date": "2017-01-23", "cves": ["CVE-2001-1341"], "vendors": ["Solare Datensysteme"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-16/", "date": "2017-01-16", "cves": ["CVE-2017-10668"], "vendors": ["OSCI-Transport"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xml-external-entity-injection-xxe-2/", "date": "2016-11-21", "cves": ["CVE-2016-8526", "CVE-2016-8527"], "vendors": ["Aruba AirWave"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-cisco-prime-infrastructure/", "date": "2016-11-21", "cves": ["CVE-2017-6662", "CVE-2017-6698", "CVE-2017-6699", "CVE-2017-6700"], "vendors": ["Cisco Prime Infrastructure"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/potential-backdoor-access-through-multiple-vulnerabilities/", "date": "2016-08-24", "cves": ["CVE-2014-8142", "CVE-2014-3515", "CVE-2015-0231", "CVE-2015-6834", "CVE-2016-5771", "CVE-2016-5773"], "vendors": ["Kerio Control Unified Threat Management"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/privilege-escalation-via-linux-group-manipulation-in-all-adb-broadband-gateways-routers/", "date": "2016-07-11", "cves": ["CVE-2018-13110"], "vendors": ["ADB Broadband Gateways / Routers"], "researchers": ["Stefan Viehböck"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-micro-focus-groupwise/", "date": "2016-07-05", "cves": ["CVE-2016-5760", "CVE-2016-5761", "CVE-2016-5762"], "vendors": ["Micro Focus GroupWise"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/authorization-bypass-in-all-adb-broadband-gateways-routers/", "date": "2016-06-28", "cves": ["CVE-2018-13109"], "vendors": ["ADB Broadband Gateways / Routers"], "researchers": ["Johannes Greil"]}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/local-root-jailbreak-via-network-file-sharing-flaw-in-all-adb-broadband-gateways-routers/", "date": "2016-06-09", "cves": ["CVE-2018-13108"], "vendors": ["ADB Broadband Gateways / Routers"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-13/", "date": "2016-05-23", "cves": ["CVE-2016-1607", "CVE-2016-1608", "CVE-2016-1609", "CVE-2016-1610", "CVE-2016-1611"], "vendors": ["Micro Focus Filr Appliance vulnerable versio"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-yeager-cms/", "date": "2015-11-18", "cves": ["CVE-2015-7567", "CVE-2015-7568", "CVE-2015-7569", "CVE-2015-7570", "CVE-2015-7571", "CVE-2015-7572"], "vendors": ["Yeager CMS"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stack-buffer-overflow-in-handle-debug-network/", "date": "2015-04-13", "cves": ["CVE-2015-5718"], "vendors": ["Websense Triton Content Manager"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/critical-vulnerabilities-allow-surveillance-on-conferences/", "date": "2015-03-10", "cves": ["CVE-2015-4681", "CVE-2015-4682", "CVE-2015-4683", "CVE-2015-4684", "CVE-2015-4685"], "vendors": ["Polycom RealPresence Resource Manager vulnerable vers"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/deliberately-hidden-backdoor-account-in-several-amx-devices/", "date": "2015-03-10", "cves": ["CVE-2015-8362"], "vendors": ["Several AMX devices, see section \"Vuln"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/kernel-stack-buffer-overflow-in-kcodes-netusb/", "date": "2015-02-23", "cves": ["CVE-2015-3036"], "vendors": ["KCodes NetUSB"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-local-file-disclosure-in-multiple-tp-link-products/", "date": "2015-02-19", "cves": ["CVE-2015-3035"], "vendors": ["Multiple TP-LINK products"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/os-command-execution/", "date": "2014-10-29", "cves": ["CVE-2014-7208"], "vendors": ["GParted - Gnome Partition Editor"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-high-risk-vulnerabilities-in-netiq-access-manager/", "date": "2014-10-29", "cves": ["CVE-2014-5214", "CVE-2014-5215", "CVE-2014-5216", "CVE-2014-5217"], "vendors": ["NetIQ Access Manager"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xss-memory-disclosure/", "date": "2014-10-29", "cves": ["CVE-2014-5212", "CVE-2014-5213"], "vendors": ["NetIQ eDirectory NDS iMonitor"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-symantec-data-center-security-server-advanced/", "date": "2014-09-19", "cves": ["CVE-2014-7289", "CVE-2014-9224", "CVE-2014-9225", "CVE-2014-9226"], "vendors": [], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/reflected-cross-site-scripting-in-f5-big-ip/", "date": "2014-07-07", "cves": ["CVE-2014-4023"], "vendors": ["F5 BIG-IP"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xxe-xss-arbitrary-file-write-vulnerabilities/", "date": "2014-07-01", "cves": ["CVE-2014-3437", "CVE-2014-3438", "CVE-2014-3439"], "vendors": ["Symantec Endpoint Protection"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/permanent-cross-site-scripting/", "date": "2014-05-28", "cves": ["CVE-2015-2655"], "vendors": ["Oracle Application Express"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/path-traversal-remote-code-execution/", "date": "2014-03-05", "cves": ["CVE-2014-2846"], "vendors": ["WD Arkeia Virtual Appliance"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-citrix-netscaler-application-delivery-controller/", "date": "2014-01-05", "cves": ["CVE-2014-4346", "CVE-2014-4347"], "vendors": ["Citrix NetScaler Application Delivery Controller Citrix NetS"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-symantec-liveupdate-administrator/", "date": "2014-01-02", "cves": ["CVE-2014-1644", "CVE-2014-1645"], "vendors": ["Symantec LiveUpdate Administrator"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-severe-vulnerabilities-in-ibm-algorithmics-ricos/", "date": "2013-12-19", "cves": ["CVE-2014-0894", "CVE-2014-0871", "CVE-2014-0870", "CVE-2014-0869", "CVE-2014-0868", "CVE-2014-0867", "CVE-2014-0866", "CVE-2014-0865", "CVE-2014-0864"], "vendors": ["IBM Algorithmics RICOS"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-symantec-endpoint-protection/", "date": "2013-12-03", "cves": ["CVE-2013-5014", "CVE-2013-5015"], "vendors": ["Symantec Endpoint Protection"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/stored-cross-site-scripting-vulnerabilities/", "date": "2013-11-25", "cves": ["CVE-2014-2512"], "vendors": ["EMC Documentum eRoom"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xpath-injection/", "date": "2013-10-27", "cves": ["CVE-2013-6735"], "vendors": ["IBM Web Content Manager"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/sql-injection-vulnerability/", "date": "2013-09-03", "cves": ["CVE-2013-5743"], "vendors": ["Zabbix"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/nitro-pro-8-insecure-library-loading-allows-remote-code/", "date": "2013-03-01", "cves": ["CVE-2013-2773"], "vendors": ["Nitro Pro"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-censornet-professional-v4/", "date": "2013-02-06", "cves": ["CVE-2013-2771", "CVE-2013-2772"], "vendors": ["Censornet Professional v4"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/denial-of-service-vulnerability/", "date": "2013-02-01", "cves": ["CVE-2013-2160"], "vendors": ["Apache CXF"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/javascript-execution-in-websphere-datapower-services/", "date": "2013-01-28", "cves": ["CVE-2013-0499"], "vendors": ["IBM WebSphere DataPower Integration Appliance"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-sophos-web-protection-appliance/", "date": "2013-01-14", "cves": ["CVE-2013-2641", "CVE-2013-2642", "CVE-2013-2643"], "vendors": ["Sophos Web Protection Appliance"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-surveillance-via-symantec-web/", "date": "2012-12-18", "cves": ["CVE-2013-1616", "CVE-2013-1617", "CVE-2013-4670", "CVE-2013-4671", "CVE-2013-4672"], "vendors": ["Symantec Web Gateway"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/java-activex-control-memory-corruption/", "date": "2012-11-13", "cves": ["CVE-2013-2416"], "vendors": ["Java Web Start Launcher"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-2/", "date": "2012-11-06", "cves": ["CVE-2013-3320", "CVE-2013-3321", "CVE-2013-3322"], "vendors": ["NetApp OnCommand System Manager"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/qlikview-desktop-client-integer-overflow/", "date": "2012-10-22", "cves": ["CVE-2013-3052"], "vendors": ["QlikView Desktop Client"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/persistent-cross-site-scripting-vulnerability/", "date": "2012-09-20", "cves": ["CVE-2013-3053"], "vendors": ["jforum"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/http-header-injection-cache-poisoning-in-oracle-webcenter/", "date": "2012-09-17", "cves": ["CVE-2013-1509"], "vendors": ["Oracle WebCenter Sites Satellite Server"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/xml-external-entity-injection-xxe/", "date": "2012-09-03", "cves": ["CVE-2012-2997"], "vendors": ["F5 BIG-IP"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/sql-injection-1/", "date": "2012-09-03", "cves": ["CVE-2012-3000"], "vendors": ["F5 BIG-IP"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-reflected-cross-site-scripting-vulnerabilities/", "date": "2012-08-20", "cves": ["CVE-2013-3286"], "vendors": ["EMC Documentum eRoom"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/support-backdoor/", "date": "2012-06-26", "cves": ["CVE-2012-3579"], "vendors": ["Symantec Messaging Gateway"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-vulnerabilities-in-oracle-webcenter-sites/", "date": "2012-06-04", "cves": ["CVE-2012-3183", "CVE-2012-3184", "CVE-2012-3185", "CVE-2012-3186"], "vendors": ["Oracle WebCenter Sites vulne"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/unauthenticated-remote-root-through-sql-injection/", "date": "2012-02-03", "cves": ["CVE-2012-1777"], "vendors": ["F5 FirePass SSL VPN"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-critical-vulnerabilities-in-shopizer-webshop/", "date": "2012-01-10", "cves": ["CVE-2011-3923"], "vendors": ["Shopizer"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/microsoft-aspnet-forms-authentication-bypass/", "date": "2011-10-02", "cves": ["CVE-2011-3416"], "vendors": ["Microsoft .NET Framework"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/microsoft-aspnet-forms-authentication-bypass-1/", "date": "2011-10-02", "cves": ["CVE-2011-3416"], "vendors": ["Microsoft .NET Framework"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/libwpd-wpxcontentlistener-closetablerow-memory-overwrite/", "date": "2011-09-01", "cves": ["CVE-2012-2149"], "vendors": ["OpenOffice.org"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/client-side-remote-file-upload-command-execution-1/", "date": "2011-04-20", "cves": ["CVE-2011-1969"], "vendors": ["Microsoft Forefront Unified Access Gateway Remote Access Age"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/client-side-remote-file-upload-command-execution/", "date": "2011-03-28", "cves": ["CVE-2011-1827"], "vendors": ["Check Point SSL VPN On-Demand applications"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/multiple-cross-site-scripting-vulnerabilities-1/", "date": "2011-03-23", "cves": ["CVE-2011-1948"], "vendors": ["Plone"], "researchers": []}, {"url": "https://sec-consult.com/vulnerability-lab/advisory/apache-http-server-tomcat-directory-traversal/", "date": "2006-11-27", "cves": ["CVE-2007-0450"], "vendors": [], "researchers": []}]}, {"lab": "Securitum", "url": "https://www.securitum.com", "A": 4, "Q": 4, "V": 1, "R": 0, "researchers": [], "vendors": [{"name": "fail2ban", "count": 1}], "advisories": [{"url": "https://www.securitum.com/artificial_intelligence-assisted_fuzzing.html", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-3602"], "vendors": [], "researchers": []}, {"url": "https://www.securitum.com/remote-code-execution-by-fail2ban.html", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32749"], "vendors": ["fail2ban"], "researchers": []}, {"url": "https://www.securitum.com/is-running-legacy-software-with-no-publicly-known-exploits-safe.html", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2007-5245"], "vendors": [], "researchers": []}, {"url": "https://www.securitum.com/prototype-pollution-and-bypassing-client-side-html-sanitizers.html", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7609"], "vendors": [], "researchers": []}]}, {"lab": "SentinelOne", "url": "https://www.sentinelone.com/labs/", "A": 48, "Q": 115, "V": 43, "R": 22, "researchers": [{"name": "Kasif Dekel", "count": 7}, {"name": "Jim Walter", "count": 6}, {"name": "Phil Stokes", "count": 6}, {"name": "Max Van Amerongen", "count": 4}, {"name": "Antonio Cocomazzi", "count": 3}, {"name": "Gal Kristal", "count": 2}, {"name": "Vitali Kremez", "count": 2}, {"name": "Amitai Ben Shushan Ehrlich", "count": 2}, {"name": "Tom Hegel", "count": 2}, {"name": "Alex Delamotte", "count": 2}, {"name": "Michael Myngerbayev", "count": 1}, {"name": "Jason Reaves", "count": 1}, {"name": "Antonio Pirozzi", "count": 1}, {"name": "Joshua Platt", "count": 1}, {"name": "Idan Weizman", "count": 1}, {"name": "Asaf Amir", "count": 1}, {"name": "Aleksandar Milenkoski", "count": 1}, {"name": "Assaf Carlsbad", "count": 1}, {"name": "Aleksandar Milenkoski&Tom Hegel", "count": 1}, {"name": "Juan Andrés Guerrero-Saade", "count": 1}, {"name": "Joey Chen", "count": 1}, {"name": "Marco Figueroa", "count": 1}], "vendors": [{"name": "Hotcobalt - New Cobalt Strike", "count": 1}, {"name": "Relaying Potatoes: Another Unexpected", "count": 1}, {"name": "12 Years in Hiding", "count": 1}, {"name": "Zeoticus 2.0", "count": 1}, {"name": "Case Study: Why You Shouldn’t", "count": 1}, {"name": "Agent Tesla", "count": 1}, {"name": "A Click from the Backyard", "count": 1}, {"name": "Valak Malware and the Connection", "count": 1}, {"name": "RIG", "count": 1}, {"name": "Defeating macOS Malware Anti-Analysis Tricks", "count": 1}, {"name": "Spook Ransomware", "count": 1}, {"name": "Hide and Seek", "count": 1}, {"name": "GSOh No! Hunting for", "count": 1}, {"name": "Infect If Needed", "count": 1}, {"name": "USB Over Ethernet", "count": 1}, {"name": "A Threat Hunter’s Guide to", "count": 1}, {"name": "Remote Linux Kernel Heap Overflow", "count": 1}, {"name": "Firefox JIT Use-After-Frees", "count": 1}, {"name": "Log4j2 In The Wild", "count": 1}, {"name": "Targets of Interest", "count": 1}, {"name": "RobinHood Ransomware “CoolMaker” Functions Not", "count": 1}, {"name": "IoT Security Exposed: Unveiling Azure", "count": 1}, {"name": "Inside a TrickBot Cobalt Strike", "count": 1}, {"name": "20 Common Tools & Techniques", "count": 1}, {"name": "Threat Intel", "count": 1}, {"name": "Conti Unpacked", "count": 1}, {"name": "Egregor RaaS Continues the Chaos", "count": 1}, {"name": "16 Years In Hiding", "count": 1}, {"name": "Hundreds Of Millions Of Dell", "count": 1}, {"name": "11 Problems ChatGPT Can Solve", "count": 1}, {"name": "Another Brick in the Wall", "count": 1}, {"name": "ModifiedElephant APT and a Decade", "count": 1}, {"name": "Purple Fox EK", "count": 1}, {"name": "FIN7 Reboot", "count": 1}, {"name": "Dissecting AlienFox", "count": 1}, {"name": "IceFire Ransomware Returns", "count": 1}, {"name": "Black Basta Ransomware", "count": 1}, {"name": "Follow the Smoke", "count": 1}, {"name": "MeteorExpress", "count": 1}, {"name": "Wading Through Muddy Waters", "count": 1}, {"name": "Aoqin Dragon", "count": 1}, {"name": "Kryptina RaaS", "count": 1}, {"name": "Caught in the Cloud", "count": 1}], "advisories": [{"url": "https://www.sentinelone.com/labs/follow-the-smoke-china-nexus-threat-actors-hammer-at-the-doors-of-top-tier-targets/", "date": "2025-06-09", "cves": ["CVE-2024-8963", "CVE-2024-8190", "CVE-2023-46747", "CVE-2024-1709"], "vendors": ["Follow the Smoke"], "researchers": ["Aleksandar Milenkoski&Tom Hegel"]}, {"url": "https://www.sentinelone.com/labs/kryptina-raas-from-unsellable-cast-off-to-enterprise-ransomware/", "date": "2024-09-23", "cves": ["CVE-2024-21338"], "vendors": ["Kryptina RaaS"], "researchers": ["Jim Walter"]}, {"url": "https://www.sentinelone.com/labs/fin7-reboot-cybercrime-gang-enhances-ops-with-new-edr-bypasses-and-automated-attacks/", "date": "2024-07-17", "cves": ["CVE-2021-34473", "CVE-2021-34523", "CVE-2021-31207"], "vendors": ["FIN7 Reboot"], "researchers": ["Antonio Cocomazzi"]}, {"url": "https://www.sentinelone.com/labs/dissecting-alienfox-the-cloud-spammers-swiss-army-knife/", "date": "2023-03-30", "cves": ["CVE-2022-31279"], "vendors": ["Dissecting AlienFox"], "researchers": ["Alex Delamotte"]}, {"url": "https://www.sentinelone.com/labs/icefire-ransomware-returns-now-targeting-linux-enterprise-networks/", "date": "2023-03-09", "cves": ["CVE-2022-47986"], "vendors": ["IceFire Ransomware Returns"], "researchers": ["Alex Delamotte"]}, {"url": "https://www.sentinelone.com/labs/11-problems-chatgpt-can-solve-for-reverse-engineers-and-malware-analysts/", "date": "2022-12-21", "cves": ["CVE-2022-46888", "CVE-2022-46889"], "vendors": ["11 Problems ChatGPT Can Solve"], "researchers": ["Aleksandar Milenkoski"]}, {"url": "https://www.sentinelone.com/labs/black-basta-ransomware-attacks-deploy-custom-edr-evasion-tools-tied-to-fin7-threat-actor/", "date": "2022-11-03", "cves": ["CVE-2022-30190", "CVE-2020-1472", "CVE-2021-42287", "CVE-2021-42278", "CVE-2021-34527"], "vendors": ["Black Basta Ransomware"], "researchers": ["Antonio Cocomazzi"]}, {"url": "https://www.sentinelone.com/labs/targets-of-interest-russian-organizations-increasingly-under-attack-by-chinese-apts/", "date": "2022-07-07", "cves": ["CVE-2018-0798"], "vendors": ["Targets of Interest"], "researchers": ["Tom Hegel"]}, {"url": "https://www.sentinelone.com/labs/aoqin-dragon-newly-discovered-chinese-linked-apt-has-been-quietly-spying-on-organizations-for-10-years/", "date": "2022-06-09", "cves": ["CVE-2012-0158", "CVE-2010-3333", "CVE-2014-6332"], "vendors": ["Aoqin Dragon"], "researchers": ["Joey Chen"]}, {"url": "https://www.sentinelone.com/labs/vulnerabilities-in-avast-and-avg-put-millions-at-risk/", "date": "2022-05-05", "cves": ["CVE-2022-26522", "CVE-2022-26523"], "vendors": [], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/pwning-microsoft-azure-defender-for-iot-multiple-flaws-allow-remote-code-execution-for-all/", "date": "2022-03-28", "cves": ["CVE-2021-42310", "CVE-2021-42312", "CVE-2021-37222", "CVE-2021-42313", "CVE-2021-42311"], "vendors": ["IoT Security Exposed: Unveiling Azure"], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/another-brick-in-the-wall-uncovering-smm-vulnerabilities-in-hp-firmware/", "date": "2022-03-10", "cves": ["CVE-2022-23956", "CVE-2022-23953", "CVE-2022-23954", "CVE-2022-23955", "CVE-2022-23957", "CVE-2022-23958", "CVE-2021-36342", "CVE-2021-44346", "CVE-2021-0157", "CVE-2021-0158", "CVE-2021-42055", "CVE-2021-3599", "CVE-2021-3786"], "vendors": ["Another Brick in the Wall"], "researchers": ["Assaf Carlsbad"]}, {"url": "https://www.sentinelone.com/labs/log4j2-in-the-wild-iranian-aligned-threat-actor-tunnelvision-actively-exploiting-vmware-horizon/", "date": "2022-02-17", "cves": ["CVE-2018-13379"], "vendors": ["Log4j2 In The Wild"], "researchers": ["Amitai Ben Shushan Ehrlich"]}, {"url": "https://www.sentinelone.com/labs/modifiedelephant-apt-and-a-decade-of-fabricating-evidence/", "date": "2022-02-09", "cves": ["CVE-2012-0158", "CVE-2014-1761", "CVE-2013-3906", "CVE-2015-1641", "CVE-2020-26950"], "vendors": ["ModifiedElephant APT and a Decade"], "researchers": ["Tom Hegel"]}, {"url": "https://www.sentinelone.com/labs/firefox-jit-use-after-frees-exploiting-cve-2020-26950/", "date": "2022-02-03", "cves": ["CVE-2020-26950"], "vendors": ["Firefox JIT Use-After-Frees"], "researchers": ["Max Van Amerongen"]}, {"url": "https://www.sentinelone.com/labs/wading-through-muddy-waters-recent-activity-of-an-iranian-state-sponsored-threat-actor/", "date": "2022-01-12", "cves": ["CVE-2020-0688", "CVE-2021-45608"], "vendors": ["Wading Through Muddy Waters"], "researchers": ["Amitai Ben Shushan Ehrlich"]}, {"url": "https://www.sentinelone.com/labs/cve-2021-45608-netusb-rce-flaw-in-millions-of-end-user-routers/", "date": "2022-01-11", "cves": ["CVE-2021-45608"], "vendors": [], "researchers": ["Max Van Amerongen"]}, {"url": "https://www.sentinelone.com/labs/a-threat-hunters-guide-to-the-macs-most-prevalent-adware-infections-2022/", "date": "2022-01-04", "cves": ["CVE-2021-45608"], "vendors": ["A Threat Hunter’s Guide to"], "researchers": ["Phil Stokes"]}, {"url": "https://www.sentinelone.com/labs/usb-over-ethernet-multiple-privilege-escalation-vulnerabilities-in-aws-and-other-major-cloud-services/", "date": "2021-12-07", "cves": ["CVE-2021-42972", "CVE-2021-42973", "CVE-2021-42976", "CVE-2021-42977", "CVE-2021-42979", "CVE-2021-42980", "CVE-2021-42983", "CVE-2021-42986", "CVE-2021-42987", "CVE-2021-42988", "CVE-2021-42990", "CVE-2021-42993", "CVE-2021-42994", "CVE-2021-42996", "CVE-2021-43000", "CVE-2021-43002", "CVE-2021-43003", "CVE-2021-43006", "CVE-2021-43637", "CVE-2021-43638", "CVE-2021-42681", "CVE-2021-42682", "CVE-2021-42683", "CVE-2021-42685", "CVE-2021-42686", "CVE-2021-42687", "CVE-2021-42688"], "vendors": ["USB Over Ethernet"], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/gsoh-no-hunting-for-vulnerabilities-in-virtualbox-network-offloads/", "date": "2021-11-23", "cves": ["CVE-2021-2145", "CVE-2021-2310", "CVE-2021-2442"], "vendors": ["GSOh No! Hunting for"], "researchers": ["Max Van Amerongen"]}, {"url": "https://www.sentinelone.com/labs/infect-if-needed-a-deeper-dive-into-targeted-backdoor-macos-macma/", "date": "2021-11-15", "cves": ["CVE-2021-43267"], "vendors": ["Infect If Needed"], "researchers": ["Phil Stokes"]}, {"url": "https://www.sentinelone.com/labs/tipc-remote-linux-kernel-heap-overflow-allows-arbitrary-code-execution/", "date": "2021-11-04", "cves": ["CVE-2021-43267"], "vendors": ["Remote Linux Kernel Heap Overflow"], "researchers": ["Max Van Amerongen"]}, {"url": "https://www.sentinelone.com/labs/spook-ransomware-prometheus-derivative-names-those-that-pay-shames-those-that-dont/", "date": "2021-10-28", "cves": ["CVE-2021-43267"], "vendors": ["Spook Ransomware"], "researchers": ["Jim Walter"]}, {"url": "https://www.sentinelone.com/labs/defeating-macos-malware-anti-analysis-tricks-with-radare2/", "date": "2021-09-20", "cves": ["CVE-2021-3437"], "vendors": ["Defeating macOS Malware Anti-Analysis Tricks"], "researchers": ["Phil Stokes"]}, {"url": "https://www.sentinelone.com/labs/cve-2021-3437-hp-omen-gaming-hub-privilege-escalation-bug-hits-millions-of-gaming-devices/", "date": "2021-09-14", "cves": ["CVE-2021-3437"], "vendors": [], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/hide-and-seek-new-zloader-infection-chain-comes-with-improved-stealth-and-evasion-mechanisms/", "date": "2021-09-13", "cves": ["CVE-2021-3437"], "vendors": ["Hide and Seek"], "researchers": ["Antonio Pirozzi"]}, {"url": "https://www.sentinelone.com/labs/hotcobalt-new-cobalt-strike-dos-vulnerability-that-lets-you-halt-operations/", "date": "2021-08-04", "cves": ["CVE-2021-36798"], "vendors": ["Hotcobalt - New Cobalt Strike"], "researchers": ["Gal Kristal"]}, {"url": "https://www.sentinelone.com/labs/meteorexpress-mysterious-wiper-paralyzes-iranian-trains-with-epic-troll/", "date": "2021-07-29", "cves": ["CVE-2021-3438"], "vendors": ["MeteorExpress"], "researchers": ["Juan Andrés Guerrero-Saade"]}, {"url": "https://www.sentinelone.com/labs/cve-2021-3438-16-years-in-hiding-millions-of-printers-worldwide-vulnerable/", "date": "2021-07-20", "cves": ["CVE-2021-3438"], "vendors": ["16 Years In Hiding"], "researchers": ["Asaf Amir"]}, {"url": "https://www.sentinelone.com/labs/conti-unpacked-understanding-ransomware-development-as-a-response-to-detection/", "date": "2021-07-08", "cves": ["CVE-2021-3438"], "vendors": ["Conti Unpacked"], "researchers": ["Idan Weizman"]}, {"url": "https://www.sentinelone.com/labs/bypassing-macos-tcc-user-privacy-protections-by-accident-and-design/", "date": "2021-07-01", "cves": ["CVE-2020-9771"], "vendors": [], "researchers": ["Phil Stokes"]}, {"url": "https://www.sentinelone.com/labs/caught-in-the-cloud-how-a-monero-cryptominer-exploits-docker-containers/", "date": "2021-05-20", "cves": ["CVE-2021-21551"], "vendors": ["Caught in the Cloud"], "researchers": ["Marco Figueroa"]}, {"url": "https://www.sentinelone.com/labs/cve-2021-21551-hundreds-of-millions-of-dell-computers-at-risk-due-to-multiple-bios-driver-privilege-escalation-flaws/", "date": "2021-05-04", "cves": ["CVE-2021-21551"], "vendors": ["Hundreds Of Millions Of Dell"], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/relaying-potatoes-another-unexpected-privilege-escalation-vulnerability-in-windows-rpc-protocol/", "date": "2021-04-26", "cves": ["CVE-2020-1113", "CVE-2021-1678", "CVE-2021-21551"], "vendors": ["Relaying Potatoes: Another Unexpected"], "researchers": ["Antonio Cocomazzi"]}, {"url": "https://www.sentinelone.com/labs/20-common-tools-techniques-used-by-macos-threat-actors-malware/", "date": "2021-02-16", "cves": ["CVE-2021-24092"], "vendors": ["20 Common Tools & Techniques"], "researchers": ["Phil Stokes"]}, {"url": "https://www.sentinelone.com/labs/cve-2021-24092-12-years-in-hiding-a-privilege-escalation-vulnerability-in-windows-defender/", "date": "2021-02-10", "cves": ["CVE-2021-24092"], "vendors": ["12 Years in Hiding"], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/zeoticus-2-0-ransomware-with-no-c2-required/", "date": "2021-02-03", "cves": ["CVE-2021-24092"], "vendors": ["Zeoticus 2.0"], "researchers": ["Jim Walter"]}, {"url": "https://www.sentinelone.com/labs/egregor-raas-continues-the-chaos-with-cobalt-strike-and-rclone/", "date": "2020-11-25", "cves": ["CVE-2020-0688", "CVE-2018-8174", "CVE-2018-4878", "CVE-2018-15982"], "vendors": ["Egregor RaaS Continues the Chaos"], "researchers": ["Jim Walter"]}, {"url": "https://www.sentinelone.com/labs/purple-fox-ek-new-cves-steganography-and-virtualization-added-to-attack-flow/", "date": "2020-10-19", "cves": ["CVE-2020-1054", "CVE-2019-0808", "CVE-2020-0674", "CVE-2019-1458"], "vendors": ["Purple Fox EK"], "researchers": ["Gal Kristal"]}, {"url": "https://www.sentinelone.com/labs/threat-intel-cyber-attacks-leveraging-the-covid-19-coronavirus-pandemic/", "date": "2020-09-04", "cves": ["CVE-2019-11510", "CVE-2017-11882"], "vendors": ["Threat Intel"], "researchers": ["Jim Walter"]}, {"url": "https://www.sentinelone.com/labs/case-study-why-you-shouldnt-trust-ntdll-from-kernel-image-load-callbacks/", "date": "2020-08-27", "cves": ["CVE-2020-9361", "CVE-2020-9331"], "vendors": ["Case Study: Why You Shouldn’t"], "researchers": ["Kasif Dekel"]}, {"url": "https://www.sentinelone.com/labs/agent-tesla-old-rat-uses-new-tricks-to-stay-on-top/", "date": "2020-08-10", "cves": ["CVE-2017-11882", "CVE-2017-8570"], "vendors": ["Agent Tesla"], "researchers": ["Jim Walter"]}, {"url": "https://www.sentinelone.com/labs/inside-a-trickbot-cobalt-strike-attack-server/", "date": "2020-06-22", "cves": ["CVE-2020-9332"], "vendors": ["Inside a TrickBot Cobalt Strike"], "researchers": ["Joshua Platt"]}, {"url": "https://www.sentinelone.com/labs/a-click-from-the-backyard-analysis-of-cve-2020-9332-a-vulnerable-usb-redirection-software/", "date": "2020-06-17", "cves": ["CVE-2020-9332"], "vendors": ["A Click from the Backyard"], "researchers": ["Michael Myngerbayev"]}, {"url": "https://www.sentinelone.com/labs/valak-malware-and-the-connection-to-gozi-loader-confcrew/", "date": "2020-06-09", "cves": ["CVE-2020-9332"], "vendors": ["Valak Malware and the Connection"], "researchers": ["Jason Reaves"]}, {"url": "https://www.sentinelone.com/labs/privilege-escalation-macos-malware-the-path-to-root-part-1/", "date": "2019-11-06", "cves": ["CVE-2016-1825", "CVE-2016-7617", "CVE-2018-4193", "CVE-2019-8565", "CVE-2019-8513", "CVE-2019-8805", "CVE-2019-8715", "CVE-2019-8786", "CVE-2019-8807", "CVE-2019-8784", "CVE-2019-8798", "CVE-2019-8509", "CVE-2019-8716", "CVE-2019-8802"], "vendors": [], "researchers": ["Phil Stokes"]}, {"url": "https://www.sentinelone.com/labs/rig-exploit-kit-chain-internals/", "date": "2019-09-12", "cves": ["CVE-2018-8174", "CVE-2018-4878"], "vendors": ["RIG"], "researchers": ["Vitali Kremez"]}, {"url": "https://www.sentinelone.com/labs/robinhood-ransomware-coolmaker-functions-not-so-cool/", "date": "2019-05-09", "cves": ["CVE-2019-0708"], "vendors": ["RobinHood Ransomware “CoolMaker” Functions Not"], "researchers": ["Vitali Kremez"]}]}, {"lab": "Source Incite", "url": "https://srcincite.io", "A": 291, "Q": 247, "V": 35, "R": 8, "researchers": [{"name": "Steven Seeley", "count": 286}, {"name": "Chris Anastasio", "count": 5}, {"name": "Rocco Calvi", "count": 2}, {"name": "Sina Kheirkhah", "count": 2}, {"name": "Yuhao Weng", "count": 2}, {"name": "Zhiniang Peng", "count": 2}, {"name": "Esteban Ruiz", "count": 1}, {"name": "Roberto Suggi Liverani of", "count": 1}], "vendors": [{"name": "Adobe", "count": 47}, {"name": "Foxit", "count": 47}, {"name": "Microsoft", "count": 44}, {"name": "Hewlett Packard Enterprise", "count": 30}, {"name": "ATutor", "count": 22}, {"name": "Cisco", "count": 19}, {"name": "VMWare", "count": 17}, {"name": "Samsung", "count": 11}, {"name": "Oracle", "count": 8}, {"name": "Vanilla", "count": 6}, {"name": "NetMotion", "count": 4}, {"name": "Delta Industrial Automation", "count": 4}, {"name": "Jungo", "count": 4}, {"name": "PTC", "count": 2}, {"name": "Inductive", "count": 2}, {"name": "Zoho", "count": 2}, {"name": "Dedecms", "count": 2}, {"name": "Smarty", "count": 2}, {"name": "Synology", "count": 2}, {"name": "Trackplus", "count": 1}, {"name": "Apache", "count": 1}, {"name": "TP-Link", "count": 1}, {"name": "League", "count": 1}, {"name": "Eclipse", "count": 1}, {"name": "Jetty", "count": 1}, {"name": "zzzcms", "count": 1}, {"name": "Progress", "count": 1}, {"name": "CSCart", "count": 1}, {"name": "ManageEngine", "count": 1}, {"name": "Schneider Electric", "count": 1}, {"name": "Artifex", "count": 1}, {"name": "Docker", "count": 1}, {"name": "Beckoff", "count": 1}, {"name": "Kingsoft", "count": 1}, {"name": "Nitro", "count": 1}], "advisories": [{"url": "https://srcincite.io/advisories/src-2024-0001", "date": "2024-01-15", "cves": ["CVE-2023-50164"], "vendors": ["Trackplus"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0007", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0006", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0005", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25201"], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25200"], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2026-25202"], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2025-0001", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2023-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-50164"], "vendors": ["Apache"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2023-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-28760"], "vendors": ["TP-Link"], "researchers": ["Rocco Calvi", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2023-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0755"], "vendors": ["PTC"], "researchers": ["Chris Anastasio", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2023-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2023-0754"], "vendors": ["PTC"], "researchers": ["Chris Anastasio", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31700"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31678"], "vendors": ["VMWare"], "researchers": ["Sina Kheirkhah", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-39144"], "vendors": ["VMWare"], "researchers": ["Sina Kheirkhah", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31672"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31674"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31673"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31675"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31664"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-31665"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-36126"], "vendors": ["Inductive"], "researchers": ["Chris Anastasio", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-35890"], "vendors": ["Inductive"], "researchers": ["Chris Anastasio", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22961"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22960"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22959"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22957"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22958"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22956"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22955"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-22954"], "vendors": ["VMWare"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-21968"], "vendors": ["Microsoft"], "researchers": ["Yuhao Weng", "Zhiniang Peng"]}, {"url": "https://srcincite.io/advisories/src-2022-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44715"], "vendors": ["Adobe"], "researchers": ["Rocco Calvi", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2022-23863"], "vendors": ["Zoho"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2022-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-44515"], "vendors": ["Zoho"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0029", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Dedecms"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41781"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41784"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41782"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41783"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41785"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-41780"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0022", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Dedecms"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32708"], "vendors": ["League"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0020", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Eclipse"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31965"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31172"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-28169"], "vendors": ["Jetty"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-28450"], "vendors": ["Microsoft"], "researchers": ["Yuhao Weng", "Zhiniang Peng"]}, {"url": "https://srcincite.io/advisories/src-2021-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-32605"], "vendors": ["zzzcms"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-31827"], "vendors": ["Progress"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26412"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-27078"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26854"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26120"], "vendors": ["Smarty"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26119"], "vendors": ["Smarty"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26915", "CVE-2021-24085"], "vendors": ["NetMotion"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26914"], "vendors": ["NetMotion"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26913", "CVE-2021-24085"], "vendors": ["NetMotion"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26912", "CVE-2021-24085"], "vendors": ["NetMotion"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-24085"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-24071"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-26121"], "vendors": ["CSCart"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2021-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2021-1718"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0034", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17120"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0033", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17117", "CVE-2020-17132"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0032", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17132"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0031", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17141"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0030", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17143"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17089"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17017"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17085"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17084"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-17083"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16951"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16979"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16952"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1523"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-1440"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-16875"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-9723"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12248"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-11493"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-12247"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2020-10189"], "vendors": ["ManageEngine"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0010", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Schneider Electric"], "researchers": ["Chris Anastasio", "Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15980"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15980"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15980"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15984"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15984"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15984"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15984"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15980"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2020-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15984"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0083", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-15958"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0082", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8169"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0081", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8167"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0080", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8161"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0079", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8182"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0078", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8168"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0077", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8164"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0076", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8098"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0075", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8099"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0074", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8100"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0073", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8101"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0072", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8102"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0071", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8103"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0070", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8104"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0069", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8106"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0068", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7965"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0067", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7966"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0066", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7967"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0065", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-8002"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0064", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7969"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0063", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7970"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0062", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7971"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0061", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7972"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0060", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7973"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0059", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7974"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0058", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7975"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0057", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-12798"], "vendors": ["Artifex"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0056", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11967"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0055", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11968"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0054", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11980"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0053", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11971"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0052", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11972"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0051", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11973"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0050", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11970"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0049", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11974"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0048", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11975"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0047", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11976"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0046", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11977"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0045", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11978"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0044", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11984"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0043", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11979"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0042", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-11969"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0041", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1825"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0040", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1824"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0039", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1818"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0038", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1822"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0037", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1820"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0036", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1819"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0035", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1823"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0034", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-1821"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0033", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-2557"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0032", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20315"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0031", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20313"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0030", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20309"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20316"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20312"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20314"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20311"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-20310"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7128"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7117"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7116"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7088"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-9889"], "vendors": ["Vanilla"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7087"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7086"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7085"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-7084"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-3305"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-3304"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-0578"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-0577"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2019-0576"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19447"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19418"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19450"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19451"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19449"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19446"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19445"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19448"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19444"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2019-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19452"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0035", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Vanilla"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0034", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-15442"], "vendors": ["Cisco"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0033", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19500"], "vendors": ["Vanilla"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0032", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19499"], "vendors": ["Vanilla"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0031", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-19501"], "vendors": ["Vanilla"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0030", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-18903"], "vendors": ["Vanilla"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-8423"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-12835"], "vendors": ["Adobe"], "researchers": ["Esteban Ruiz"]}, {"url": "https://srcincite.io/advisories/src-2018-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-17781"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-15514"], "vendors": ["Docker"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-1021"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5008"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5015"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-12792"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-12791"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10303"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-10302"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7407"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7406"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5680"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5679"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5677"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5675"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5678"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5676"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-5674"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-17557"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-4925"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2018-7502"], "vendors": ["Beckoff"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0006", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Synology"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0005", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Synology"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0004", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16745"], "vendors": ["Delta Industrial Automation"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16747"], "vendors": ["Delta Industrial Automation"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16749"], "vendors": ["Delta Industrial Automation"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2018-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-16751"], "vendors": ["Delta Industrial Automation"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-14606"], "vendors": ["Kingsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-10309"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-14344"], "vendors": ["Jungo"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-14153"], "vendors": ["Jungo"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-14133"], "vendors": ["Jungo"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-14075"], "vendors": ["Jungo"], "researchers": []}, {"url": "https://srcincite.io/advisories/src-2017-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12541"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12539"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12538"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0020", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12537"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0019", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12536"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0018", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12535"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0017", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12534"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0016", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12533"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0015", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12532"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0014", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12531"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0013", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12530"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0012", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12529"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0011", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12528"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0010", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12527"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0009", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-12540"], "vendors": ["Hewlett Packard Enterprise"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0008", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11220"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0007", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11262"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0006", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-11272"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0005", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-7442"], "vendors": ["Nitro"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0004", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-3054"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-3026"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2017-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2017-2980"], "vendors": ["Adobe"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0045", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7278"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0044", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7265"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0043", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7291"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0042", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-7290"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0041", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-8604"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0040", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3359"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0039", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3374"], "vendors": ["Microsoft"], "researchers": ["Roberto Suggi Liverani of"]}, {"url": "https://srcincite.io/advisories/src-2016-0038", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3363"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0037", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3362"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0036", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3361"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0035", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-0059"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0034", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0033", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0032", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0031", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["Samsung"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0030", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-6477"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0029", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-6475"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0028", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-6478"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0027", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-6230"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0026", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-6476"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0025", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3542"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0024", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3533"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0023", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-3740"], "vendors": ["Foxit"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0022", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-0140"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0021", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-0139"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0020", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0019", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0018", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0017", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0016", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0015", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0014", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0013", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0012", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0011", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0010", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0009", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0008", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0007", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0006", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0005", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0004", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0003", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0002", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2016-2539"], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2016-0000", "date": "<span class=\"null\">—</span>", "cves": [], "vendors": ["ATutor"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2015-0003", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-2653"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2015-0002", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-2607"], "vendors": ["Oracle"], "researchers": ["Steven Seeley"]}, {"url": "https://srcincite.io/advisories/src-2015-0001", "date": "<span class=\"null\">—</span>", "cves": ["CVE-2015-1699"], "vendors": ["Microsoft"], "researchers": ["Steven Seeley"]}]}, {"lab": "Star Labs SG", "url": "https://starlabs.sg", "A": 142, "Q": 145, "V": 15, "R": 24, "researchers": [{"name": "Wei Lei", "count": 15}, {"name": "Ngo Wei Lin", "count": 13}, {"name": "Daniel Lim Wee Soong", "count": 12}, {"name": "Li Jiantao", "count": 12}, {"name": "Shi Ji", "count": 12}, {"name": "Poh Jia Hao", "count": 10}, {"name": "Nguyễn Hoàng Thạch", "count": 10}, {"name": "Peter Nguyễn Vũ Hoàng", "count": 9}, {"name": "Phan Thanh Duy", "count": 8}, {"name": "Lam Jun Rong", "count": 7}, {"name": "Phạm Hồng Phi", "count": 7}, {"name": "Pham Hong Phi", "count": 6}, {"name": "Timeline:", "count": 3}, {"name": "Muhammad Alifa Ramdhan", "count": 3}, {"name": "Billy Jheng Bing Jhong", "count": 3}, {"name": "Ta Dinh Sung", "count": 3}, {"name": "Li Bailin", "count": 3}, {"name": "Meysam Firouzi", "count": 3}, {"name": "Devesh Logendran", "count": 2}, {"name": "Amos Ng", "count": 2}, {"name": "Schuyler Tay", "count": 2}, {"name": "Darell Tan", "count": 1}, {"name": "Alan Chang Enze", "count": 1}, {"name": "Calvin Fong", "count": 1}], "vendors": [{"name": "Chamilo", "count": 10}, {"name": "Bitrix24", "count": 7}, {"name": "Trend Micro", "count": 6}, {"name": "Calibre", "count": 4}, {"name": "Typora", "count": 3}, {"name": "Microsoft", "count": 3}, {"name": "Singtel/Askey", "count": 2}, {"name": "Dolibarr", "count": 2}, {"name": "Razer", "count": 2}, {"name": "Asus", "count": 2}, {"name": "NodeBB", "count": 1}, {"name": "MarkText", "count": 1}, {"name": "OpenCart", "count": 1}, {"name": "Obsidian", "count": 1}, {"name": "Shopware AG", "count": 1}], "advisories": [{"url": "https://starlabs.sg/advisories/24/24-7009/", "date": "2024-07-31", "cves": ["CVE-2024-7009", "CVE-2024-7008", "CVE-2024-1837"], "vendors": ["Calibre"], "researchers": ["Devesh Logendran"]}, {"url": "https://starlabs.sg/advisories/24/24-7008/", "date": "2024-07-31", "cves": ["CVE-2024-7008", "CVE-2024-6782", "CVE-2024-7009"], "vendors": ["Calibre"], "researchers": ["Devesh Logendran"]}, {"url": "https://starlabs.sg/advisories/24/24-6782/", "date": "2024-07-31", "cves": ["CVE-2024-6782", "CVE-2024-6781", "CVE-2024-7008"], "vendors": ["Calibre"], "researchers": ["Amos Ng"]}, {"url": "https://starlabs.sg/advisories/24/24-6781/", "date": "2024-07-31", "cves": ["CVE-2024-6781", "CVE-2024-6782"], "vendors": ["Calibre"], "researchers": ["Amos Ng"]}, {"url": "https://starlabs.sg/advisories/24/24-1838/", "date": "2024-07-22", "cves": ["CVE-2024-1838", "CVE-2024-1837", "CVE-2023-3368"], "vendors": ["Singtel/Askey"], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/24/24-1837/", "date": "2024-07-22", "cves": ["CVE-2024-1837", "CVE-2024-7009", "CVE-2024-1838"], "vendors": ["Singtel/Askey"], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/23/23-4226/", "date": "2023-11-28", "cves": ["CVE-2023-4226", "CVE-2023-4223", "CVE-2023-4224", "CVE-2023-4225", "CVE-2023-34960", "CVE-2023-1713"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-4225/", "date": "2023-11-28", "cves": ["CVE-2023-4225", "CVE-2023-4223", "CVE-2023-4224", "CVE-2023-4226", "CVE-2023-34960"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-4224/", "date": "2023-11-28", "cves": ["CVE-2023-4224", "CVE-2023-4223", "CVE-2023-4225", "CVE-2023-4226", "CVE-2023-34960"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-4223/", "date": "2023-11-28", "cves": ["CVE-2023-4223", "CVE-2023-4224", "CVE-2023-4225", "CVE-2023-4226", "CVE-2023-34960", "CVE-2023-4222"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-4222/", "date": "2023-11-28", "cves": ["CVE-2023-4222", "CVE-2023-4221", "CVE-2023-34960", "CVE-2023-4223"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-4221/", "date": "2023-11-28", "cves": ["CVE-2023-4221", "CVE-2023-4222", "CVE-2023-34960", "CVE-2023-4220"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-4220/", "date": "2023-11-28", "cves": ["CVE-2023-4220", "CVE-2023-3368", "CVE-2023-34960", "CVE-2023-3545", "CVE-2023-4221"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-3545/", "date": "2023-11-28", "cves": ["CVE-2023-3545", "CVE-2023-3533", "CVE-2023-34960", "CVE-2023-4220"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-3533/", "date": "2023-11-28", "cves": ["CVE-2023-3533", "CVE-2023-34960", "CVE-2023-3368", "CVE-2023-3545"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-3368/", "date": "2023-11-28", "cves": ["CVE-2023-3368", "CVE-2023-34960", "CVE-2024-1838", "CVE-2023-3533"], "vendors": ["Chamilo"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-1720/", "date": "2023-11-01", "cves": ["CVE-2023-1720", "CVE-2023-1719", "CVE-2023-4197"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-1719/", "date": "2023-11-01", "cves": ["CVE-2023-1719", "CVE-2023-1718", "CVE-2023-1720"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-1718/", "date": "2023-11-01", "cves": ["CVE-2023-1718", "CVE-2023-1717", "CVE-2023-1719"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-1717/", "date": "2023-11-01", "cves": ["CVE-2023-1717", "CVE-2023-1715", "CVE-2023-1716", "CVE-2023-1718"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-1715/", "date": "2023-11-01", "cves": ["CVE-2023-1715", "CVE-2023-1716", "CVE-2023-1714", "CVE-2023-1717"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-1714/", "date": "2023-11-01", "cves": ["CVE-2023-1714", "CVE-2023-1713", "CVE-2023-1715", "CVE-2023-1716"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-1713/", "date": "2023-11-01", "cves": ["CVE-2023-1713", "CVE-2023-4226", "CVE-2023-1714"], "vendors": ["Bitrix24"], "researchers": ["Lam Jun Rong", "Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-4198/", "date": "2023-10-11", "cves": ["CVE-2023-4198", "CVE-2023-4197", "CVE-2023-30591"], "vendors": ["Dolibarr"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-4197/", "date": "2023-10-11", "cves": ["CVE-2023-4197", "CVE-2023-1720", "CVE-2023-4198"], "vendors": ["Dolibarr"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-30591/", "date": "2023-09-29", "cves": ["CVE-2023-30591", "CVE-2023-4198", "CVE-2023-2315"], "vendors": ["NodeBB"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/23/23-2315/", "date": "2023-09-18", "cves": ["CVE-2023-2315", "CVE-2023-30591", "CVE-2023-32523"], "vendors": ["OpenCart"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-38625/", "date": "2023-08-22", "cves": ["CVE-2023-38625", "CVE-2023-38624", "CVE-2023-2110"], "vendors": ["Trend Micro"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-38624/", "date": "2023-08-22", "cves": ["CVE-2023-38624", "CVE-2023-32530", "CVE-2023-38625"], "vendors": ["Trend Micro"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-32530/", "date": "2023-08-22", "cves": ["CVE-2023-32530", "CVE-2023-32529", "CVE-2023-38624"], "vendors": ["Trend Micro"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-32529/", "date": "2023-08-22", "cves": ["CVE-2023-32529", "CVE-2023-32524", "CVE-2023-32530"], "vendors": ["Trend Micro"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-32524/", "date": "2023-08-22", "cves": ["CVE-2023-32524", "CVE-2023-32523", "CVE-2023-32529"], "vendors": ["Trend Micro"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-32523/", "date": "2023-08-22", "cves": ["CVE-2023-32523", "CVE-2023-2315", "CVE-2023-32524"], "vendors": ["Trend Micro"], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/23/23-2971/", "date": "2023-08-19", "cves": ["CVE-2023-2971", "CVE-2023-2316", "CVE-2023-2318", "CVE-2023-3513"], "vendors": ["Typora"], "researchers": ["Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-2318/", "date": "2023-08-19", "cves": ["CVE-2023-2318", "CVE-2023-2317", "CVE-2023-2971"], "vendors": ["MarkText"], "researchers": ["Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-2317/", "date": "2023-08-19", "cves": ["CVE-2023-2317", "CVE-2023-2316", "CVE-2023-2318"], "vendors": ["Typora"], "researchers": ["Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-2316/", "date": "2023-08-19", "cves": ["CVE-2023-2316", "CVE-2023-2110", "CVE-2023-2317"], "vendors": ["Typora"], "researchers": ["Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-2110/", "date": "2023-08-19", "cves": ["CVE-2023-2110", "CVE-2023-38625", "CVE-2023-2316"], "vendors": ["Obsidian"], "researchers": ["Li Jiantao"]}, {"url": "https://starlabs.sg/advisories/23/23-3514/", "date": "2023-07-14", "cves": ["CVE-2023-3514", "CVE-2023-3513", "CVE-2023-2017"], "vendors": ["Razer"], "researchers": ["Phan Thanh Duy"]}, {"url": "https://starlabs.sg/advisories/23/23-3513/", "date": "2023-07-14", "cves": ["CVE-2023-3513", "CVE-2023-2971", "CVE-2023-3514"], "vendors": ["Razer"], "researchers": ["Phan Thanh Duy"]}, {"url": "https://starlabs.sg/advisories/23/23-2017/", "date": "2023-04-17", "cves": ["CVE-2023-2017", "CVE-2023-22731", "CVE-2023-3514", "CVE-2022-44667"], "vendors": ["Shopware AG"], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/22/22-44668/", "date": "2022-12-13", "cves": ["CVE-2022-44668", "CVE-2022-44667", "CVE-2022-26438"], "vendors": ["Microsoft"], "researchers": ["Timeline:"]}, {"url": "https://starlabs.sg/advisories/22/22-44667/", "date": "2022-12-13", "cves": ["CVE-2022-44667", "CVE-2023-2017", "CVE-2022-44668"], "vendors": ["Microsoft"], "researchers": ["Timeline:"]}, {"url": "https://starlabs.sg/advisories/22/22-36439/", "date": "2022-07-13", "cves": ["CVE-2022-26439", "CVE-2022-26438", "CVE-2021-4206"], "vendors": ["Asus"], "researchers": ["Schuyler Tay"]}, {"url": "https://starlabs.sg/advisories/22/22-36438/", "date": "2022-07-13", "cves": ["CVE-2022-26438", "CVE-2022-44668", "CVE-2022-26439"], "vendors": ["Asus"], "researchers": ["Schuyler Tay"]}, {"url": "https://starlabs.sg/advisories/22/22-0216/", "date": "2022-03-28", "cves": ["CVE-2022-0216", "CVE-2022-0168", "CVE-2022-28730"], "vendors": [], "researchers": ["Muhammad Alifa Ramdhan"]}, {"url": "https://starlabs.sg/advisories/22/22-0168/", "date": "2022-03-28", "cves": ["CVE-2022-0168", "CVE-2021-4207", "CVE-2022-0216"], "vendors": [], "researchers": ["Billy Jheng Bing Jhong"]}, {"url": "https://starlabs.sg/advisories/21/21-4207/", "date": "2022-03-28", "cves": ["CVE-2021-4207", "CVE-2021-4206", "CVE-2022-0168"], "vendors": [], "researchers": ["Billy Jheng Bing Jhong"]}, {"url": "https://starlabs.sg/advisories/21/21-4206/", "date": "2022-03-28", "cves": ["CVE-2021-4206", "CVE-2022-26439", "CVE-2021-4207"], "vendors": [], "researchers": ["Billy Jheng Bing Jhong"]}, {"url": "https://starlabs.sg/advisories/22/22-28730/", "date": "2022-03-14", "cves": ["CVE-2022-28730", "CVE-2021-40369", "CVE-2022-0216", "CVE-2022-26718"], "vendors": [], "researchers": ["Poh Jia Hao"]}, {"url": "https://starlabs.sg/advisories/22/22-26718/", "date": "2022-03-04", "cves": ["CVE-2022-26718", "CVE-2022-28730", "CVE-2022-21877"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/22/22-21877/", "date": "2022-01-11", "cves": ["CVE-2022-21877", "CVE-2022-26718", "CVE-2021-30844"], "vendors": ["Microsoft"], "researchers": ["Timeline:"]}, {"url": "https://starlabs.sg/advisories/21/21-30845/", "date": "2021-09-13", "cves": ["CVE-2021-30845", "CVE-2021-30844", "CVE-2021-30868"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/21/21-30844/", "date": "2021-09-13", "cves": ["CVE-2021-30844", "CVE-2022-21877", "CVE-2021-30845"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/21/21-30868/", "date": "2021-06-18", "cves": ["CVE-2021-30868", "CVE-2021-30845"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/21/21-35409/", "date": "2021-06-10", "cves": ["CVE-2021-35409", "CVE-2021-30836"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35407/", "date": "2021-06-10", "cves": ["CVE-2021-35407"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35406/", "date": "2021-06-10", "cves": ["CVE-2021-35406"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35405/", "date": "2021-06-10", "cves": ["CVE-2021-35406"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35404/", "date": "2021-06-10", "cves": ["CVE-2021-35404"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35403/", "date": "2021-06-10", "cves": ["CVE-2021-35403"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35401/", "date": "2021-06-10", "cves": ["CVE-2021-35401"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35400/", "date": "2021-06-10", "cves": ["CVE-2021-35400", "CVE-2021-30868"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-35402/", "date": "2021-06-09", "cves": ["CVE-2021-35402", "CVE-2021-30836", "CVE-2021-35408"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-30836/", "date": "2021-06-09", "cves": ["CVE-2021-30836"], "vendors": [], "researchers": ["Ta Dinh Sung"]}, {"url": "https://starlabs.sg/advisories/21/21-35408/", "date": "2021-06-08", "cves": ["CVE-2021-35408", "CVE-2021-0956"], "vendors": [], "researchers": ["Daniel Lim Wee Soong"]}, {"url": "https://starlabs.sg/advisories/21/21-0956/", "date": "2021-05-28", "cves": ["CVE-2021-0956", "CVE-2021-35408", "CVE-2021-30745"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-30745/", "date": "2021-05-20", "cves": ["CVE-2021-30745", "CVE-2021-0956", "CVE-2021-0204"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/21/21-0256/", "date": "2021-04-14", "cves": ["CVE-2021-0256", "CVE-2021-0255", "CVE-2021-2321"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-0255/", "date": "2021-04-14", "cves": ["CVE-2021-0255", "CVE-2021-0254", "CVE-2021-0256"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-0254/", "date": "2021-04-14", "cves": ["CVE-2021-0254", "CVE-2021-0223", "CVE-2021-0255"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-0223/", "date": "2021-04-14", "cves": ["CVE-2021-0223", "CVE-2021-0204", "CVE-2021-0254"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-0204/", "date": "2021-04-14", "cves": ["CVE-2021-0204", "CVE-2021-30745", "CVE-2021-0223"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-2321/", "date": "2021-04-06", "cves": ["CVE-2021-2321", "CVE-2021-0256", "CVE-2021-3409"], "vendors": [], "researchers": ["Muhammad Alifa Ramdhan"]}, {"url": "https://starlabs.sg/advisories/21/21-3409/", "date": "2021-03-23", "cves": ["CVE-2021-3409", "CVE-2021-2321", "CVE-2021-34978"], "vendors": [], "researchers": ["Muhammad Alifa Ramdhan"]}, {"url": "https://starlabs.sg/advisories/21/21-34979/", "date": "2021-03-22", "cves": ["CVE-2021-34979", "CVE-2021-34978", "CVE-2021-0950"], "vendors": [], "researchers": []}, {"url": "https://starlabs.sg/advisories/21/21-34978/", "date": "2021-03-22", "cves": ["CVE-2021-34978", "CVE-2021-3409", "CVE-2021-34979"], "vendors": [], "researchers": []}, {"url": "https://starlabs.sg/advisories/21/21-0950/", "date": "2021-03-05", "cves": ["CVE-2021-0950", "CVE-2021-34979", "CVE-2021-33760"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-34503/", "date": "2021-02-27", "cves": ["CVE-2021-34503", "CVE-2021-33760", "CVE-2021-1758"], "vendors": [], "researchers": ["Phan Thanh Duy"]}, {"url": "https://starlabs.sg/advisories/21/21-33760/", "date": "2021-02-27", "cves": ["CVE-2021-33760", "CVE-2021-0950", "CVE-2021-34503"], "vendors": [], "researchers": []}, {"url": "https://starlabs.sg/advisories/21/21-1790/", "date": "2021-02-10", "cves": ["CVE-2021-1790", "CVE-2021-1758", "CVE-2020-24430"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/21/21-1758/", "date": "2021-02-10", "cves": ["CVE-2021-1758", "CVE-2021-34503", "CVE-2021-1790"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/20/20-24430/", "date": "2020-08-21", "cves": ["CVE-2020-24430", "CVE-2021-1790", "CVE-2020-13937"], "vendors": [], "researchers": ["Alan Chang Enze"]}, {"url": "https://starlabs.sg/advisories/20/20-13937/", "date": "2020-07-17", "cves": ["CVE-2020-13937", "CVE-2020-24430", "CVE-2020-0634"], "vendors": [], "researchers": ["Ngo Wei Lin"]}, {"url": "https://starlabs.sg/advisories/21/21-1485/", "date": "2020-06-12", "cves": ["CVE-2021-1485", "CVE-2021-0219", "CVE-2020-15357"], "vendors": [], "researchers": ["Darell Tan"]}, {"url": "https://starlabs.sg/advisories/21/21-0219/", "date": "2020-06-12", "cves": ["CVE-2021-0219", "CVE-2021-0218", "CVE-2021-1485"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/21/21-0218/", "date": "2020-06-12", "cves": ["CVE-2021-0218", "CVE-2020-1664", "CVE-2021-0219"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/20/20-1664/", "date": "2020-06-12", "cves": ["CVE-2020-1664", "CVE-2020-0634", "CVE-2021-0218"], "vendors": [], "researchers": ["Nguyễn Hoàng Thạch"]}, {"url": "https://starlabs.sg/advisories/20/20-0634/", "date": "2020-06-12", "cves": ["CVE-2020-0634", "CVE-2020-13937", "CVE-2020-1664"], "vendors": [], "researchers": ["Meysam Firouzi"]}, {"url": "https://starlabs.sg/advisories/20/20-25546/", "date": "2020-05-22", "cves": ["CVE-2020-25546", "CVE-2020-25545", "CVE-2020-2575"], "vendors": [], "researchers": ["Li Bailin"]}, {"url": "https://starlabs.sg/advisories/20/20-25545/", "date": "2020-05-22", "cves": ["CVE-2020-25545", "CVE-2020-15357", "CVE-2020-25546"], "vendors": [], "researchers": ["Li Bailin"]}, {"url": "https://starlabs.sg/advisories/20/20-15357/", "date": "2020-05-22", "cves": ["CVE-2020-15357", "CVE-2020-25545", "CVE-2020-25546", "CVE-2021-1485"], "vendors": [], "researchers": ["Li Bailin"]}, {"url": "https://starlabs.sg/advisories/20/20-2894/", "date": "2020-04-30", "cves": ["CVE-2020-2894", "CVE-2020-2758", "CVE-2020-10907"], "vendors": [], "researchers": ["Pham Hong Phi"]}, {"url": "https://starlabs.sg/advisories/20/20-2758/", "date": "2020-04-30", "cves": ["CVE-2020-2758", "CVE-2020-2748", "CVE-2020-2894"], "vendors": [], "researchers": ["Calvin Fong"]}, {"url": "https://starlabs.sg/advisories/20/20-2748/", "date": "2020-04-30", "cves": ["CVE-2020-2748", "CVE-2020-2575", "CVE-2020-2758"], "vendors": [], "researchers": ["Pham Hong Phi"]}, {"url": "https://starlabs.sg/advisories/20/20-2575/", "date": "2020-04-30", "cves": ["CVE-2020-2575", "CVE-2020-25546", "CVE-2020-2748"], "vendors": [], "researchers": ["Pham Hong Phi"]}, {"url": "https://starlabs.sg/advisories/20/20-10907/", "date": "2020-04-16", "cves": ["CVE-2020-10907", "CVE-2020-2894", "CVE-2020-3800"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/20/20-9816/", "date": "2020-03-17", "cves": ["CVE-2020-9816", "CVE-2020-3801", "CVE-2020-2682"], "vendors": [], "researchers": ["Peter Nguyễn Vũ Hoàng"]}, {"url": "https://starlabs.sg/advisories/20/20-3801/", "date": "2020-03-17", "cves": ["CVE-2020-3801", "CVE-2020-3800", "CVE-2020-9816"], "vendors": [], "researchers": ["Phan Thanh Duy"]}, {"url": "https://starlabs.sg/advisories/20/20-3800/", "date": "2020-03-17", "cves": ["CVE-2020-3800", "CVE-2020-10907", "CVE-2020-3801"], "vendors": [], "researchers": ["Phan Thanh Duy"]}, {"url": "https://starlabs.sg/advisories/20/20-2682/", "date": "2020-01-15", "cves": ["CVE-2020-2682", "CVE-2020-9816", "CVE-2020-2674"], "vendors": [], "researchers": ["Pham Hong Phi"]}, {"url": "https://starlabs.sg/advisories/20/20-2674/", "date": "2020-01-14", "cves": ["CVE-2020-2674", "CVE-2020-2682", "CVE-2019-16452"], "vendors": [], "researchers": ["Pham Hong Phi"]}, {"url": "https://starlabs.sg/advisories/19/19-16452/", "date": "2019-12-10", "cves": ["CVE-2019-16452", "CVE-2020-2674", "CVE-2020-0889"], "vendors": [], "researchers": ["Phan Thanh Duy"]}, {"url": "https://starlabs.sg/advisories/20/20-2902/", "date": "2019-12-04", "cves": ["CVE-2020-2902", "CVE-2020-0889", "CVE-2020-0961"], "vendors": [], "researchers": ["Pham Hong Phi"]}, {"url": "https://starlabs.sg/advisories/20/20-0889/", "date": "2019-12-04", "cves": ["CVE-2020-0889", "CVE-2019-16452", "CVE-2020-2902"], "vendors": [], "researchers": ["Shi Ji"]}, {"url": "https://starlabs.sg/advisories/20/20-0961/", "date": "2019-11-13", "cves": ["CVE-2020-0961", "CVE-2020-2902", "CVE-2019-1406"], "vendors": [], "researchers": ["Shi Ji"]}, {"url": "https://starlabs.sg/advisories/19/19-1406/", "date": "2019-11-12", "cves": ["CVE-2019-1406", "CVE-2020-0961", "CVE-2019-2984"], "vendors": [], "researchers": ["Shi Ji", "Meysam Firouzi"]}, {"url": "https://starlabs.sg/advisories/19/19-3031/", "date": "2019-10-20", "cves": ["CVE-2019-3031", "CVE-2019-3026", "CVE-2019-8220"], "vendors": [], "researchers": ["Phạm Hồng Phi"]}, {"url": "https://starlabs.sg/advisories/19/19-3026/", "date": "2019-10-20", "cves": ["CVE-2019-3026", "CVE-2019-3005", "CVE-2019-3031"], "vendors": [], "researchers": ["Phạm Hồng Phi"]}, {"url": "https://starlabs.sg/advisories/19/19-3005/", "date": "2019-10-20", "cves": ["CVE-2019-3005", "CVE-2019-3002", "CVE-2019-3026"], "vendors": [], "researchers": ["Phạm Hồng Phi"]}, {"url": "https://starlabs.sg/advisories/19/19-3002/", "date": "2019-10-20", "cves": ["CVE-2019-3002", "CVE-2019-2984", "CVE-2019-3005"], "vendors": [], "researchers": ["Phạm Hồng Phi"]}, {"url": "https://starlabs.sg/advisories/19/19-2984/", "date": "2019-10-20", "cves": ["CVE-2019-2984", "CVE-2019-1406", "CVE-2019-3002"], "vendors": [], "researchers": ["Phạm Hồng Phi"]}, {"url": "https://starlabs.sg/advisories/19/19-8221/", "date": "2019-10-15", "cves": ["CVE-2019-8221", "CVE-2019-8220", "CVE-2019-1250"], "vendors": [], "researchers": ["Ta Dinh Sung"]}, {"url": "https://starlabs.sg/a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment