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
    • 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-3391

CVE-2026-3391: Lily-lang Lily Buffer Overflow Vulnerability

CVE-2026-3391 is a buffer overflow flaw in Lily-lang Lily that causes out-of-bounds read in clear_storages function. This vulnerability requires local access and has a public exploit available. Learn the technical details.

Published: March 6, 2026

CVE-2026-3391 Overview

A security flaw has been discovered in FascinatedBox lily up to version 2.3. The vulnerability impacts the clear_storages function in the file src/lily_emitter.c. The manipulation results in an out-of-bounds read condition. This attack requires local access to exploit. The exploit has been released to the public and may be used for attacks. The project was informed of the problem early through an issue report but has not responded yet.

Critical Impact

Local attackers with access to systems running Lily language interpreter can trigger out-of-bounds read conditions, potentially leading to information disclosure or application crashes.

Affected Products

  • lily-lang lily versions up to 2.3
  • Applications utilizing the Lily programming language interpreter
  • Development environments with Lily language support

Discovery Timeline

  • 2026-03-01 - CVE CVE-2026-3391 published to NVD
  • 2026-03-04 - Last updated in NVD database

Technical Details for CVE-2026-3391

Vulnerability Analysis

This vulnerability is classified as an out-of-bounds read (CWE-125) affecting the memory buffer operations (CWE-119) within the Lily programming language interpreter. The flaw exists in the clear_storages function located in src/lily_emitter.c, where improper bounds checking allows reading memory beyond allocated buffer boundaries.

Out-of-bounds read vulnerabilities occur when a program reads data past the boundary of the intended buffer. In the context of Lily's emitter component, this can lead to exposure of sensitive memory contents or cause unexpected behavior when processing crafted input. The vulnerability requires local access to exploit, limiting its attack surface but still posing a risk in shared computing environments or when processing untrusted Lily source files.

Root Cause

The root cause lies in insufficient boundary validation within the clear_storages function. When this function processes storage clearing operations, it fails to properly validate array indices or buffer lengths before performing read operations. This allows an attacker to craft specific input that causes the interpreter to access memory locations outside the intended buffer boundaries.

Attack Vector

The attack requires local access to the target system. An attacker must be able to execute Lily code or provide specially crafted Lily source files to the interpreter. The exploitation path involves creating malicious Lily code that triggers the vulnerable code path in clear_storages, causing the interpreter to read beyond allocated memory regions.

A reproducible example has been documented in the GitHub Issue #383. The vulnerability can be triggered by crafting specific Lily language constructs that manipulate storage operations in unexpected ways, leading to the out-of-bounds read condition. Technical details and a reproduction case are available in the GitHub reproducible example.

Detection Methods for CVE-2026-3391

Indicators of Compromise

  • Unexpected crashes or segmentation faults in Lily interpreter processes
  • Memory access violations reported in system logs when executing Lily code
  • Anomalous memory read patterns detected by memory sanitizers (ASan/MSan)

Detection Strategies

  • Deploy memory sanitizer tools (AddressSanitizer, MemorySanitizer) when running Lily interpreter in development or testing environments
  • Monitor system logs for segmentation fault signals (SIGSEGV) associated with Lily interpreter processes
  • Implement file integrity monitoring for Lily source files to detect injection of malicious code

Monitoring Recommendations

  • Enable detailed logging for Lily interpreter execution in production environments
  • Configure crash dump collection to capture memory state during unexpected terminations
  • Establish baseline behavior patterns for Lily interpreter resource usage to detect anomalies

How to Mitigate CVE-2026-3391

Immediate Actions Required

  • Restrict local access to systems running Lily interpreter to trusted users only
  • Avoid processing untrusted Lily source files until a patch is available
  • Consider isolating Lily interpreter execution in sandboxed environments
  • Monitor the vendor's GitHub repository for security updates

Patch Information

No official patch is currently available from the vendor. The project was informed of the vulnerability through GitHub Issue #383 but has not yet responded. Users should monitor the official repository for updates and apply patches as soon as they become available.

Workarounds

  • Run Lily interpreter with reduced privileges using OS-level sandboxing mechanisms
  • Implement input validation to filter potentially malicious Lily source files before execution
  • Use containerization (Docker, Podman) to isolate Lily interpreter from sensitive system resources
bash
# Example: Run Lily interpreter in a restricted sandbox (Linux)
firejail --noprofile --quiet lily script.lily

# Alternative: Use Docker to isolate execution
docker run --rm -v $(pwd):/app:ro lily-container lily /app/script.lily

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLily Lang

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-119

  • CWE-125
  • Technical References
  • GitHub Repository for Lily

  • GitHub Reproducible Example

  • VulDB CTIID #348277

  • VulDB Entry #348277

  • VulDB Submission #761327
  • Vendor Resources
  • GitHub Issue #383 for Lily
  • Related CVEs
  • CVE-2026-3392: Lily-lang Lily Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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