HomeWorldwideMiddle EastTelegram, Trusted Tools and a Hidden Payload: Inside the New Attack Targeting...

Telegram, Trusted Tools and a Hidden Payload: Inside the New Attack Targeting Middle East Governments

Date:

Related stories

spot_imgspot_imgspot_imgspot_img

A new cyber espionage campaign targeting government entities in the Middle East has exposed a familiar but increasingly sophisticated problem: attackers no longer need obviously malicious infrastructure to operate quietly inside a victim’s network.

According to research published by Zscaler ThreatLabz on July 20, 2026, a previously undocumented threat actor has been observed targeting government organizations in the region with a multi-stage attack chain involving three malware tools: TELESHIM, MIXEDKEY and BINDCLOAK.

The campaign is notable not simply because of the malware itself, but because of how deliberately it was engineered to avoid detection. The attackers used legitimate executables to sideload malicious code, scheduled tasks to maintain persistence, heavy code obfuscation to frustrate analysts, and the Telegram API as a command-and-control channel allowing malicious traffic to blend into communications with a widely used legitimate online service.

ThreatLabz assesses with moderate-to-high confidence that the operator is based in East Asia, based on technical and operational clues. However, the researchers have not attributed the activity to any known advanced persistent threat (APT) group.

That distinction matters. The campaign is clearly sophisticated, but its ultimate identity and motivation remain unconfirmed.

A Multi-Stage Intrusion Designed to Stay Quiet

The attack begins with an ISO file containing a legitimate ASUSTeK RegSchdTask.exe executable. The executable is used to sideload a malicious DLL called AsTaskSched.dll, allowing the attacker’s code to run within the context of a legitimate process.

This is an important defensive lesson.

Rather than arriving as a clearly identifiable malicious executable, the campaign uses trusted software as part of its execution chain. This type of DLL sideloading can complicate detection because defenders must distinguish between legitimate software behavior and malicious code loaded alongside it.

The first-stage malware, which ThreatLabz named TELESHIM, is a 32-bit C++ Windows DLL. Researchers identified three distinct versions, with the variant used in this campaign compiled in July 2026.

Once active, TELESHIM installs a hook into the host executable and redirects execution to its own payload. The technique allows malicious code to execute within the legitimate application’s process context, potentially making behavioral detection more difficult.

The malware also checks for a specific mutex to prevent multiple copies from running simultaneously a common malware mechanism that can also provide investigators with a useful detection opportunity.

But TELESHIM’s real sophistication lies in what happens next.

The Malware That Tries to Outsmart the Analysts

ThreatLabz found that TELESHIM uses extensive obfuscation, including control flow flattening (CFF), mixed boolean arithmetic (MBA) and opaque predicates.

In simple terms, these techniques make malware code deliberately difficult to understand.

For defenders and malware analysts, reverse engineering a malicious program is often critical to determining what it does, how it communicates and how to stop it. Obfuscation increases the time and effort required to reach those answers.

TELESHIM also uses several anti-analysis techniques designed to detect environments commonly used by security researchers.

The malware performs intensive file operations, generating roughly 1 GB of disk I/O during one execution sequence. It checks whether a hypervisor is present and examines RAM speed through Windows Management Instrumentation (WMI).

If the environment appears to be virtualized or unsuitable for the attacker’s intended target, execution can terminate.

This behavior highlights an important evolution in modern malware: the attack is not only trying to evade security products it is also trying to evade the people investigating it.

For security teams, that means sandboxing alone is not necessarily enough. Malware capable of recognizing analysis environments may behave differently in a laboratory than it does on a real endpoint.

Telegram Becomes the Command Center

One of the campaign’s most striking features is its use of the Telegram API for command-and-control (C2).

TELESHIM communicates through api.telegram.org, using the platform’s API to poll for instructions. The malware stores its Telegram bot token and chat ID in encrypted and encoded form, decrypting them only at runtime.

The choice is strategically interesting.

Traditional malware C2 infrastructure may rely on suspicious domains, dedicated command servers or unusual network patterns. By using a legitimate, widely recognized service, attackers can potentially hide malicious communication among normal traffic.

TELESHIM also uses a hardcoded browser-like User-Agent, further attempting to make its communications look ordinary.

The malware identifies infected machines through their MAC addresses. Commands are directed to individual machines using the MAC address as an identifier, while command results are encrypted before being returned to the attacker.

The malware can also receive files through Telegram, decrypt them and use scheduled tasks to launch them.

The result is a flexible remote-access mechanism that turns a familiar communications platform into an operational control channel.

For organizations, this is a reminder that allowlisting popular cloud and communications services is not the same as trusting everything that travels through them.

The Intruders Started Looking Around

ThreatLabz was able to observe post-compromise activity between July 7 and July 9, 2026.

The attackers conducted reconnaissance to understand their environment.

Commands were used to identify:

  • Local users
  • Running processes
  • Hostnames
  • Network configuration
  • DNS information
  • Active network connections
  • Files and directories
  • Potential staging locations

The activity provides a useful reminder of what happens after an attacker gains an initial foothold.

The first objective may not be immediate data theft or disruption.

It may simply be understanding where they are.

Once inside, the threat actor searched directories under C:\ProgramData\ and identified locations that could be used to stage additional payloads.

Researchers also observed the creation of a scheduled task called Feedback, configured to execute every 10 minutes.

This gave the attacker another persistence mechanism.

MIXEDKEY: The Second Layer of the Attack

The next stage introduced another previously undocumented tool: MIXEDKEY.

The loader used legitimate software, including a GoPro binary and Microsoft runtime libraries, alongside a malicious DLL called pthreadVC2.dll.

The legitimate executable was used to sideload the malicious DLL.

Again, the principle was deception.

The attacker attempted to make malicious components appear to belong to legitimate software.

MIXEDKEY then decrypted and reflectively loaded the final payload, allowing the malicious code to be executed directly in memory rather than through a conventional process launch.

The final encrypted payload was stored under:

C:\ProgramData\Crypto\DSS\

The filename was designed to resemble a file associated with Microsoft’s Platform Crypto Provider, helping it appear legitimate at a glance.

This is a broader trend security teams should watch closely: malware is increasingly designed not just to hide, but to look boring.

A suspicious filename may attract attention. A file that looks like an ordinary system component may not.

The Payload That Knows Its Victim

One of the more technically interesting elements of the campaign is the use of environmental keying.

The final payload was encrypted using a key derived from the victim machine’s volume serial number.

In practical terms, the payload is tied to the environment in which it is intended to run.

That creates another layer of protection for the attacker.

If researchers obtain the encrypted payload but do not have access to the correct victim environment—or the required volume serial number—they may have difficulty decrypting and analyzing it.

This approach demonstrates how threat actors are increasingly combining malware encryption with target-specific environmental information.

It is not simply about hiding the malware.

It is about making the malware selective.

BINDCLOAK: The Final Piece

The final payload identified by ThreatLabz is a 64-bit C++ implant called BINDCLOAK.

The malware communicates with the C2 domain cert.hypersnet[.]com.

ThreatLabz said a detailed technical analysis of BINDCLOAK will be published in a follow-up report.

That means the full picture of the campaign is not yet available.

What is already clear, however, is that the operation was carefully constructed as a layered system:

Initial delivery → legitimate executable → malicious DLL sideloading → TELESHIM → reconnaissance → MIXEDKEY → encrypted payload → BINDCLOAK

Each stage serves a purpose.

One establishes execution.

Another provides persistence.

Another hides the payload.

Another decrypts and loads the final implant.

And another provides command and control.

This modular approach makes the intrusion more resilient. If one component is discovered, the attacker may still have other mechanisms available.

Why This Matters to Middle East Governments and Businesses

The campaign is particularly relevant to organizations across the Middle East because government networks remain attractive targets for espionage, intelligence gathering and strategic access.

But the lessons extend well beyond government.

The techniques documented by ThreatLabz could be relevant to organizations across critical infrastructure, telecommunications, energy, financial services and other sectors where attackers may seek long-term access.

The campaign demonstrates several security challenges that organizations should take seriously:

Trusted software can be abused.
Security teams cannot assume that a legitimate executable is safe simply because it is digitally signed or associated with a recognized vendor.

Popular online services can become C2 infrastructure.
Blocking obviously malicious domains is no longer enough. Organizations need behavioral visibility and stronger endpoint detection.

Attackers are actively studying defenders.
Anti-virtualization and anti-analysis techniques mean that malware may behave differently under investigation.

Persistence can be deceptively simple.
Scheduled tasks remain an effective mechanism for maintaining access.

Post-compromise reconnaissance can be a critical detection window.
Commands such as net user, tasklist, ipconfig, netstat and extensive directory enumeration may reveal an attacker before the final objective is achieved.

For organizations strengthening their cybersecurity posture, the key lesson is straightforward: detection must focus on behavior and context, not just known malware signatures.

10 Actions Security Teams Should Take Now

1. Hunt for suspicious DLL sideloading

Review legitimate executables that load DLLs from unusual directories, particularly under writable locations such as C:\ProgramData\.

2. Audit scheduled tasks

Look for newly created or modified scheduled tasks, especially those running every few minutes or at unusually frequent intervals.

3. Monitor Telegram API usage

Do not automatically block Telegram, but investigate unexpected connections to Telegram APIs from servers, administrative workstations and sensitive government systems.

4. Review outbound connections

Look for unusual outbound traffic from endpoints that normally have limited internet access.

5. Investigate reconnaissance commands

Create detections for suspicious combinations of commands such as net user, tasklist, ipconfig /all, netstat -ano and extensive directory enumeration.

6. Strengthen endpoint telemetry

Ensure EDR solutions capture process creation, DLL loading, command-line activity, scheduled task creation and network connections.

7. Monitor trusted binaries for abnormal behavior

A legitimate executable launching an unusual child process, loading an unexpected DLL or communicating externally should be investigated.

8. Inspect ProgramData carefully

Review new directories and files under C:\ProgramData\, particularly those attempting to imitate system or vendor software.

9. Use threat intelligence to improve detection

Security teams should continuously update detection rules using current indicators of compromise and behavioral indicators from trusted threat research.

10. Train defenders to recognize post-compromise behavior

Technical training and cybersecurity awareness should cover living-off-the-land techniques, DLL sideloading, persistence mechanisms, C2 over legitimate services and attacker reconnaissance.

A Broader Lesson: The New Battle Is About Trust

The most important lesson from this campaign may not be the malware names.

It is the abuse of trust.

The attackers trusted legitimate software.

They trusted popular internet infrastructure.

They trusted normal-looking system directories.

They trusted scheduled tasks.

And they attempted to make malicious activity look like ordinary activity at every stage.

That is why modern cybersecurity services must move beyond the question, “Is this file malicious?”

The better question is:

“Does this behavior make sense in this environment?”

A government workstation communicating with Telegram may be normal. A server creating a scheduled task every 10 minutes may not be. A signed executable loading a DLL from an unexpected directory may deserve investigation. A process suddenly enumerating users, network connections and sensitive directories may be the first visible sign of an intrusion already underway.

Security teams that connect these individual signals may detect an attack chain before the final payload arrives.

The Campaign Is Still Unfolding

Zscaler ThreatLabz has not attributed the campaign to a known APT group, and the researchers have indicated that their assessment could evolve as more evidence becomes available.

The upcoming technical analysis of BINDCLOAK may provide additional insight into the campaign’s capabilities, infrastructure and objectives.

For now, the discovery of TELESHIM, MIXEDKEY and BINDCLOAK offers an important warning to security teams worldwide—and particularly to organizations responsible for protecting government and strategic infrastructure in the Middle East.

The attackers are not necessarily trying to break through the front door.

They are looking for trusted paths, familiar tools and overlooked behavior.

And once they get inside, they are taking their time.

The best defense is to make sure your security team is looking not only for malware, but for the sequence of behaviors that malware leaves behind.

CyberCory Threat Intelligence Note

This article is based primarily on the July 20, 2026 technical research published by Zscaler ThreatLabz. The threat actor has not been publicly attributed to a known APT group. Zscaler’s assessment that the operator is likely based in East Asia should therefore be treated as an intelligence assessment rather than definitive attribution.

Cybersecurity teams should prioritize behavioral detection, threat hunting and environment-specific monitoring while awaiting additional technical details in the promised BINDCLOAK analysis.

For organizations looking to strengthen their defensive capabilities, Saintynet Cybersecurity provides cybersecurity consulting, security services, professional training and awareness programs relevant to modern threat detection and incident response.

Ouaissou DEMBELE
Ouaissou DEMBELE
Ouaissou DEMBELE is a seasoned cybersecurity expert with over 12 years of experience, specializing in purple teaming, governance, risk management, and compliance (GRC). He currently serves as Co-founder & Group CEO of Sainttly Group, a UAE-based conglomerate comprising Saintynet Cybersecurity, Cybercory.com, and CISO Paradise. At Saintynet, where he also acts as General Manager, Ouaissou leads the company’s cybersecurity vision—developing long-term strategies, ensuring regulatory compliance, and guiding clients in identifying and mitigating evolving threats. As CEO, his mission is to empower organizations with resilient, future-ready cybersecurity frameworks while driving innovation, trust, and strategic value across Sainttly Group’s divisions. Before founding Saintynet, Ouaissou held various consulting roles across the MEA region, collaborating with global organizations on security architecture, operations, and compliance programs. He is also an experienced speaker and trainer, frequently sharing his insights at industry conferences and professional events. Ouaissou holds and teaches multiple certifications, including CCNP Security, CEH, CISSP, CISM, CCSP, Security+, ITILv4, PMP, and ISO 27001, in addition to a Master’s Diploma in Network Security (2013). Through his deep expertise and leadership, Ouaissou plays a pivotal role at Cybercory.com as Editor-in-Chief, and remains a trusted advisor to organizations seeking to elevate their cybersecurity posture and resilience in an increasingly complex threat landscape.

Subscribe

- Never miss a story with notifications

- Gain full access to our premium content

- Browse free from up to 5 devices at once

Latest stories

spot_imgspot_imgspot_imgspot_img