惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
N
Netflix TechBlog - Medium
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
IT之家
IT之家
博客园 - Franky
雷峰网
雷峰网
博客园 - 聂微东
腾讯CDC
M
MIT News - Artificial intelligence
B
Blog RSS Feed
博客园_首页
罗磊的独立博客
S
SegmentFault 最新的问题
I
InfoQ
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
D
Docker
宝玉的分享
宝玉的分享
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

Cyber Security News

AIRecon: AI-Powered Penetration Testing Tool with Kali Linux Sandbox Critical Chrome Vulnerabilities Allow Attackers to Execute Arbitrary Code - Update Now! UNC3753 Uses Screen-Sharing Sessions and RMM Tools to Exfiltrate Sensitive Legal Data New OnionDrop Loader Campaign Uses gainmsg C2 to Deliver LegionLoader Payloads ClickFix Campaign Uses EtherHiding and GULoader to Infect Windows Users via Fake CAPTCHA Ghostwriter Hackers Abuse Gmail Admin-Themed Emails to Steal Credentials and 2FA Codes The Half-Life of Threat Intelligence: When Does an IOC Stop Being Useful? Critical Fortinet FortiSandbox Vulnerabilities Actively Exploited in Attacks Aembit Extends IAM for Agentic AI to Microsoft Copilot Studio India Temporarily Bans Telegram Messenger Over Medical Exam Fraud Microsoft 365 Device Code Phishing Campaign Bypasses Password Theft With Legitimate Login Flow AppViewX Launches Agent Identity Security to Govern Agents for the AI and Quantum Era Hackers Weaponize Microsoft Teams Relay to Hide Ransomware Traffic Developer laptops are the credential store attackers are picking through in 2026, GitGuardian announces Endpoint Protection Interlock and Rhysida Ransomware Operations Share Supper Backdoor and Malware Codebase Novo Nordisk Confirms Cyber Attack — Hackers Accessed Patient Medical Data and Internal AI Assets Russian and Chinese Influence Actors Use AI to Evade Bot Detection and Mimic Human Behavior Microsoft Teams Analyze the Wi-Fi Hotspot Data Connected to an Employee’s Device PRC-Nexus Hackers Exploit REDCap Servers to Spy on US Medical Research Institutions Infinite Campus Data Breach Exposes 137,000 Users Personal Details OptinMonster Plugin Hack Exposes 1.2 Million Wordpress Sites to Cyberattack Ransomware Ecosystem Consolidates Around LockBit Alumni, Qilin, Hyflock, and The Gentlemen Hackers Abuse Legitimate RMM Tools in The Quarry IRS and SSA Phishing Campaigns LiteSpeed cPanel Plugin 0-Day Vulnerability Actively Exploited in the Wild Cisco SD-WAN vManage Vulnerability Exploited in Zero-Day Attacks Nearly 14,000 SimpleHelp Servers Exposed Amid Critical Authentication Bypass Disclosure Microsoft Site Showing Warning Following Certificate Expiry DPAPISnoop Tool Extracts CREDHIST Hashes for Offline Windows Credential Recovery SHADOWBYT3$ Allegedly Claim Breach of Nintendo, Stealing Sensitive Data Anthropic Updated Privacy Policy to Include Identity Verification for Claude Users
Deno-Based RAT Uses Microsoft Teams Impersonation and Mai...
Tushar Subhra Dutta · 2026-06-17 · via Cyber Security News

A new strain of malware has emerged that combines two well-known social engineering tactics into one effective attack chain.

Researchers have uncovered a Remote Access Trojan built on Deno, an unconventional JavaScript runtime, being deployed against employees through email flooding and fake Microsoft Teams calls.

The attack overwhelms targets and then offers a false sense of rescue, turning trust into a weapon.

The attack begins with what professionals call mailbombing. Targeted employees receive hundreds of emails in a short period, flooding inboxes and creating panic.

Once the victim is disoriented, an attacker calls them over Teams, posing as an IT support agent. It is a deliberate trap: the manufactured crisis creates the demand, and the attacker shows up as the solution.

Analysts at InfoGuard Labs, who investigated this intrusion firsthand, noted that the malware stood out not for its social engineering alone, but because of the unusual technical framework deployed.

Instead of a traditional compiled implant, the attacker delivered a modular RAT built on Deno, a JavaScript and TypeScript runtime known for its security-first design.

InfoGuard Labs said in a report shared with Cyber Security News (CSN) that the implant was split across four JavaScript files, each handling a specific role while keeping the overall footprint low.

What makes this attack particularly concerning is that an active endpoint detection tool was present on the compromised machine and still failed to flag the malware during initial execution.

Alerts only surfaced later when the attacker began follow-on activities like LDAP queries and certificate-related reconnaissance. This strongly suggests the malware was built with evasion in mind from the start.

The case is a reminder that modern attackers no longer rely solely on malicious files. By blending manipulation, legitimate platforms, and scripting runtimes that security tools rarely scrutinize, they are building attack chains that slip past defenses designed for a different era.

Deno-Based RAT Uses Microsoft Teams Impersonation and Mailbombing

The initial contact came through Microsoft Teams, where the attacker called employees from an external account that closely mimicked an internal IT support identity.

Employee names and company context, likely sourced from LinkedIn, were used to build credibility. Two employees did not answer. One did, and that single interaction was enough.

The victim was directed to a fake self-service portal designed to resemble a legitimate support workflow. The page prompted the user to download a file and extract it into their AppData directory, a path less likely to raise flags.

Malicious webpage tricking the user into downloading and running malware (Source - InfoGuard Labs)
Malicious webpage tricking the user into downloading and running malware (Source – InfoGuard Labs)

Once extracted, the primary payload executed without triggering an immediate alert. The malware was composed of four JavaScript files: app.js, back.js, helper.js, and webui.js.

Each handled a separate function, from orchestrating the other modules to managing the C2 connection, executing local commands, and enabling internal network pivoting.

The C2 server sat behind a CloudFront domain, helping disguise outbound traffic as contact with a legitimate content delivery network.

Deno is widely praised for its security-first design. Unlike Node.js, it requires explicit permission for every sensitive action, including file access, network activity, and subprocess execution.

The attacker turned this feature against defenders by splitting the malware into modules where each piece requested only what it needed, so no single process appeared obviously suspicious.

All four JavaScript files were heavily obfuscated using a technique called string array shifting, where readable strings are replaced with scrambled arrays that only reconstruct at runtime.

Obfuscation used by the malware (Source - InfoGuard Labs)
Obfuscation used by the malware (Source – InfoGuard Labs)

This defeats static analysis tools that scan for known URLs or command-line arguments, leaving analysts with garbled output. The only reliable signals in this attack were behavioral, not content-based.

Security teams can take practical steps to reduce exposure. Monitoring for Deno processes launched from user-writable directories, flagging external Teams calls during email surges, and enabling full Microsoft 365 audit logging are all important measures.

The Teams impersonation event leaves a traceable record in the Unified Audit Log, and correlating that signal with mailbombing activity can provide an early warning before any malware executes.

Indicators of Compromise (IoCs):-

TypeIndicatorDescription
SHA-256d317371cf2b4cd524849551ffd3b97d91edbc17f6b39c8693217383ba6a0370dapp.js
SHA-2569469268c421b7821f897deb2d4d2316b21ff5da35bef417aa4e284010ef78302back.js
SHA-2563d8afae76c5982458849d21221e089ee161266a4248b12ea3048d1e79b76707ehelper.js
SHA-2562ed6fdfa5f9120306167ba5d8d48a62dbe5fd0d05e87c33c9784f08698f8a66bwebui.js
SHA-2563b48a334dcf0a08bed2a9766fd553474ae3014db600b65573dfee0f183e9d1d9patch09913.bd
Domain2cff16eusb8mg.cloudfront[.]netC2 server domain hosted via CloudFront CDN

Note: IP addresses and domains are intentionally defanged (e.g., [.]) to prevent accidental resolution or hyperlinking. Re-fang only within controlled threat intelligence platforms such as MISP, VirusTotal, or your SIEM.

Follow us on Google NewsLinkedIn, and X to Get More Instant UpdatesSet CSN as a Preferred Source in Google.

Tushar Subhra Dutta

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.