A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-26990

CVE-2026-26990: LibreNMS SQL Injection Vulnerability

CVE-2026-26990 is a time-based blind SQL injection flaw in LibreNMS that allows authenticated attackers to manipulate database queries via the address parameter. This article covers technical details, affected versions, and mitigation.

Updated: May 14, 2026

CVE-2026-26990 Overview

CVE-2026-26990 is a time-based blind SQL injection vulnerability in LibreNMS, an auto-discovering PHP/MySQL/SNMP network monitoring tool. The flaw resides in address-search.inc.php, where the address parameter is concatenated directly into an SQL query without parameter binding. Any authenticated user can supply a crafted subnet prefix to manipulate query logic and extract database contents through time-based conditional responses. The vulnerability affects LibreNMS versions 25.12.0 and earlier, and the issue is fixed in version 26.2.0. The weakness is classified under CWE-89: Improper Neutralization of Special Elements used in an SQL Command.

Critical Impact

Authenticated attackers can infer database contents, including credentials and monitoring configuration data, through blind SQL injection across the network attack vector.

Affected Products

  • LibreNMS versions 25.12.0 and earlier
  • LibreNMS address-search.inc.php component
  • Fixed in LibreNMS version 26.2.0

Discovery Timeline

  • 2026-02-20 - CVE-2026-26990 published to NVD
  • 2026-02-20 - Last updated in NVD database

Technical Details for CVE-2026-26990

Vulnerability Analysis

The vulnerability stems from unsafe SQL query construction within address-search.inc.php. When the application processes the address request parameter, it parses a subnet prefix value and concatenates that value directly into a SQL statement. The query executes without prepared statements or parameterized binding, leaving the input under attacker control.

An authenticated attacker submits a crafted prefix that contains SQL syntax, including conditional expressions paired with functions such as SLEEP() or BENCHMARK(). The database server pauses execution when the injected condition evaluates true, producing a measurable delay in the HTTP response. By varying the injected condition across requests, the attacker extracts data one bit at a time.

LibreNMS stores SNMP credentials, device inventory, alert rules, and user authentication data. Successful exploitation can disclose this information and provide pivoting opportunities into monitored network infrastructure.

Root Cause

The root cause is direct string concatenation of user-supplied input into a SQL query. The vulnerable code path accepts the address parameter, derives the prefix component, and inserts it into the query body without escaping or binding. The fix in commit 15429580baba03ed1dd377bada1bde4b7a1175a1 replaces the unsafe concatenation with proper parameterized handling. Review the GitHub Commit Fix and GitHub Security Advisory GHSA-79q9-wc6p-cf92 for technical details.

Attack Vector

Exploitation requires valid LibreNMS authentication and network access to the web interface. The attacker submits HTTP requests to the address search endpoint with the address parameter containing the injected payload. No user interaction or elevated privileges are required beyond an authenticated account. Because LibreNMS is commonly deployed in operations networks with broad internal access, low-privilege monitoring users may be sufficient to compromise the database.

No proof-of-concept code is available in public references. The vulnerability mechanism is documented in the GitHub Pull Request.

Detection Methods for CVE-2026-26990

Indicators of Compromise

  • HTTP requests to LibreNMS endpoints containing the address parameter with SQL keywords such as SLEEP, BENCHMARK, IF, CASE, or UNION
  • Anomalous response times on address search requests, particularly delays in multiples of seconds
  • MySQL slow query log entries showing long-running queries originating from the LibreNMS address search code path
  • Repeated authenticated requests from a single session enumerating database structures byte by byte

Detection Strategies

  • Inspect web server access logs for address-search.inc.php requests containing SQL syntax tokens in the address query parameter
  • Correlate authenticated LibreNMS session activity with database query duration spikes
  • Apply WAF or reverse proxy signatures targeting time-based blind SQL injection patterns against the LibreNMS web tier
  • Audit LibreNMS user accounts for unexpected access patterns or session activity from unusual source addresses

Monitoring Recommendations

  • Enable MySQL general query logging or slow query logging on the LibreNMS database during investigation windows
  • Alert on HTTP request latency outliers on the LibreNMS address search route
  • Forward LibreNMS web server, application, and database logs to a centralized analytics platform for correlation
  • Track failed and successful authentication events to identify low-privilege accounts performing reconnaissance

How to Mitigate CVE-2026-26990

Immediate Actions Required

  • Upgrade LibreNMS to version 26.2.0 or later, which contains the fix from commit 15429580baba03ed1dd377bada1bde4b7a1175a1
  • Audit existing LibreNMS user accounts and remove unused or dormant credentials
  • Rotate SNMP community strings and device credentials stored in LibreNMS if compromise is suspected
  • Review web server and database logs for prior exploitation attempts referencing the address parameter

Patch Information

The vendor fix is available in LibreNMS 26.2.0. The patch replaces unsafe string concatenation with parameterized SQL binding in address-search.inc.php. Administrators should apply the upgrade through standard LibreNMS update procedures documented at the GitHub Security Advisory GHSA-79q9-wc6p-cf92.

Workarounds

  • Restrict access to the LibreNMS web interface to trusted management networks using firewall or reverse proxy rules
  • Enforce strong authentication and minimize the number of accounts with access to LibreNMS
  • Deploy a web application firewall rule that blocks SQL syntax tokens in the address parameter until patching is complete
  • Place the LibreNMS database behind strict network segmentation to limit lateral access if data is disclosed
bash
# Configuration example: upgrade LibreNMS to the patched release
cd /opt/librenms
sudo -u librenms git fetch --tags
sudo -u librenms git checkout 26.2.0
sudo -u librenms ./daily.sh
sudo systemctl restart php-fpm nginx

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechLibrenms

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.00%

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

  • GitHub Security Advisory GHSA-79q9-wc6p-cf92
  • Vendor Resources
  • GitHub Commit Fix
  • Related CVEs
  • CVE-2026-26988: LibreNMS SQL Injection Vulnerability

  • CVE-2020-36947: LibreNMS SQL Injection Vulnerability

  • CVE-2024-51092: LibreNMS RCE Vulnerability

  • CVE-2026-30480: LibreNMS Path Traversal 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