Description
Isotope eCommerce through 2.9.10 derives order identifiers from uniqid() instead of a cryptographically secure source, allowing unauthenticated attackers to guess identifiers. Guest orders lack ownership verification, enabling attackers to access order details including billing address, customer information, and purchased files by supplying a guessed uid parameter.
Published: 2026-09-23
Score: 8.2 High
EPSS: n/a
KEV: No
Impact: Remote Data Exposure
Action: Patch System
AI Analysis

Impact

The vulnerability in Isotope eCommerce versions up to 2.9.10 allows the generation of order identifiers using the non-cryptographically secure uniqid() function. As guest orders are not protected by ownership checks, an attacker can guess these identifiers through simple enumeration of the uid parameter. Successful guesses grant unauthorized access to a buyer's order details, including the billing address, customer information, and any purchased files. The weakness arises from using an insecure random number generator (CWE-330), which permits predictable identifiers and a straightforward read‑of‑private‑data attack.

Affected Systems

The affected platform is Isotope eCommerce's core module. No specific version numbers were listed beyond a maximum of 2.9.10; earlier releases under the isotope-core package are also vulnerable. The vulnerability does not specify operating system reliance and is present purely in the PHP code that handles order creation and detail retrieval.

Risk and Exploitability

With a CVSS score of 8.2 the issue is classified as high severity. EPSS information is not provided, and the vulnerability is not part of the CISA Known Exploited Vulnerabilities catalog. The likely attack vector is remote: an unprivileged attacker can issue a standard web request containing a guessed uid value and obtain sensitive order information. Because the identifiers are non‑cryptographically random, an attacker only needs to brute‑force a limited keyspace, making exploitation quite feasible if the system exposes order detail URLs. The absence of authentication checks for guest orders exponentially increases the risk, allowing a wide class of unauthenticated attacks without needing prior knowledge of an account.

Generated by OpenCVE AI on September 23, 2026 at 16:33 UTC.

Remediation

No vendor fix or workaround currently provided.

OpenCVE Recommended Actions

  • Upgrade to the latest Isotope eCommerce release that replaces uniqid() with a cryptographically secure random order identifier generator.
  • If an update is unavailable, disable guest access to order detail pages or enforce session‑based authentication before rendering order information.
  • Modify the server‑side order retrieval logic to validate that the requesting user is the owner of the order, or at minimum confirm that the uid value originates from a secure source.

Generated by OpenCVE AI on September 23, 2026 at 16:33 UTC.

Tracking

Sign in to view the affected projects.

Advisories

No advisories yet.

History

Wed, 23 Sep 2026 16:30:00 +0000

Type Values Removed Values Added
Metrics ssvc

{'options': {'Automatable': 'no', 'Exploitation': 'poc', 'Technical Impact': 'partial'}, 'version': '2.0.3'}


Wed, 23 Sep 2026 15:00:00 +0000

Type Values Removed Values Added
Description Isotope eCommerce through 2.9.10 derives order identifiers from uniqid() instead of a cryptographically secure source, allowing unauthenticated attackers to guess identifiers. Guest orders lack ownership verification, enabling attackers to access order details including billing address, customer information, and purchased files by supplying a guessed uid parameter.
Title Isotope eCommerce through 2.9.10 Weak Order Identifier Generation
Weaknesses CWE-330
References
Metrics cvssV3_1

{'score': 5.9, 'vector': 'CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N'}

cvssV4_0

{'score': 8.2, 'vector': 'CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N'}


Subscriptions

No data.

cve-icon MITRE

Status: PUBLISHED

Assigner: VulnCheck

Published:

Updated: 2026-09-23T15:19:52.290Z

Reserved: 2026-09-23T13:43:56.862Z

Link: CVE-2026-96599

cve-icon Vulnrichment

Updated: 2026-09-23T15:19:49.429Z

cve-icon NVD

Status : Received

Published: 2026-09-23T15:17:33.237

Modified: 2026-09-23T16:16:49.690

Link: CVE-2026-96599

cve-icon Redhat

No data.

cve-icon OpenCVE Enrichment

Updated: 2026-09-23T16:45:03Z

Weaknesses
  • CWE-330

    Use of Insufficiently Random Values