Listen to this Post
A Cloudflare Security Defense Faces a Serious New Test
Cloudflare Workers has long been designed around speed, scale, and strong isolation between customers sharing the same infrastructure. But new security research shows how difficult it can be to guarantee that isolation when modern processors themselves become part of the attack surface.
Cybersecurity researchers have demonstrated a remote Spectre-based attack against Cloudflare Workers capable of extracting information from a co-located Worker at up to 12 bits per second with 99.16% accuracy. The demonstration specifically recovered a JSON Web Token (JWT) placed inside the victim Worker’s memory, showing that an attacker-controlled Worker could potentially infer secrets belonging to another isolated Worker under the right conditions.
The researchers emphasized that the experiment did not access real customer information. Instead, they controlled both the attacker and victim Workers and deliberately placed a test JWT into the victim environment. Nevertheless, the experiment exposes an important architectural problem: isolating applications at the language or runtime level can become significantly harder when multiple tenants ultimately share the same physical processor and operating-system process.
Cloudflare has since strengthened its defenses, including improvements to Dynamic Process Isolation (DyPrIs), integration of the V8 Sandbox, and a Memory Protection Keys (MPK)-based isolation mechanism. The company also said it found no evidence that the technique had been actively exploited in production during the previous three years.
The Numbers Tell the Real Story
The most striking part of the disclosure is not simply that a Spectre attack was demonstrated. It is how dramatically the researchers improved the leakage rate compared with earlier work.
The new research achieved leakage of up to 12 bits per second, while an earlier attack demonstrated in 2021 achieved approximately 2 bits per minute.
That represents a massive improvement in practical extraction speed.
The researchers calculated the new attack at 99.16% accuracy under favorable testing conditions. Although 12 bits per second is still far from the kind of bandwidth associated with conventional data theft, side-channel attacks do not need to copy an entire database to become dangerous. A small secret such as a session token, cryptographic material, authentication value, or credential can be enough.
What Makes Spectre Different?
Spectre attacks exploit the behavior of modern CPUs rather than relying on a conventional software vulnerability such as a buffer overflow or authentication bypass.
Modern processors attempt to improve performance by predicting which instructions will be needed next and executing work speculatively. Although incorrect speculative operations are eventually discarded architecturally, certain microarchitectural effects can remain measurable.
An attacker can use those effects as a side channel.
Instead of directly reading another
That makes Spectre particularly uncomfortable for cloud infrastructure providers.
Cloudflare
Cloudflare Workers allows code belonging to different customers to execute within the same broader infrastructure. Workers use V8 isolates to separate tenant code while benefiting from the performance advantages of sharing an operating-system process.
This architecture is attractive because traditional process isolation can introduce additional startup and resource overhead.
The trade-off is that multiple security domains can end up sharing physical and microarchitectural resources.
The
That requirement is important.
This was not presented as an attack that allows an arbitrary internet user to immediately read any Cloudflare customer’s memory. The attacker must first have valid code executing in the Workers environment and must achieve the necessary co-location conditions.
No V8 Exploit or Sandbox Escape Was Required
One of the most important details is that the researchers did not rely on a V8 software vulnerability or a conventional sandbox escape.
The attacker controlled legitimate code running inside its own Worker isolate.
The problem emerged from the interaction between the CPU’s microarchitectural behavior, the shared execution environment, timing information, and Cloudflare’s isolation strategy.
That distinction makes the research particularly interesting because simply patching a single software bug would not necessarily eliminate the underlying class of attack.
The JWT Demonstration
To demonstrate the risk end to end, the researchers created an attacker Worker and a victim Worker that they controlled.
A test JSON Web Token was deliberately placed in the victim Worker’s memory.
The attacker then used the demonstrated side channel to infer information from the victim environment.
The experiment therefore did not represent a theft of an unsuspecting Cloudflare customer’s production JWT. Instead, it showed that the architecture could theoretically permit cross-tenant information leakage under controlled conditions.
That difference matters when assessing severity, but it should not make the research irrelevant.
Security researchers routinely use controlled secrets to prove that an information-flow boundary can be crossed.
Why the Attack Needed a Remote Timing Source
Cloudflare had already taken steps to make timing attacks more difficult.
Workers restrict local timing sources by freezing or coarsening timers during CPU execution. Worker scripts also do not receive traditional shared-memory or multithreading primitives that could make certain side-channel attacks easier.
The researchers discovered another route.
WebSocket communication could provide a sufficiently useful remote timing signal.
That effectively transformed network communication into part of the measurement mechanism.
This is an important lesson for cloud security: removing one obvious timing source does not necessarily eliminate timing-based attacks when attackers can construct another source from permitted application behavior.
WebSockets Became Part of the Attack Surface
WebSocket-heavy activity played an important role in the researchers’ methodology.
Instead of requiring direct access to a high-resolution local clock, the researchers used characteristics of remote communication to obtain timing information.
This is particularly interesting because WebSockets are legitimate functionality rather than inherently malicious technology.
It demonstrates how an attacker can sometimes turn normal platform features into measurement instruments.
A cloud provider can restrict APIs, timers, and memory access, yet the attacker may still find indirect signals through networking behavior.
Durable Objects Created Another Challenge
The researchers also examined Cloudflare Durable Objects.
Their testing showed that a Durable Object could keep a Worker isolate alive for approximately five to more than 20 hours.
That long execution lifetime mattered because
A long-lived invocation therefore created more time for the side-channel measurement process.
This highlights an uncomfortable security principle: when an attack depends on collecting tiny statistical signals, persistence can be as important as raw execution speed.
The Weakness in Dynamic Process Isolation
DyPrIs was designed as an additional defense against suspicious behavior.
The mechanism attempts to identify workloads exhibiting characteristics associated with side-channel activity and move suspicious scripts into a separate process after an invocation finishes.
The researchers found that a long-running Durable Object could continue operating before that isolation occurred.
That created a window in which the attack could continue.
The research paper described the production implementation as insufficient against the demonstrated technique.
Cloudflare, meanwhile, characterized the problem as a limitation in the implementation of DyPrIs and subsequently improved its detection capabilities.
I/O Activity Could Hide the Attack Signal
The researchers discovered another particularly interesting weakness.
Heavy WebSocket input/output activity increased instruction translation lookaside buffer, or iTLB, activity.
That additional activity affected the signal DyPrIs used to identify suspicious behavior.
In practical terms, the attack could generate enough legitimate-looking I/O activity to reduce the normalized branch-misprediction signal below the detection threshold.
This means the defense was not necessarily defeated through a direct bypass.
Instead, the
Detection Versus Prevention
This distinction is central to understanding the research.
A detection-based defense attempts to recognize an attack while it is happening.
A prevention-based defense attempts to make the attack technically incapable of crossing the security boundary.
DyPrIs was designed to detect suspicious behavior and provide additional isolation.
The researchers argued that robust protection against this class of attack should happen during execution and should rely on a signal that cannot be suppressed or distorted by ordinary I/O activity.
That is a much harder security requirement.
Why Cloudflare Strengthened the Architecture
Cloudflare responded by adding multiple layers of protection instead of relying solely on one detection mechanism.
The
This layered strategy is important because Spectre-style threats operate across several levels of the computing stack.
No single software rule can necessarily solve every interaction between application code, runtime isolation, operating-system processes, and processor behavior.
V8 Sandbox Adds Another Barrier
The V8 Sandbox is intended to constrain what malicious or compromised JavaScript and WebAssembly code can reach inside the V8 environment.
Cloudflare said its implementation limits transient access to 64-bit pointers.
That provides another barrier between a compromised or malicious workload and sensitive memory structures.
The key idea is defense in depth.
Even if an attacker manages to obtain some information through a microarchitectural side channel, additional architectural restrictions can reduce what that information can ultimately reveal.
Memory Protection Keys Bring Hardware Into the Defense
Cloudflare also deployed MPK-based in-process isolation.
Memory Protection Keys are a hardware-supported mechanism available on modern x86 systems that can associate memory regions with protection keys.
Cloudflare said modern x64 systems leave approximately 12 keys available for the purpose in its design.
The company combines these keys with the V8 Sandbox and a rotating memory layout.
The objective is to make it significantly harder for neighboring isolates to share a protection key in a way that would weaken the security boundary.
Random Key Assignment Was Not Considered Enough
Cloudflare’s earlier explanation included an interesting calculation.
According to the
That sounds impressive, but the remaining gap matters enormously when the threat being addressed is a cross-tenant attack.
Cloudflare therefore introduced a stricter rotating layout intended to eliminate that weakness for the covered in-sandbox threat model.
This is a good example of why security engineers cannot always stop at a high probability of protection.
For a multi-tenant cloud, the remaining fraction can still represent another customer’s data.
The Role of Modern AMD Processors
The researchers conducted production tests on Linux servers using AMD EPYC Zen 2 and Zen 3 processors.
They intentionally performed measurements at night, when CPU utilization was between approximately 10% and 25%.
The reason was straightforward: lower system activity produced better conditions for observing the side-channel signal.
Under heavier system load, the leakage rate decreased.
However, the researchers reported that slower leakage remained possible even under higher load.
This is significant because cloud infrastructure is rarely static.
CPU contention changes constantly depending on workloads, tenants, time of day, and traffic patterns.
Twelve Bits Per Second Is Not “Fast” in the Conventional Sense
It is easy to misunderstand the significance of the 12-bit-per-second figure.
It would be inaccurate to compare it directly with normal network transfer speeds.
The attack is not designed to download gigabytes through a hidden channel.
Its value comes from extracting carefully chosen secrets.
An authentication token, encryption key fragment, identifier, or other compact secret can be much more valuable than a large amount of ordinary data.
Side-channel attacks are therefore better evaluated by what they can reveal, not simply by how many bytes they can move.
The Five-Year Evolution of the Attack
The new disclosure is particularly striking because it shows how quickly research into side-channel techniques can improve.
The earlier Cloudflare and TU Graz research demonstrated a remote Spectre attack against Workers at approximately 120 bits per hour.
The newer research reached up to 12 bits per second.
Those figures represent an enormous difference.
The earlier work helped establish that the threat existed.
The newer work demonstrates that the technique can become substantially more practical when researchers discover better timing sources, longer-lived execution opportunities, and ways to reduce the effectiveness of detection.
The Earlier DyPrIs Security Assumption
The original research surrounding DyPrIs reported a 0.61% false-positive rate and concluded that, against the Spectre attacks evaluated at that time, the mechanism statistically provided security guarantees comparable to strict process isolation.
The new findings challenge how broadly that conclusion can be applied.
This does not necessarily mean the original research was wrong.
Security guarantees are always tied to the threat model, hardware, workload behavior, detection signals, and attack techniques evaluated at the time.
A defense that works against one generation of attack can later face a more sophisticated method that exploits a previously unknown weakness.
This Is a Warning for Multi-Tenant Cloud Platforms
Cloudflare is not uniquely vulnerable simply because this research targeted Workers.
The broader issue affects the entire cloud computing industry.
Cloud providers constantly balance isolation against performance.
Strict process or virtual-machine isolation can offer stronger boundaries, but it may consume more resources and introduce latency.
Shared runtime environments can be faster and more efficient, but they increase the importance of carefully managing microarchitectural side channels.
Spectre demonstrates that those trade-offs cannot be evaluated purely at the application level.
The Security Boundary Is Larger Than the Sandbox
For years, developers have been taught to think of a sandbox as a wall.
Spectre challenges that mental model.
A sandbox can prevent direct memory access while still sharing a processor with another security domain.
The CPU itself can unintentionally reveal information.
That means the true security boundary includes the runtime, operating system, processor, cache hierarchy, branch predictors, translation structures, timers, networking behavior, scheduling system, and workload lifetime.
The attack demonstrates why cloud isolation is fundamentally a systems-engineering problem.
What Cloudflare Says About Exploitation
Cloudflare said it has already mitigated the demonstrated issue in production.
The company also stated that it found no indicators of active exploitation over the preceding three years.
That is an important distinction.
The research demonstrates a capability, but the available information does not establish that attackers used this exact technique against Cloudflare customers in the wild.
Security teams should therefore treat the disclosure as a warning about architectural risk rather than evidence of a confirmed customer-data breach.
The Attack Required Several Conditions
The demonstrated attack was not a one-click exploit.
The attacker needed valid code running in Cloudflare Workers.
The attacker and victim also needed to be co-located within separate V8 isolates sharing the same Worker process.
The attacker additionally needed favorable execution conditions and sufficient time to gather statistical measurements.
Those requirements reduce the immediate practicality of the technique.
However, they do not eliminate the underlying concern because cloud environments are specifically designed to host workloads from many different customers on shared infrastructure.
Why Co-Location Matters
Co-location is one of the defining challenges in cloud side-channel research.
If an attacker and victim never share relevant processor resources, many microarchitectural attacks become significantly harder or impossible.
But large cloud platforms continuously optimize workload placement.
That creates an inherent tension.
The provider wants hardware utilization to remain high, while security engineers want hostile workloads kept as far apart as possible.
The more aggressively infrastructure is shared, the more important side-channel defenses become.
Spectre Continues to Outlive Its Original Headlines
Spectre first became widely known because it demonstrated that speculative execution could undermine assumptions made by operating systems and applications.
Years later, the vulnerability class continues to generate research.
That persistence is important.
Spectre was never simply one bug that could be patched once and forgotten.
It exposed a category of microarchitectural behavior.
As researchers develop better measurement techniques, defenses that were previously considered adequate may need to evolve.
The Cloudflare Workers research is another example of that continuing process.
Deep Analysis
Command: Identify the Real Security Boundary
The central lesson is that Cloudflare
Command: Separate Exploitability From Impact
The technique is difficult to execute compared with ordinary remote vulnerabilities, but the potential impact is disproportionately high when the targeted secret is compact and valuable. A JWT does not need to be large to be dangerous.
Command: Evaluate the
The attacker already needs legitimate Worker code. That makes the scenario fundamentally different from an unauthenticated remote code execution vulnerability. Nevertheless, attackers who already operate workloads on cloud platforms can have exactly this type of access.
Command: Examine Co-Location Requirements
The requirement for attacker and victim Workers to occupy separate isolates within the same Worker process is a major limitation. Cloud scheduling and infrastructure placement therefore become part of the security equation.
Command: Examine Timing Restrictions
Cloudflare’s restrictions on local timing sources demonstrate that timing control is an important part of the defense. The researchers’ use of WebSocket communication shows why removing obvious timers is not necessarily sufficient.
Command: Analyze Long-Lived Execution
Durable Objects are particularly relevant because side-channel attacks often benefit from persistence. Five to more than 20 hours of isolate lifetime gives an attacker substantially more opportunity to collect statistical evidence than a short-lived invocation.
Command: Test Detection Resilience
A detection system must remain effective when an attacker deliberately changes the environment. The iTLB and WebSocket findings show why a detection signal that can be influenced by normal-looking workload activity may be vulnerable to manipulation.
Command: Prefer Defense in Depth
Cloudflare’s response is notable because it does not depend on DyPrIs alone. Improved detection, V8 Sandbox restrictions, and MPK-based isolation create multiple layers that an attacker must overcome.
Command: Consider Hardware Diversity
The research was conducted on AMD EPYC Zen 2 and Zen 3 systems. Different processor generations and architectures can behave differently, so security conclusions must be tested across the hardware actually used by a cloud provider.
Command: Treat Statistical Attacks Differently
A side-channel does not need perfect accuracy on every individual measurement. Attackers can repeat measurements and statistically amplify weak signals. That makes seemingly tiny information leaks worth investigating.
Command: Focus on Secrets, Not Bandwidth
The 12-bit-per-second rate may sound insignificant beside conventional network speeds. But the extraction of a short authentication secret can have consequences far greater than the amount of data transferred.
Command: Understand the Evolution of Research
The jump from approximately 2 bits per minute in earlier work to up to 12 bits per second illustrates how quickly side-channel research can improve. Defenders must assume that today’s slow proof of concept could become tomorrow’s practical technique.
Command: Revisit Old Security Guarantees
The original DyPrIs research evaluated specific Spectre attacks and threat conditions. New attacks can invalidate assumptions without necessarily invalidating the original experiment. Security guarantees should therefore be periodically reevaluated.
Command: Measure Real-World Exploitation
Cloudflare’s statement that it found no evidence of active exploitation is reassuring, but it should not be interpreted as proof that the technique is harmless. The absence of observed exploitation is different from proof of impossibility.
Command: Examine the Cloud Industry as a Whole
The deeper issue extends beyond Cloudflare. AWS, Microsoft Azure, Google Cloud, serverless platforms, container platforms, browser sandboxes, and other multi-tenant systems all face versions of the same fundamental problem.
Command: Balance Performance and Isolation
Strict process isolation generally offers a clearer security boundary but can impose costs. Runtime isolation is attractive because it is efficient. The challenge is achieving both high utilization and strong protection against microarchitectural leakage.
Command: Protect the Detection Layer
Attackers increasingly look for ways to influence security telemetry itself. If workload activity can suppress the signal used to identify suspicious behavior, the defense can become part of the attack surface.
Command: Reduce Attacker Persistence
Long-lived workloads can make statistical attacks easier. Cloud platforms should consider how execution duration, connection persistence, and background activity interact with side-channel defenses.
Command: Use Hardware-Enforced Controls Where Possible
The addition of MPK-based protection is significant because it moves part of the isolation mechanism below the application runtime. Hardware-assisted security can provide a stronger layer than relying entirely on software-level assumptions.
Command: Keep the Threat Model Honest
The research explicitly excludes native code execution and does not depend on a V8 sandbox escape. That means organizations should not dismiss it by assuming that only a fully compromised runtime matters.
Command: Understand the Difference Between Leakage and Direct Access
The researchers did not directly read the
Command: Assume Side Channels Will Improve
The most important strategic assumption for cloud providers should be that researchers will continue finding better timing sources, stronger statistical techniques, and new ways to bypass behavioral detection.
Command: Build Multiple Independent Barriers
A strong architecture should ideally prevent one failed security layer from immediately becoming a cross-tenant compromise. Cloudflare’s combination of DyPrIs, V8 Sandbox, MPK, and memory-layout techniques moves in that direction.
Command: Do Not Confuse Mitigation With Elimination
Cloudflare’s mitigations significantly change the risk profile, but side-channel research is an evolving field. Mitigating a demonstrated attack does not mean every future Spectre-derived technique is impossible.
Command: Watch for New Processor-Level Research
As CPUs become more sophisticated, their performance features create more potential microarchitectural state. Security teams should monitor research involving branch prediction, translation structures, caches, speculative execution, and remote timing.
Command: Make Isolation a Continuous Process
Cloud infrastructure cannot treat tenant isolation as a one-time engineering decision. Changes to hardware, runtimes, scheduling, networking, and application features can all affect the security boundary.
Command: Evaluate Legitimate Features as Potential Side Channels
WebSockets and Durable Objects are legitimate platform features. Their involvement demonstrates that security analysis must examine how normal features interact rather than simply searching for obviously malicious APIs.
Command: Prioritize Authentication Secrets
Short-lived tokens and credentials should receive particular attention in side-channel threat models because even a low-bandwidth leak can become highly consequential if it exposes something that grants access.
Command: Consider the Economics of the Attack
An attack that requires hours of computation and statistical measurement may not be attractive against low-value targets. It becomes much more interesting when a cloud environment contains high-value credentials or privileged application secrets.
Command: Treat Cloud Isolation as Shared Responsibility
Cloud providers are responsible for infrastructure boundaries, but customers should also reduce the amount of sensitive material stored in long-lived memory and use short-lived credentials, token rotation, and least-privilege access wherever practical.
Command: Understand Why This Disclosure Matters
The most important takeaway is not that Cloudflare Workers was “broken.” It is that a sophisticated remote side channel managed to turn shared processor behavior into a cross-isolate information channel despite multiple layers of runtime isolation.
Command: Look Beyond the Headline
The headline number of 12 bits per second attracts attention, but the deeper story is the evolution of the attack methodology. Researchers combined remote timing, persistent execution, workload manipulation, and microarchitectural measurements to push the technique far beyond earlier demonstrations.
Command: Measure the Remaining Risk
Cloudflare’s new defenses should make the demonstrated attack substantially harder. The remaining question for the industry is whether future techniques can discover another measurable signal that bypasses or weakens those defenses.
Command: Learn the Broader Lesson
The cloud security industry should treat this research as evidence that software isolation alone cannot completely erase hardware-level information leakage. Modern cloud security increasingly requires cooperation between application runtimes, operating systems, hypervisors, hardware features, and intelligent monitoring.
What Undercode Says:
A New Reminder That Isolation Is Never Absolute
This research is a powerful reminder that cloud isolation is not a single wall. It is a collection of barriers, and attackers only need to find one indirect information path to begin weakening the boundary.
The 12-Bit Number Is More Important Than It Looks
Twelve bits per second does not sound impressive until the target is a JWT or another compact secret. Security teams should stop evaluating side channels using traditional network-transfer thinking and instead ask what sensitive information can be reconstructed.
Cloud Efficiency Creates Security Trade-Offs
Cloud providers share infrastructure because it makes serverless computing fast and economically viable. The same architecture can create microarchitectural relationships that sophisticated attackers may attempt to exploit.
The Attack Is Difficult but Not Theoretical
The requirement for legitimate Worker code, co-location, persistence, and favorable conditions makes this considerably more complicated than a typical remote vulnerability. But the researchers successfully demonstrated the entire attack chain under production-like conditions.
Cloudflare’s Response Is the Right Direction
Improving DyPrIs while adding V8 Sandbox and MPK-based protections is much stronger than attempting to repair one detection threshold. Defense in depth is exactly what this class of threat demands.
Detection Alone Has a Dangerous Limitation
The
Long-Lived Serverless Workloads Deserve More Scrutiny
Serverless environments are often thought of as short-lived by design, but features such as Durable Objects can create much longer execution windows. That changes the threat model for attacks requiring statistical measurement.
WebSockets Show How Indirect Timing Can Matter
Restricting traditional timers is useful, but the WebSocket findings demonstrate that attackers can sometimes reconstruct timing information indirectly. This is a broader lesson for sandbox design.
The Earlier DyPrIs Results Were Not Meaningless
It would be wrong to interpret the new research as proof that all earlier DyPrIs conclusions were invalid. The original system was evaluated against the attack techniques available at the time. Security engineering evolves as adversarial techniques improve.
Hardware Has Become Part of the Cloud Security Boundary
Spectre fundamentally changed how security engineers think about processors. The CPU is no longer simply a neutral execution engine; its internal behavior can become an information source.
The Industry Should Pay Attention
Cloudflare is one of the
The Biggest Risk Is Future Evolution
The demonstrated attack is already interesting, but the more important concern is what happens when researchers improve it again. Twelve bits per second today could potentially become substantially faster under different hardware or measurement techniques.
Secrets Need Short Lifetimes
Customers running sensitive workloads should continue using short-lived tokens, least-privilege credentials, and strong rotation policies. Those controls cannot eliminate side channels, but they can reduce the value of any secret that might leak.
Security Must Assume Sophisticated Attackers
An attacker capable of conducting this type of research is operating at a very different level from someone exploiting a common web vulnerability. Cloud platforms should therefore assume that high-value targets will eventually attract highly specialized side-channel research.
Cloudflare’s No-Exploitation Statement Matters
The absence of observed exploitation over three years is an important mitigating factor. It suggests the disclosure is primarily about strengthening the architecture rather than responding to a confirmed customer breach.
But Absence of Evidence Is Not Proof of Safety
Side-channel attacks can be difficult to detect because they may resemble ordinary computation and network traffic. A lack of known exploitation should therefore be treated as reassuring evidence, not as a guarantee.
The Best Defense Is Layered Isolation
The combination of runtime restrictions, process isolation, sandboxing, hardware memory controls, and behavioral detection is more convincing than any individual defense. Attackers should have to defeat several independent mechanisms.
The Security Community Will Keep Testing These Boundaries
Researchers will continue probing cloud isolation because the potential rewards are significant. Every major serverless architecture represents an opportunity to investigate whether tenant boundaries survive contact with modern hardware.
This Is a Strategic Cloud Security Problem
The long-term challenge is not merely patching one Cloudflare implementation. It is developing cloud architectures where performance optimizations do not quietly create new information channels between tenants.
The Industry Should Treat This as a Warning, Not a Panic Event
There is no evidence in the provided disclosure that customer data was stolen. The correct response is therefore not panic but architectural review, mitigation, monitoring, and continued research.
Spectre Still Has Lessons to Teach
Nearly a decade after Spectre first transformed processor security discussions, researchers are still discovering ways to exploit speculative and microarchitectural behavior. That longevity should make every cloud provider cautious about declaring the problem solved.
✅ The core research claim is consistent with the supplied article: researchers demonstrated a remote Spectre attack against co-located Cloudflare Workers and reported leakage of up to 12 bits per second at 99.16% accuracy.
✅ The article correctly distinguishes the demonstration from a confirmed customer breach: the researchers controlled both attacker and victim Workers and intentionally placed the test JWT in the victim’s memory, while Cloudflare said it found no indicators of active exploitation over the previous three years.
✅ The mitigation details are consistent with the supplied source: Cloudflare described improvements to DyPrIs alongside V8 Sandbox and MPK-based in-process isolation as additional protections against the demonstrated class of cross-isolate leakage.
❌ The research should not be interpreted as proof that any internet user can instantly steal arbitrary Cloudflare customer data: the demonstrated scenario required legitimate Worker code, suitable co-location, a shared Worker process, and favorable conditions for the side-channel measurements.
Prediction
(+1) Cloudflare’s layered mitigation strategy will make this specific attack substantially harder to reproduce in production. Combining improved behavioral detection with V8 Sandbox and hardware-assisted memory protection should create a much stronger security boundary than the original DyPrIs-only approach.
(+1) Cloud-side hardware isolation will become increasingly important. As side-channel techniques improve, cloud providers will likely rely more heavily on hardware-enforced isolation rather than depending exclusively on runtime-level sandboxing.
(+1) Serverless platforms will increasingly treat microarchitectural attacks as a mainstream threat category. The combination of shared infrastructure and highly persistent workloads makes this an area that will continue receiving research attention.
(-1) The Spectre family is unlikely to disappear. New processor generations and new execution optimizations will continue creating opportunities for researchers to discover previously unknown information channels.
(-1) Detection-only defenses will remain vulnerable to sophisticated attackers if their signals can be manipulated. Future cloud security systems will likely move toward stronger prevention mechanisms that do not depend entirely on recognizing an attack after it begins.
(+1) The most likely long-term outcome is stronger defense-in-depth across the cloud industry. The lesson from this disclosure is not that multi-tenant serverless computing is fundamentally unsafe, but that isolation must evolve continuously as attackers learn how to observe the hardware beneath the software.
▶️ Related Video (70% Match):
🕵️📝Let’s dive deep and fact‑check.
🎓 Live Courses & Certifications:
Join Undercode Academy for Verified Certifications
🚀 Request a Custom Project:
Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands
References:
Reported By: thehackernews.com
Extra Source Hub (Possible Sources for article):
https://www.reddit.com/r/AskReddit
Wikipedia
OpenAi & Undercode AI
Image Source:
Unsplash
Undercode AI DI v2
🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]
📢 Follow UndercodeNews & Stay Tuned:
𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube




