Skip to main content

V2Board CVE-2026-37505

| EUVDEUVD-2026-26669 MEDIUM
SQL Injection (CWE-89)
2026-05-01 mitre
4.9
CVSS 3.1 · NVD
Share

Severity by source

NVD PRIMARY
4.9 MEDIUM
AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N

Primary rating from NVD · only source for this CVE.

CVSS VectorNVD

CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
Attack Vector
Network
Attack Complexity
Low
Privileges Required
High
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
None
Availability
None

Lifecycle Timeline

4
Analysis Generated
May 01, 2026 - 16:30 vuln.today
EUVD ID Assigned
May 01, 2026 - 16:00 euvd
EUVD-2026-26669
Analysis Generated
May 01, 2026 - 16:00 vuln.today
CVE Published
May 01, 2026 - 00:00 nvd
MEDIUM 4.9

DescriptionCVE.org

SQL Injection via ORDER BY clause in V2Board thru 1.7.4. In app/Http/Controllers/Admin/UserController.php, the sort parameter from user input is passed directly to User::orderBy($sort, $sortType) without validation. An authenticated admin can sort users by any database column including password, remember_token, and other sensitive fields, enabling information disclosure through ordering analysis.

AnalysisAI

Authenticated admin users in V2Board through version 1.7.4 can exploit unsanitized sort parameters in the user management interface to disclose sensitive database information including password hashes and authentication tokens through ORDER BY-based information disclosure. The vulnerability requires admin privileges and does not enable data modification or service disruption, but allows attackers with administrative access to extract confidential user data by analyzing sort order patterns.

Technical ContextAI

V2Board is a PHP-based subscription management application. The vulnerability exists in app/Http/Controllers/Admin/UserController.php where the sort parameter is directly passed to Laravel's User::orderBy() method without validation or sanitization. While this is technically SQL injection in the ORDER BY clause, the impact is limited to information disclosure rather than arbitrary query execution, because ORDER BY accepts only column names and sort direction without string concatenation into query predicates. The CWE classification is not provided, but this follows CWE-89 (SQL Injection) patterns where unsanitized input influences SQL query structure. An attacker with admin credentials can request the user list with manipulated sort parameters pointing to sensitive columns like 'password' or 'remember_token', and infer data values through response ordering or timing analysis.

RemediationAI

Upgrade V2Board to a patched version beyond 1.7.4 if available from the vendor or community repository. If no patched version is immediately available, implement input validation in UserController.php by whitelisting allowed sort columns to a predefined list (e.g., ['id', 'email', 'created_at', 'name']) and rejecting any sort parameter not in the whitelist before passing to orderBy(). Additionally, restrict the sort parameter to alphanumeric characters and underscore only using a regex pattern like /^[a-z_]+$/i. Apply these controls at the controller level before any database query construction. As a temporary compensating control, restrict admin panel access to a specific IP range or require additional authentication layer (VPN, bastion host) to reduce the window for credential compromise attacks. Monitor admin API logs for unusual sort parameter values or patterns suggesting enumeration attempts. No vendor-released patch version is confirmed in the provided data.

More in PHP

View all
CVE-2012-1823 CRITICAL POC
9.8 May 11

sapi/cgi/cgi_main.c in PHP before 5.3.12 and 5.4.x before 5.4.2, when configured as a CGI script (aka php-cgi), does not

CVE-2016-1555 CRITICAL POC
9.8 Apr 21

(1) boardData102.php, (2) boardData103.php, (3) boardDataJP.php, (4) boardDataNA.php, and (5) boardDataWW.php in Netgear

CVE-2024-11680 CRITICAL POC
9.8 Nov 26

ProjectSend versions prior to r1720 are affected by an improper authentication vulnerability. Rated critical severity (C

CVE-2025-49113 CRITICAL POC
9.9 Jun 02

Roundcube Webmail contains a critical PHP object deserialization vulnerability (CVE-2025-49113, CVSS 9.9) that allows au

CVE-2017-9841 CRITICAL POC
9.8 Jun 27

Util/PHP/eval-stdin.php in PHPUnit before 4.8.28 and 5.x before 5.6.3 allows remote attackers to execute arbitrary PHP c

CVE-2025-0108 HIGH POC
8.8 Feb 12

Palo Alto Networks PAN-OS management web interface contains an authentication bypass allowing unauthenticated attackers

CVE-2021-25298 HIGH POC
8.8 Feb 15

Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re

CVE-2021-25296 HIGH POC
8.8 Feb 15

Nagios XI version xi-5.7.5 is affected by OS command injection. Rated high severity (CVSS 8.8), this vulnerability is re

CVE-2013-4983 CRITICAL POC
10.0 Sep 10

The get_referers function in /opt/ws/bin/sblistpack in Sophos Web Appliance before 3.7.9.1 and 3.8 before 3.8.1.1 allows

CVE-2023-6553 CRITICAL POC
9.8 Dec 15

The Backup Migration plugin for WordPress is vulnerable to Remote Code Execution in all versions up to, and including, 1

CVE-2024-46506 CRITICAL POC
10.0 May 13

NetAlertX (formerly PiAlert) versions 23.01.14 through 24.x before 24.10.12 allow unauthenticated command injection thro

CVE-2024-8353 CRITICAL POC
9.8 Sep 28

The GiveWP - Donation Plugin and Fundraising Platform plugin for WordPress is vulnerable to PHP Object Injection in all

Share

CVE-2026-37505 vulnerability details – vuln.today

This site uses cookies essential for authentication and security. No tracking or analytics cookies are used. Privacy Policy