CVE-2021-47763
BaseFortify
Publication date: 2026-01-15
Last updated on: 2026-01-15
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| aimeos | aimeos_laravel | 2021.10 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a SQL injection flaw in the Aimeos 2021.10 LTS Laravel ecommerce platform. It occurs in the JSON API's 'sort' GET parameter, which attackers can manipulate to inject malicious SQL queries. By crafting specific requests to the jsonapi/review endpoint and altering the 'sort' parameter, attackers can cause the system to reveal database table and column names, potentially exposing sensitive data. [1]
How can this vulnerability impact me? :
The vulnerability can allow attackers to perform unauthorized database queries, leading to exposure of database schema information such as table and column names. This can facilitate further attacks, unauthorized data access, and potential data breaches, compromising the confidentiality and integrity of your ecommerce platform's data. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending crafted GET requests to the jsonapi/review endpoint, manipulating the 'sort' parameter to test for SQL injection. For example, you can use curl commands like: curl 'https://your-target-domain/default/jsonapi/review?sort=--' or curl 'https://your-target-domain/default/jsonapi/review?sort=-ctime' to observe if the response reveals database errors or table/column names, indicating the presence of the SQL injection vulnerability. [1]