The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-37505

CVE-2026-37505: V2Board SQL Injection Vulnerability

CVE-2026-37505 is a SQL injection flaw in V2Board through 1.7.4 affecting the ORDER BY clause. Authenticated admins can exploit this to access sensitive data. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-37505 Overview

CVE-2026-37505 is a SQL injection vulnerability in V2Board through version 1.7.4. The flaw resides in app/Http/Controllers/Admin/UserController.php, where the sort parameter from user input flows directly into User::orderBy($sort, $sortType) without validation. An authenticated administrator can sort users by any database column, including password and remember_token. The ordering behavior leaks information about sensitive column values, enabling row-by-row inference of credential material. The issue is classified under CWE-89: Improper Neutralization of Special Elements used in an SQL Command.

Critical Impact

Authenticated administrators can infer the contents of sensitive columns such as password hashes and session tokens by abusing the unvalidated ORDER BY clause.

Affected Products

  • V2Board through version 1.7.4
  • The vulnerable endpoint is exposed via app/Http/Controllers/Admin/UserController.php
  • Deployments using the default admin user listing functionality

Discovery Timeline

  • 2026-05-01 - CVE-2026-37505 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-37505

Vulnerability Analysis

The vulnerability is an ORDER BY injection in V2Board's administrative user listing controller. V2Board uses Laravel's Eloquent ORM, and the controller passes the user-supplied sort parameter directly to User::orderBy($sort, $sortType). Eloquent does not parameterize column identifiers, so the sort value is concatenated into the generated SQL ORDER BY clause.

Because administrators control the column used for ordering, they can specify any column on the users table, including password, remember_token, email, and other sensitive fields. Sorting on these columns reveals their relative ordering across rows, which an attacker can convert into character-level disclosure through repeated requests and binary search style techniques. The vulnerability requires authenticated administrator privileges, but compromised or rogue admin accounts can extract credential material that is otherwise stored as hashes.

Root Cause

The root cause is missing allowlist validation on the sort request parameter before it reaches the ORM. The controller does not constrain sort to a fixed set of safe columns such as id, created_at, or email. Any string accepted by Eloquent's orderBy is passed through to the database, breaking the principle of treating identifiers as untrusted input.

Attack Vector

Exploitation requires network access to the admin panel and valid administrator credentials. The attacker issues repeated requests to the user listing endpoint with the sort parameter set to a sensitive column and observes the resulting row order. By combining ordering observations with filters or pagination, the attacker reconstructs values stored in target columns. Refer to the published GitHub Gist proof-of-concept script and the V2Board project repository for technical details. No exploitation code is reproduced here.

Detection Methods for CVE-2026-37505

Indicators of Compromise

  • Repeated admin requests to the user listing endpoint with varying sort parameter values referencing sensitive columns such as password or remember_token.
  • Bursts of paginated admin queries from a single session within short time windows, consistent with automated ordering oracle scripts.
  • Admin sessions issuing sort values that do not match any column exposed by the legitimate UI.

Detection Strategies

  • Inspect web server and application logs for sort=password, sort=remember_token, or other unexpected column names in admin URLs.
  • Enable Laravel query logging in non-production tiers to capture ORDER BY clauses that reference sensitive columns.
  • Correlate high-volume admin list requests with low result-set diversity, which is typical of inference-based extraction.

Monitoring Recommendations

  • Alert when the same admin account issues more than a small threshold of user listing requests per minute.
  • Forward web access logs and database audit logs to a central data lake to enable cross-source correlation.
  • Review admin account activity baselines and flag deviations in endpoint usage patterns.

How to Mitigate CVE-2026-37505

Immediate Actions Required

  • Restrict access to the V2Board admin panel using network controls, VPN, or IP allowlisting until a fix is applied.
  • Audit administrator accounts and rotate credentials and remember_token values for any account that may have been abused.
  • Apply an allowlist on the sort parameter in app/Http/Controllers/Admin/UserController.php to permit only known safe columns.

Patch Information

No official vendor advisory URL is listed in the NVD entry at the time of publication. Monitor the V2Board GitHub repository for releases addressing this issue and upgrade beyond version 1.7.4 once a fixed release is available.

Workarounds

  • Implement an explicit allowlist that maps user-supplied sort values to a fixed set of safe column identifiers before calling orderBy.
  • Reject requests where sort does not match the allowlist and log the event for review.
  • Reduce the blast radius by limiting which administrator roles can access the affected user listing endpoint.
bash
# Configuration example: allowlist enforcement pattern in the controller
# Replace direct use of $request->input('sort') with a validated value
# $allowed = ['id', 'email', 'created_at'];
# $sort = in_array($request->input('sort'), $allowed, true) ? $request->input('sort') : 'id';
# $sortType = $request->input('sort_type') === 'asc' ? 'asc' : 'desc';
# User::orderBy($sort, $sortType)

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechV2board

  • SeverityMEDIUM

  • CVSS Score4.9

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Gist PoC Script

  • GitHub Project Repository
  • Related CVEs
  • CVE-2026-37503: V2Board XSS Vulnerability via Theme Config

  • CVE-2026-37504: V2Board Information Disclosure Vulnerability

  • CVE-2026-39912: V2Board/Xboard Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English