Fixed
Details
Assignee
Jesse WhiteJesse WhiteReporter
Jeff GehlbachJeff GehlbachLabels
Components
Sprint
NoneFix versions
Affects versions
Priority
Major
Details
Details
Assignee
Jesse White
Jesse WhiteReporter
Jeff Gehlbach
Jeff GehlbachLabels
Components
Sprint
None
Fix versions
Affects versions
Priority
PagerDuty
PagerDuty
PagerDuty
Created October 6, 2017 at 2:24 PM
Updated January 31, 2023 at 7:25 PM
Resolved October 17, 2017 at 4:40 PM
Affected Product
OpenNMS Horizon
https://www.opennms.org/en
V 20.1.0 (April 12, 2017)
Impact
OpenNMS receives SNMP traps from hosts that are present in the node list. These trap messages could include data of various types, including strings. However, the filtering method for this data is insufficient, which could allow an attacker to perform stored cross-site scripting attacks. The attacker would need network access to port 162/UDP on the server; once the OpenNMS user is logged and visits a specific page, the vulnerability will be triggered.
Background
OpenNMS is a carrier-grade, highly integrated, open source platform designed for building network monitoring solutions. There are two distributions of OpenNMS: Meridian and Horizon. Using Meridian is advisable for enterprises and businesses looking for stability and long term support. Horizon is the place where innovation happens quickly and is ideal for monitoring new technologies and IT ecosystems. Both distributions are completely open source.1
Technical Details
The user interaction required to perform this attack is minimal. The attacker would only need the logged OpenNMS user to access any section that contains nodes information (nodes, events, notifications, alarms, reports, etc...). At that point, the malicious payload will be executed. The outcome of the attack depends on the privileges of the victim. In the worst-case scenario, if a user with admin privileges is compromised, the attacker may obtain remote privileged shell on the system via different methods.
The vulnerability lies in the way OpenNMS has implemented its XSS filter. The following regular expressions are used:
(See WebSecurityUtils.java line 52, applied in lines 92-96)
This approach only detects some specific XSS patterns, skipping most of it. For example, the following trap will evade this filter (XSS in Firefox):
or (XSS in Chrome/Safari/any WebKit browser):
, where 192.168.0.1 is the host on the network with OpenNMS.
This will lead to the following XSS:
(Javascript popup containing string
123
)Timeline
Oct 4, 2017: Researchers discovers vulnerability
Oct XX, 2017: IOActive contacts the vendor