First published: Wed Feb 22 2023(Updated: )
Unauthenticated, stored cross-site scripting in the display of alarm reduction keys in multiple versions of OpenNMS Horizon and Meridian could allow an attacker access to confidential session information. Users should upgrade to Meridian 2023.1.0 or newer, or Horizon 31.0.4. Meridian and Horizon installation instructions state that they are intended for installation within an organization's private networks and should not be directly accessible from the Internet.
Credit: security@opennms.com
Affected Software | Affected Version | How to fix |
---|---|---|
OpenNMS Horizon | <31.0.4 | |
OpenNMS Meridian | <2023.1.0 |
https://github.com/OpenNMS/opennms/pull/5506/files Upgrade to a newer version of Meridian or Horizon. Or change the details.jsp file as follows: Change: <th class="col-md-1">Reduction Key</th> <td class="col-md-11" colspan="3"> <% if (alarm.getReductionKey() != null) {%> <%=alarm.getReductionKey()%> <% } else {%> <% }%> To: <th class="col-md-1">Reduction Key</th> <td class="col-md-11" colspan="3"> <% if (alarm.getReductionKey() != null) {%> <%=WebSecurityUtils.sanitizeString(alarm.getReductionKey())%> <% } else {%> <% }%> https://github.com/OpenNMS/opennms/pull/5506/files https://github.com/OpenNMS/opennms/pull/5506/files
Sign up to SecAlerts for real-time vulnerability data matched to your software, aggregated from hundreds of sources.
CVE-2023-0846 is an unauthenticated stored cross-site scripting vulnerability found in the display of alarm reduction keys in multiple versions of OpenNMS Horizon and Meridian.
CVE-2023-0846 has a severity rating of 6.1, which is classified as medium.
CVE-2023-0846 affects OpenNMS Horizon versions up to and including 31.0.4, and OpenNMS Meridian versions up to and including 2023.1.0.
To fix CVE-2023-0846, users should upgrade to OpenNMS Meridian 2023.1.0 or newer, or OpenNMS Horizon 31.0.4.
CVE-2023-0846 is classified under CWE-79, which is Cross-Site Scripting (XSS).