Cyber Security News

Zero-Hour Phishing Attacks Exploiting Browser Vulnerabilities Increases by 130%

Recent cybersecurity data reveals an alarming 130% surge in zero-hour phishing attacks targeting previously unknown browser vulnerabilities.

These sophisticated attacks leverage unpatched security flaws in popular browsers to deploy malicious payloads before security teams can implement countermeasures, leaving users and organizations extremely vulnerable in the critical first hours of an attack campaign.

The dramatic increase has been primarily observed in attacks exploiting JavaScript rendering engines and browser extension APIs, with Chrome, Firefox, and Edge users facing the highest risk profiles.

Threat actors are increasingly utilizing obfuscated code and DOM manipulation techniques to bypass traditional security controls while harvesting credentials and deploying secondary payloads.

Menlo Security researchers detected that these zero-hour phishing campaigns frequently employ dynamic code loading techniques to evade detection.

Their analysis revealed that attackers are using sophisticated browser fingerprinting to identify vulnerable targets before deploying their exploits, significantly increasing success rates compared to traditional phishing methods.

The most concerning aspect of this trend is the speed at which compromised systems are being monetized.

According to incident response data, the average time between initial browser compromise and credential exfiltration has dropped to just 27 minutes, giving security teams minimal time to detect and respond to active breaches before damage occurs.

These attacks typically begin with specially crafted emails containing links to malicious websites that appear legitimate but contain obfuscated JavaScript code that exploits browser parsing vulnerabilities to execute arbitrary code.

Exploitation Mechanisms

The most prevalent attack vector involves exploiting CVE-2023-45812, a type confusion vulnerability in JavaScript engines that allows attackers to bypass same-origin policies.

When a user visits a compromised site, the following code is typically injected to exploit the vulnerability:-

function triggerVulnerability() {
  const vulnerableObj = {"prop": document.createElement("iframe")};
  const proxyObj = new Proxy(vulnerableObj, {
    get: function(target, prop) {
      if (prop === "prop") {
        // Type confusion triggered here
        Object.defineProperty(target, "prop", {value: {}});
        return document.domain;
      }
      return target[prop];
    }
  });

  setTimeout(() => {
    // Execute arbitrary code with elevated privileges
    proxyObj.prop.innerHTML = '';
  }, 100);
}

This code leverages race conditions in the browser’s garbage collection and property access mechanisms to break out of the browser sandbox.

Once executed, the malicious code can access sensitive browser data, including stored credentials and session information.

Security teams should immediately implement Content Security Policies with strict-dynamic directives and ensure all browsers are updated to the latest versions.

Additionally, implementing browser isolation technologies can provide effective protection by executing web content in secured containers separated from endpoint devices.

Investigate Real-World Malicious Links & Phishing Attacks With Threat Intelligence Lookup - Try for Free

Tushar Subhra Dutta

Tushar is a senior cybersecurity and breach reporter. He specializes in covering cybersecurity news, trends, and emerging threats, data breaches, and malware attacks. With years of experience, he brings clarity and depth to complex security topics.

Recent Posts

Hackers Target AI Infrastructure With RCE, Prompt Injection and API Key Theft

Hackers are actively probing AI systems, turning exposed gateways and agent tools into routes for…

2 hours ago

Hackers Make Phishing Pages Change Their Code Every Time Someone Opens Them

Hackers are making some phishing pages harder to track by changing the code delivered to…

3 hours ago

Iran-Linked Hackers Reportedly Knock UK Power Plant Offline for Four Days

A cyber incident reportedly forced a British power plant to halt operations for about four…

4 hours ago

Russian Hackers Use New HOOKEDGE Malware to Spy on European Defense and Diplomatic Targets

Russian hackers have used a new backdoor called HOOKEDGE to target defense manufacturers, government bodies,…

4 hours ago

Ransomware Gang Claims AI Can Analyze 700GB of Stolen Data Every Hour

TITAN ransomware is pairing file encryption with an ambitious claim: artificial intelligence that can sort…

4 hours ago

Hackers Compromise Hundreds of WordPress Sites to Deploy Amatera Stealer via ClickFix

A fake student resume is being used to place a remote-access tool on researchers’ Windows…

6 hours ago