The popular communication platform Discord is confronting a major extortion attempt after cybercriminals breached one of its third-party customer service providers, compromising sensitive user data including government identification photos used for age verification. Threat actors claim to have exfiltrated 1.5 terabytes of sensitive information, including over 2.1 million government-issued identification photos. However, Discord disputes these figures, stating that […]
Ransomware threats reached a tipping point in Q3 2025 as data-leak sites surged to a record 81 active platforms, driven by major developments across the ecosystem. English-speaking hacking collective Scattered Spider teased its first ransomware-as-a-service (RaaS) offering, “ShinySp1d3r RaaS,” while long-standing operator LockBit returned with “LockBit 5.0,” explicitly authorizing affiliates to target critical infrastructure. A […]
Security researchers at Volexity have uncovered compelling evidence that China-aligned threat actors are leveraging artificial intelligence platforms like ChatGPT to enhance their sophisticated cyberattack capabilities. The group, tracked as UTA0388, has been conducting sophisticated spear phishing campaigns since June 2025, using AI assistance to develop malware and craft multilingual phishing emails targeting organizations across North […]
In 2025, the notorious Chaos ransomware has undergone a dramatic transformation, emerging with a sophisticated C++ variant that represents the most dangerous iteration to date. This marks the first time Chaos has departed from its traditional .NET foundation, introducing destructive extortion tactics and cryptocurrency theft capabilities that significantly amplify both operational impact and financial risk […]
Since emerging in the mid-2010s as a persistent threat actor, the IRGC-linked APT35 collective has continually adapted its tactics to target government entities, energy firms, and diplomatic missions across the Middle East and beyond.
Initially focused on credential harvesting via targeted phishing campaigns, the group has evolved a modular toolkit capable of deep network infiltration and long-term espionage.
Its operations begin with carefully crafted spear-phishing messages that exploit legacy Office macro vulnerabilities, setting the stage for stealthy deployment of backdoors.
Cloudsek analysts noted that APT35’s toolset includes both custom and publicly available components, allowing researchers to trace distinct code fingerprints even as the adversary pivots between payloads.
After the second paragraph, Cloudsek researchers identified a correlation between the group’s use of .NET-based implants and a pronounced shift toward in-memory execution techniques, reducing disk artifacts and complicating forensic analysis.
This discovery has driven the development of tailored detection rules for network defenders.
The campaign’s impact has been significant: compromised networks have suffered data exfiltration of diplomatic communications, intellectual property theft, and strategic reconnaissance tailored to state-level objectives.
APT35’s operational security measures—including randomized C2 beaconing intervals and encrypted channels over HTTP/HTTPS—have consistently evaded traditional signature-based defenses. Victims often remain unaware of compromise for months, allowing deep data collection and lateral propagation.
The group’s espionage operations extend beyond technical tradecraft. APT35 operators conduct extensive open-source intelligence (OSINT) gathering to craft highly convincing lures, leveraging geopolitical events and professional contacts in targeted organizations.
This human-centric approach, combined with advanced malware, underscores the adversary’s adaptability and resource investment.
Infection Mechanism Deep Dive
APT35’s primary infection vector leverages weaponized Word documents containing obfuscated VBA macros designed to load a staged downloader into memory.
Upon document opening, the macro executes a PowerShell command that masquerades as a legitimate Windows Update process:-
This downloader decrypts the next-stage DLL using an AES key embedded in the VBA code. The decrypted payload, typically a .NET-compiled backdoor known as PhosphorusLoader, registers as a COM object for persistence.
It employs process hollowing to inject into svchost.exe, intermittently beaconing to a hidden C2 domain. Figure 1 illustrates this injection workflow, with the AES key stored in an encrypted resource section for evasion.
Follow us on Google News, LinkedIn, and X to Get More Instant Updates, Set CSN as a Preferred Source in Google.
Security researchers have uncovered a sophisticated cyberattack campaign where Chinese threat actors are exploiting web applications using an innovative log poisoning technique to deploy web shells and subsequently weaponize Nezha, a legitimate server monitoring tool, for malicious command execution. Creative Attack Methodology Discovered Beginning in August 2025, cybersecurity firm Huntress identified an intrusion where attackers […]
A sophisticated technique known as hidden text salting has emerged as a significant threat to email security systems, allowing cybercriminals to bypass detection mechanisms through the strategic abuse of cascading style sheets (CSS) properties.
This attack vector enables threat actors to embed irrelevant content, or “salt,” within various components of malicious emails while rendering it invisible to recipients.
The technique has gained widespread adoption across multiple threat categories, including phishing campaigns, scam operations, and advanced persistent threats targeting high-value organizations.
Hidden text salting represents a fundamental shift in how adversaries approach email-based attacks, moving beyond traditional content-based evasion to exploit the very foundation of web presentation standards.
By manipulating CSS properties such as font-size, opacity, display visibility, and container dimensions, attackers can inject substantial amounts of hidden content that confuses automated detection systems while maintaining the visual integrity of their malicious messages.
This approach has proven particularly effective against both signature-based security solutions and advanced machine learning models that rely on textual analysis for threat classification.
The technique manifests across four primary injection points within email infrastructure: preheaders, headers, message bodies, and HTML attachments.
Each location offers unique advantages for threat actors seeking to evade specific detection mechanisms. Preheader injection allows attackers to manipulate preview text that appears in email clients, while header manipulation can confuse language detection algorithms.
A scam email impersonating the PayPal brand (Source – Cisco Talos)
Body injection remains the most prevalent method, offering extensive opportunities for content dilution, whereas attachment-based salting complicates static analysis procedures used by security vendors.
Cisco Talos researchers identified this emerging threat pattern through comprehensive monitoring of over sixteen months of email campaigns, analyzing threats from March 2024 through July 2025.
The research reveals that hidden text salting occurs significantly more frequently in malicious emails compared to legitimate communications, with spam and phishing campaigns showing disproportionately higher usage rates.
The analysis encompasses multiple threat actor groups employing variations of the technique, from simple character insertion to sophisticated multilingual content injection designed to confuse natural language processing systems.
The HTML source snippet of the above scam email shows how salt is hidden in the above email (Source – Cisco Talos)
The implications extend beyond traditional email security, potentially impacting modern defense systems that incorporate large language models for threat analysis.
Researchers have demonstrated how minimal hidden content can alter the sentiment analysis and intent classification performed by AI-driven security tools, effectively transforming malicious messages into seemingly benign communications from an algorithmic perspective.
Technical Implementation Methods and Detection Evasion
The technical implementation of hidden text salting relies on three primary categories of CSS property manipulation: text properties, visibility controls, and dimensional constraints.
Text-based concealment involves setting font-size to zero or near-zero values, matching font colors to background colors, or manipulating line-height properties to render content invisible. These methods prove effective against parsers that extract visible text content without considering CSS styling contexts.
Visibility and display property abuse represents the most straightforward implementation approach, utilizing CSS declarations such as “display: none,” “visibility: hidden,” or “opacity: 0” to remove content from visual rendering while preserving it within the HTML source.
Advanced variants employ conditional styling based on media queries or client-specific properties, ensuring content remains hidden across different email clients and viewing environments.
Dimensional manipulation techniques focus on container-based concealment, where threat actors create HTML elements with zero width, height, or maximum dimensions, effectively clipping content beyond visible boundaries.
This approach often incorporates overflow controls set to “hidden,” ensuring that oversized content within constrained containers remains invisible to recipients while remaining accessible to HTML parsers and text extraction algorithms.
<div style="font-size: 0px; color: #ffffff; line-height: 1px;
max-height: 0px; max-width: 0px; opacity: 0;
overflow: hidden;">
Hidden salt content here
</div>
The sophistication of implementation varies considerably across threat actors, with some employing simple single-property concealment while others utilize complex multi-layered approaches combining multiple CSS techniques.
Advanced implementations incorporate responsive design principles, ensuring hidden content remains concealed across desktop, mobile, and webmail platforms.
Some campaigns utilize CSS selectors to apply concealment properties across multiple HTML elements simultaneously, reducing code redundancy while maintaining evasion effectiveness.
Character-level injection represents another prevalent technique, where threat actors insert zero-width space characters (ZWSP) or zero-width non-joiner (ZWNJ) characters between letters of brand names or sensitive keywords.
While invisible to human recipients, these characters effectively break keyword matching algorithms and signature-based detection systems that rely on exact string matching for threat identification.
The research conducted by Cisco Talos demonstrates that hidden text salting has evolved from a simple evasion technique to a sophisticated attack methodology capable of undermining both traditional and next-generation email security solutions, requiring organizations to implement comprehensive detection and filtering mechanisms that account for CSS-based content concealment.
Follow us on Google News, LinkedIn, and X to Get More Instant Updates, Set CSN as a Preferred Source in Google.
CrowdStrike has disclosed two critical vulnerabilities affecting its Falcon sensor for Windows that could enable attackers to delete arbitrary files and potentially compromise system stability. The cybersecurity company released patches for both security flaws in its latest sensor version 7.29, along with hotfixes for earlier versions. Security Vulnerabilities Enable File Deletion Attacks The vulnerabilities, identified […]
A significant Microsoft 365 outage blocked user access to several critical services, including Microsoft Teams, Exchange Online, and the Microsoft 365 admin center.
The incident began late on Wednesday, October 8, 2025, leaving organizations worldwide unable to utilize essential communication and administrative platforms.
Microsoft acknowledged the issue promptly and began investigating the widespread reports from users who were unable to sign in or use the affected applications, initiating a high-priority response to diagnose the root cause and restore functionality.
The outage had a significant impact, affecting a broad range of users who rely on the Microsoft 365 ecosystem for daily operations. As reports flooded in, Microsoft’s engineering teams launched an immediate investigation.
We’re investigating reports of issues accessing Microsoft 365 services and the Microsoft 365 admin center. More details can be found in the Service Health Dashboard under MO1168102 or https://t.co/ehoQShPjzB.
At approximately 10:56 PM GMT+5:30, the company confirmed it had identified a potential directory operations issue within a portion of its dependent service infrastructure.
This pointed to a backend problem related to how user authentication and service requests are handled. The initial focus was on analyzing diagnostic data to understand the full scope of the directory issue and to formulate an effective mitigation strategy without causing further disruption to the service environment.
Initial Mitigations
Microsoft engineers actively worked to address the issue. At 11:36 PM GMT+5:30, the company announced it was rebalancing a section of the affected service infrastructure.
This mitigation action involved redirecting traffic and service loads away from the problematic components to healthy infrastructure.
By redistributing the operational strain, the goal was to alleviate the pressure on the failing directory service and allow for the resumption of normal operations.
Our traffic rebalancing efforts were successful in mitigating this issue. We’ve confirmed after a period of monitoring that the impact is no longer occurring. More details can be found in the Service Health Dashboard under MO1168102 or https://t.co/PEpgF7sst4.
This rebalancing effort was a critical step in the recovery process, designed to stabilize the platform and begin restoring access for affected users.
By the early hours of October 9, 2025, Microsoft’s mitigation efforts began to show positive results. The company reported that it was observing recovery across the affected services in response to the traffic rebalancing.
While services started coming back online for many users, Microsoft stated its teams would continue to closely monitor the entire environment.
This ongoing monitoring is crucial to ensure the remediation is stable and to prevent a recurrence of the issue.
The company continued to provide quick updates, confirming the positive trend while maintaining a state of heightened vigilance until full service stability was confirmed across all impacted regions and services.
Cyber Awareness Month Offer: Upskill With 100+ Premium Cybersecurity Courses From EHA's Diamond Membership: Join Today
The White House wants to speed up shipbuilding, but first, the Navy has to loosen its grip—at least according to one senator.
“The Navy has taken over shipbuilding, I believe, to their detriment,” said Sen. Tim Sheehy, R-Mont., a member of the Senate Armed Services Committee, during a Center for Strategic and International Studies event on Tuesday. “An average naval officer is not a shipbuilding expert. They're just not…It takes decades to build that institutional knowledge of not just naval architecture, but also knowledge of the industrial base, to effectively build the ship and build it fast and build it right. And the Navy lost that institutional knowledge decades ago.”
Sheehy, a former Navy SEAL, said the Navy must “stop trying to control every step of the process” and be more decisive on what it needs—which will in turn bring down costs and speed up production.
“Stop the change orders, stabilize specs, lock in engineering requirements and then push it out to industry to bid and manage the build of those vessels as fast and cheaply as possible. And we're going to see quantity go up, price go down, and we're going to see suppliers coming to the table—we're going to see a broader supplier base,” Sheehy said. “So, for all the bashing of the big defense primes, of the Big Five—‘They're bad.’ No, they're not. They've just responded to the reality. The Pentagon has built a landscape and asked them to play by a set of rules. They've played by those rules, and those rules have encouraged mass consolidation, very long, drawn-out processes, where the process is the point, not the outcome. And we have to change those incentives to where the outcome is the point, not the process.”
Earlier this year, the White House issued executive orders meant to speed up defense acquisitions and shipbuilding. The Pentagon followed suit with its own directive for buying software. But the Pentagon and Congress have wrestled with acquisition reform for years.
Defense acquisition “has to be lit on fire and destroyed and rebuilt from the ground up,” Sheehy said. “So, it's more than a radical rethink. We need a revolutionary point of view on this. And if we can fix shipbuilding, I believe that will trickle down to the rest of defense acquisition.”
In recent years, Navy leaders have called for more competition in the shipbuilding sector as a means to reduce production delays and ballooning costs. Some of those changes are already underway as Navy Secretary John Phelan moves to reorganize the service’s drone-acquisition structure.
But while Sheehy stressed the need to welcome the private sector and more startups to manufacturing, Sen. Tim Kaine, D-Va., said the Navy should look to share maintenance and repair work with allies and partners.
“We have to be 100 percent better. And that is not incremental, that is, again, expanding your capacity through creative work with allies and bringing the private sector—and the innovative part of the private sector, not just the incumbent part of the private sector—bringing them in a much more robust way,” Kaine said at the same event Tuesday.
Kaine, who is the SASC’s ranking member on its seapower subcommittee, also pushed for a bigger defense budget to help spur the maritime industrial base, saying the U.S. can’t ask NATO countries to spend 5 percent of their GDP if it's not doing the same.
“Three percent is about where we are, maybe a little bit north of that. I mean, at a minimum, we need to do what we're asking other NATO nations to do…where it was five of 34 nations meeting the 2 percent, it's now 29 of 34. But I like the fact that President [Donald] Trump is now going beyond in saying 2 percent isn’t enough. It should be [5 percent]. Now, we will give you credit for some infrastructure investments. It's not just weapons platforms. So, we're slightly opening up the definition,” Kaine said, noting that U.S. infrastructure investments could bring defense spending closer to 5 percent of GDP.
But it’s a complex problem that requires the U.S. and its allies to evaluate and balance competing priorities, such as commerce security in the Red Sea.
“When the Houthis were firing into the Red Sea. I mean, the U.S. is basically paying the entire bill, even though they weren't firing at U.S. ships. The U.S. is paying the entire bill for protecting commerce through the Red Sea, ships flagged by other nations,” Kaine said. “Obviously, we're going to defend U.S. military ships, but a lot of what they were firing at was commercial ships from other nations…We have a lot of things we want to do. Are we honest about matching up those aspirations with dollars? But that is why pushing allies to do more and getting closer together with allies is so important.”