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-2023-4355

CVE-2023-4355: Google Chrome V8 RCE Vulnerability

CVE-2023-4355 is a remote code execution vulnerability in Google Chrome's V8 engine caused by out of bounds memory access. Attackers can exploit heap corruption via crafted HTML pages. This article covers technical details, affected versions, impact, and mitigation steps.

Published: February 4, 2026

CVE-2023-4355 Overview

CVE-2023-4355 is an out-of-bounds memory access vulnerability affecting the V8 JavaScript engine in Google Chrome versions prior to 116.0.5845.96. This memory corruption flaw allows a remote attacker to potentially exploit heap corruption via a crafted HTML page, leading to potential arbitrary code execution within the browser context.

Critical Impact

Remote attackers can exploit heap corruption through malicious web pages, potentially achieving arbitrary code execution without requiring user authentication. The vulnerability requires only user interaction to visit a crafted page.

Affected Products

  • Google Chrome versions prior to 116.0.5845.96
  • Debian Linux 11.0 and 12.0
  • Fedora 37 and 38

Discovery Timeline

  • August 15, 2023 - CVE-2023-4355 published to NVD
  • May 5, 2025 - Last updated in NVD database

Technical Details for CVE-2023-4355

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-bounds Write), affecting the V8 JavaScript engine which powers JavaScript execution in Google Chrome and Chromium-based browsers. The flaw involves dangling FixedArray pointers that can lead to memory corruption conditions within the V8 heap.

V8's optimized memory management for JavaScript arrays relies on FixedArray structures for internal storage. When these internal pointers become invalid or "dangling" due to improper lifecycle management, subsequent operations can read or write to unintended memory locations. This creates a heap corruption scenario that attackers can potentially weaponize for code execution.

Root Cause

The root cause stems from improper memory management within V8's FixedArray implementation. When array structures are modified or garbage collected, certain pointer references may not be properly invalidated, leaving dangling pointers that reference freed or reallocated memory regions. Subsequent access to these pointers results in out-of-bounds memory operations.

Attack Vector

Exploitation requires a victim to visit a maliciously crafted HTML page containing JavaScript code designed to trigger the vulnerability. The attack is network-based, requiring no authentication, but does require user interaction (visiting the malicious page). Once triggered, the heap corruption can potentially be leveraged to:

  1. Achieve arbitrary read/write primitives in the renderer process
  2. Bypass browser sandbox protections in conjunction with other exploits
  3. Execute arbitrary code within the context of the compromised browser process

The vulnerability mechanism involves crafting JavaScript that manipulates V8's internal array structures to create and exploit the dangling pointer condition. For detailed technical analysis, refer to the Packet Storm Memory Corruption advisory and Chrome Bug Report #1468943.

Detection Methods for CVE-2023-4355

Indicators of Compromise

  • Unexpected browser crashes or memory errors during JavaScript-heavy page loads
  • Anomalous heap allocation patterns in Chrome renderer processes
  • JavaScript execution patterns attempting to manipulate array boundaries
  • Browser process spawning unexpected child processes or network connections

Detection Strategies

  • Monitor for Chrome versions below 116.0.5845.96 across the enterprise environment
  • Implement browser extension or EDR-based detection for heap corruption exploitation techniques
  • Deploy network-based detection for known malicious HTML/JavaScript patterns targeting this vulnerability
  • Enable Chrome's crash reporting to identify potential exploitation attempts

Monitoring Recommendations

  • Centralize browser version inventory and flag unpatched Chrome installations
  • Monitor endpoint telemetry for browser process anomalies including memory access violations
  • Implement web proxy logging to identify access to known malicious domains serving exploit pages
  • Review browser crash dumps for V8-related memory corruption signatures

How to Mitigate CVE-2023-4355

Immediate Actions Required

  • Update Google Chrome to version 116.0.5845.96 or later immediately
  • Enable automatic Chrome updates to ensure timely security patches
  • For Linux distributions, apply vendor security updates from Debian, Fedora, or Gentoo repositories
  • Consider temporary browser restrictions for high-risk environments until patching is complete

Patch Information

Google has released Chrome version 116.0.5845.96 which addresses this vulnerability. The official patch information is available in the Chrome Releases Update Announcement.

Linux distribution-specific patches:

  • Debian Security Advisory DSA-5479
  • Fedora Package Announcements
  • Gentoo GLSA 202401-34

Workarounds

  • Disable JavaScript execution in Chrome for untrusted sites using content settings or extensions
  • Implement strict site isolation policies to limit impact of potential exploitation
  • Use browser virtualization or containerization for high-risk browsing activities
  • Deploy network-level filtering to block access to known malicious domains
bash
# Update Chrome on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade chromium

# Update Chrome on Fedora systems
sudo dnf update chromium

# Verify Chrome version
google-chrome --version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGoogle Chrome

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability39.28%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • Packet Storm Memory Corruption

  • Chrome Bug Report #1468943

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Gentoo GLSA 202401-34

  • Debian Security Advisory DSA-5479
  • Vendor Resources
  • Chrome Releases Update Announcement
  • Related CVEs
  • CVE-2026-5279: Google Chrome V8 RCE Vulnerability

  • CVE-2026-5277: Google Chrome ANGLE RCE Vulnerability

  • CVE-2026-5274: Google Chrome RCE Vulnerability

  • CVE-2026-4679: Google Chrome RCE Vulnerability
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