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-2660

CVE-2026-2660: FascinatedBox Lily Use After Free Flaw

CVE-2026-2660 is a use after free vulnerability in FascinatedBox lily up to version 2.3, affecting the shorthash_for_name function. This article covers technical details, affected versions, impact, and mitigation.

Published: February 20, 2026

CVE-2026-2660 Overview

A use after free vulnerability has been identified in FascinatedBox lily, a programming language interpreter, affecting versions up to 2.3. The vulnerability exists in the shorthash_for_name function within the file src/lily_symtab.c. This memory corruption flaw can be triggered through manipulation of the symbol table handling, potentially leading to denial of service or unexpected behavior. The exploit is publicly available and has been reported through the project's issue tracker, though the maintainers have not yet responded to the disclosure.

Critical Impact

Local attackers with basic privileges can exploit this use after free vulnerability to cause application crashes or potentially corrupt memory, affecting systems running vulnerable versions of the Lily programming language interpreter.

Affected Products

  • FascinatedBox lily versions up to 2.3
  • Systems running the Lily programming language interpreter
  • Applications embedding the Lily interpreter library

Discovery Timeline

  • 2026-02-18 - CVE-2026-2660 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2026-2660

Vulnerability Analysis

This vulnerability is classified as a use after free (CWE-119: Improper Restriction of Operations within the Bounds of a Memory Buffer) memory corruption issue. The flaw resides in the shorthash_for_name function located in src/lily_symtab.c, which is responsible for handling symbol table operations in the Lily interpreter.

Use after free vulnerabilities occur when a program continues to reference memory after it has been deallocated. In this case, the symbol table management code appears to access freed memory during hash operations on symbol names. This can lead to undefined behavior, including crashes, data corruption, or potentially more severe impacts depending on how the freed memory is subsequently reused.

The vulnerability requires local access to exploit, meaning an attacker would need the ability to execute Lily scripts or interact directly with the interpreter on the target system.

Root Cause

The root cause of this vulnerability is improper memory management in the symbol table implementation. The shorthash_for_name function appears to access memory that has already been freed, likely due to:

  • Improper tracking of memory allocation lifetimes
  • Missing validation checks before accessing symbol table entries
  • Race conditions or incorrect ordering of deallocation and access operations

The memory safety issue allows references to persist after their backing memory has been released back to the allocator.

Attack Vector

The attack vector for CVE-2026-2660 requires local access to the target system. An attacker would need to:

  1. Have the ability to execute Lily scripts on the target system
  2. Craft a malicious Lily script that triggers the vulnerable code path in shorthash_for_name
  3. Manipulate symbol table operations in a way that causes the use after free condition

Reproduction steps have been made publicly available through the GitHub Issue Tracker for Lily. The vulnerability can be triggered using a specifically crafted Lily script that manipulates symbol table entries in a particular sequence.

Since no verified code examples are available, the exploitation mechanism involves crafting Lily source code that causes the interpreter's symbol table to be accessed after relevant memory has been freed during the parsing or execution phase.

Detection Methods for CVE-2026-2660

Indicators of Compromise

  • Unexpected crashes or segmentation faults in the Lily interpreter process
  • Core dumps indicating memory access violations in lily_symtab.c or related symbol table functions
  • Abnormal memory allocation patterns in systems running Lily scripts

Detection Strategies

  • Monitor for crashes in Lily interpreter processes with stack traces referencing shorthash_for_name or symbol table operations
  • Implement memory sanitizer tools (AddressSanitizer, Valgrind) when running untrusted Lily scripts
  • Review application logs for segmentation faults or memory corruption errors related to Lily execution

Monitoring Recommendations

  • Enable core dump collection for Lily interpreter processes to capture crash diagnostics
  • Implement process monitoring to detect repeated crashes that may indicate exploitation attempts
  • Consider sandboxing or containerizing Lily interpreter execution to limit potential impact

How to Mitigate CVE-2026-2660

Immediate Actions Required

  • Avoid executing untrusted Lily scripts on production systems until a patch is available
  • Restrict access to systems running the Lily interpreter to trusted users only
  • Monitor the Lily GitHub repository for security updates and patches
  • Consider deploying memory sanitization tools in development and testing environments

Patch Information

At the time of publication, no official patch has been released by the Lily project maintainers. The vulnerability was reported through GitHub Issue #385, but the project has not yet responded to the disclosure. Users should monitor the official Lily repository for updates and apply patches as soon as they become available.

Additional vulnerability details can be found at VulDB #346458.

Workarounds

  • Restrict execution of Lily scripts to trusted sources only
  • Run the Lily interpreter in a sandboxed environment with limited privileges
  • Implement process isolation using containers or virtual machines for untrusted code execution
  • Use memory protection mechanisms such as ASLR and stack canaries to reduce exploitation impact
bash
# Example: Running Lily in a restricted environment
# Create a restricted user for Lily execution
useradd -r -s /bin/false lily-runner

# Run Lily scripts with reduced privileges
sudo -u lily-runner lily untrusted_script.lily

# Alternatively, use a container for isolation
docker run --rm --read-only --network=none -v /path/to/script:/script:ro lily-container lily /script/untrusted.lily

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechFascinatedbox

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.01%

  • 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
  • Technical References
  • GitHub Repository for Lily

  • GitHub Issue Tracker for Lily

  • GitHub Repository Repro Steps

  • VulDB CTI ID #346458

  • VulDB #346458

  • VulDB Submission ID #753164
  • Related CVEs
  • CVE-2026-2662: FascinatedBox lily Out-of-Bounds Read Flaw
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