Malicious Chrome Extensions Target Workday & NetSuite for Account Takeover
These articles are AI-generated summaries. Please check the original sources for full details.
Malicious Chrome Extensions Target Workday & NetSuite for Account Takeover
Five malicious Chrome extensions were identified impersonating popular platforms like Workday, NetSuite, and SuccessFactors to steal user credentials and hijack accounts. These extensions, with over 2,500 combined installs, demonstrate a coordinated effort to bypass security measures and gain unauthorized access to sensitive systems.
Why This Matters
Current security models often rely on user awareness and extension vetting, but attackers are increasingly adept at mimicking legitimate software. The potential scale of compromise is significant; a successful account takeover in HR or ERP systems can lead to data breaches, financial loss, and disruption of critical business processes – potentially costing organizations millions in remediation and fines.
Key Insights
- 2,500+ installs: Combined installs across the five malicious extensions as of discovery.
- DOM manipulation: Used to block access to administrative pages within Workday, hindering incident response.
- Cookie exfiltration: Stolen cookies are sent to attacker-controlled servers for session hijacking, leveraging
chrome.cookies.set().
Working Example
// Example of cookie injection (simplified from Software Access extension)
async function injectCookies(cookies) {
for (const cookie of cookies) {
chrome.cookies.set({
url: cookie.domain,
name: cookie.name,
value: cookie.value,
expirationDate: cookie.expirationDate
});
}
}
Practical Applications
- Enterprise HR Systems: Attackers could gain access to sensitive employee data and manipulate payroll or benefits.
- Pitfall: Overly permissive extension permissions (e.g., access to all cookies on a domain) create a significant attack surface.
References:
Continue reading
Next article
GootLoader Malware Employs 500-1,000 Concatenated ZIP Archives for Evasion
Related Content
Fake AI Chrome Extensions Stole 900K Users' Data
Nearly 900,000 users had their ChatGPT and DeepSeek data stolen via malicious Chrome extensions mimicking legitimate AI tools.
Clinejection: How Prompt Injection Compromised AI Coding Tools for 4,000 Developers
The Clinejection attack turned Cline's GitHub Actions bot into a weapon, installing rogue agents on 4,000 developer machines via malicious npm updates in February 2026.
New Browser Security Report Reveals Emerging Threats for Enterprises
Browsers drive 32% of corporate data leaks via GenAI and extensions, per 2025 security report.