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-2022-45899

CVE-2022-45899: Nokia BMC Unauthenticated RCE Vulnerability

CVE-2022-45899 is an unauthenticated remote code execution vulnerability in Nokia Broadcast Message Center (BMC) that allows attackers to execute OS commands as root. This post covers technical details, affected versions, and mitigations.

Published: May 18, 2026

CVE-2022-45899 Overview

CVE-2022-45899 is an OS command injection vulnerability affecting Nokia Broadcast Message Center (BMC) versions before 13.1. The flaw resides in the Log Scanner Search Pattern field, which fails to sanitize shell metacharacters before passing input to the underlying operating system. An unauthenticated remote attacker can inject arbitrary commands that execute with root privileges on the host. The vulnerability is classified under CWE-78, Improper Neutralization of Special Elements used in an OS Command.

Critical Impact

Unauthenticated remote attackers can execute arbitrary operating system commands as root on the BMC host, enabling full compromise of telecommunications messaging infrastructure.

Affected Products

  • Nokia Broadcast Message Center (BMC) versions prior to 13.1
  • Deployments exposing the Log Scanner interface to untrusted networks
  • Telecommunications environments running vulnerable BMC builds

Discovery Timeline

  • 2026-05-08 - CVE-2022-45899 published to NVD
  • 2026-05-08 - Last updated in NVD database

Technical Details for CVE-2022-45899

Vulnerability Analysis

The Nokia Broadcast Message Center exposes a Log Scanner feature that accepts a user-supplied Search Pattern parameter. The application concatenates this input directly into a shell command without input validation or argument escaping. Shell metacharacters such as ;, |, &, backticks, and $() break out of the intended command context and introduce attacker-controlled commands.

Because the BMC log scanning process runs as root, injected commands inherit superuser privileges. An attacker can read sensitive subscriber data, modify message routing logic, install persistence mechanisms, or pivot deeper into the telecom operator network. No authentication is required to reach the vulnerable endpoint over the network.

Root Cause

The defect is a textbook [CWE-78] OS command injection. The Log Scanner Search Pattern field is passed to a shell interpreter rather than executed with a safe API such as execve with separated arguments. The application also lacks an allow-list of permitted characters and does not enforce authentication on the affected endpoint.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker submits a crafted Search Pattern containing shell metacharacters followed by an arbitrary command payload. The payload executes in the context of the BMC service account, which holds root permissions. A public proof-of-concept is referenced in Exploit-DB #51896.

A representative payload injects a command separator into the search field, causing the shell to interpret subsequent text as a new command. For example, supplying a pattern that includes ; followed by a shell command results in execution of both the legitimate search and the injected command.

Detection Methods for CVE-2022-45899

Indicators of Compromise

  • Unexpected child processes spawned by the BMC Log Scanner service, particularly shells such as /bin/sh or /bin/bash.
  • Outbound network connections from the BMC host to unfamiliar IP addresses or domains immediately following Log Scanner activity.
  • Presence of shell metacharacters (;, |, &, `, $() inside Log Scanner audit logs or HTTP request logs.
  • New files in /tmp, /var/tmp, or user home directories owned by root and created during scanner activity.

Detection Strategies

  • Inspect HTTP request bodies and query strings to the BMC management interface for shell metacharacters in the Search Pattern parameter.
  • Correlate Log Scanner invocations with process creation events that produce non-standard children of the scanner binary.
  • Hunt for root-owned reverse shells, curl, wget, or nc invocations originating from the BMC application process tree.

Monitoring Recommendations

  • Forward BMC application, web server, and Linux audit logs to a central analytics platform for correlation.
  • Alert on any unauthenticated request to the Log Scanner endpoint from outside the operations management network.
  • Baseline the normal process tree of the BMC service and alert on deviations, particularly shell or interpreter execution.

How to Mitigate CVE-2022-45899

Immediate Actions Required

  • Upgrade Nokia Broadcast Message Center to version 13.1 or later as supplied by Nokia.
  • Restrict network access to the BMC management interface to trusted administration subnets only.
  • Audit BMC hosts for prior exploitation by reviewing process execution and file creation history.
  • Rotate credentials, keys, and certificates stored on BMC hosts that may have been exposed.

Patch Information

Nokia addresses the vulnerability in Broadcast Message Center version 13.1. Operators should obtain the fixed release through the Nokia support portal and follow the vendor upgrade procedure. Refer to the Nokia Official Website for support contact details. Technical context for the issue is documented in Exploit-DB #51896.

Workarounds

  • Place the BMC management interface behind a VPN or jump host that enforces strong authentication.
  • Apply network ACLs that block direct access to the Log Scanner endpoint from any non-administrative network.
  • Deploy a web application firewall rule that rejects requests containing shell metacharacters in the Search Pattern parameter.
  • Run the BMC service under a non-privileged account where supported by the vendor, reducing the impact of successful injection.

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNokia

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.50%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-78
  • Technical References
  • Nokia Official Website

  • Exploit-DB #51896
  • Related CVEs
  • CVE-2025-24818: Nokia MantaRay NM RCE Vulnerability

  • CVE-2025-24817: Nokia MantaRay NM RCE Vulnerability

  • CVE-2025-24819: Nokia MantaRay Path Traversal Flaw

  • CVE-2021-35486: Nokia IMPACT CSRF 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