The Gentlemen’s Hidden Arsenal: Exposed Server Reveals a Ransomware Affiliate’s Windows Takeover Toolkit + Video

Listen to this Post

Featured ImageIntroduction: A Rare Look Inside the Machinery of a Ransomware Operation

Ransomware attacks are often discovered only after the damage is visible—when files are encrypted, systems are offline, and organizations are forced to investigate how attackers entered their networks. But an exposed server can sometimes reveal something far more valuable: the tools, scripts, payloads, and operational methods prepared before an attack reaches its final stage.

That is what researchers appear to have uncovered on an exposed directory hosted at 193.233.202[.]17. The server contained an extensive collection of files linked to a suspected affiliate of the The Gentlemen ransomware operation, offering an unusually detailed view of how the actor may establish persistence, steal credentials, weaken endpoint defenses, move through Windows domains, and maintain multiple command-and-control channels.

The recovered toolkit was not built around a single piece of malware. Instead, it combined legitimate Windows utilities, open-source offensive tools, PowerShell automation, scheduled tasks, remote administration techniques, credential-dumping utilities, network tunneling software, and a blockchain-assisted remote-access implant known as EtherRAT.

The exposure highlights an important reality of modern ransomware activity: many attacks are not isolated events. They are carefully staged operations in which access is expanded, defenses are weakened, credentials are collected, and multiple fallback paths are established long before encryption begins.

Original Summary: An Exposed Directory Reveals 82 Files

Researchers discovered approximately 82 files totaling around 145 MB on the exposed infrastructure. The collection reportedly included 37 Windows executables, 22 PowerShell scripts, nine batch files, six scheduled-task XML files, an EtherRAT MSI installer, Sliver payloads, Go-based reverse shells, Chisel, Ligolo-ng, Mimikatz, and several privilege-escalation tools associated with the Potato family.

The files suggest that the operator was preparing for several stages of an intrusion. These included gaining privileged access, creating persistence, disabling security software, stealing Windows credentials, deploying payloads to remote systems, and establishing resilient command-and-control infrastructure.

The server had already been associated with suspicious activity. Earlier investigations reportedly linked 193.233.202[.]17 and 77.110.122[.]137 to proxy infrastructure connected with defense-evasion activity attributed to The Gentlemen. A later investigation also identified EtherRAT being distributed through a ClickFix campaign.

Although the campaigns were not formally attributed to the same operator, researchers observed several overlaps, including similar MSI naming, shared infrastructure, and the use of the same Ethereum smart contract. These connections may indicate that the activity belongs to the same operational cluster or that multiple actors are sharing infrastructure and tooling.

The Toolkit: A Modular Arsenal Rather Than a Single Malware Family

The exposed collection appears to represent a modular intrusion framework rather than a traditional malware package. Each tool could support a different stage of an attack.

PowerShell scripts may automate deployment and persistence. Scheduled tasks may provide repeatable execution across compromised systems. Credential-dumping utilities may help attackers obtain passwords and authentication material. Network tunneling tools may allow operators to reach internal systems that are not directly exposed to the internet.

This modular approach gives ransomware affiliates flexibility. If one technique is detected or blocked, another tool may be used to continue the operation.

The presence of both custom payloads and widely available security-testing tools also complicates detection. Many of the tools found in the directory are not malicious by design. They can be used legitimately by penetration testers and security professionals. Their danger depends on how they are deployed and whether their activity matches authorized administrative work.

Scheduled Tasks: Turning Windows Automation Into an Attack Platform

Windows Task Scheduler appears to have played a central role in the suspected operation.

One recovered file, identified as task39.xml, reportedly configured a task to run under the SYSTEM account, giving the executed process extremely high privileges on the affected machine.

The task downloaded a PowerShell script from attacker-controlled infrastructure and executed it automatically. According to the recovered material, the script attempted to create a local administrator account, add that account to the Remote Desktop Users group, and place it into the Domain Admins group.

If successful, these actions could provide attackers with persistent administrative access and potentially extend their control across an entire Windows environment.

The use of scheduled tasks is especially concerning because Task Scheduler is a legitimate Windows component. Security teams cannot simply block it without disrupting normal administration. Detection therefore depends on identifying unusual task names, suspicious execution paths, unexpected PowerShell activity, or tasks created by accounts that do not normally manage enterprise infrastructure.

Security Evasion: Disabling ESET Services

The recovered scripts reportedly attempted to stop and disable multiple ESET security services.

Disabling endpoint protection is a common step during ransomware operations because security software may detect credential theft, lateral movement, payload deployment, or encryption activity.

However, attempts to disable security products can also become strong detection signals. Organizations should monitor for unexpected service-control activity, particularly when endpoint security services are stopped by PowerShell, command-line utilities, scheduled tasks, or unfamiliar administrative accounts.

A successful defense strategy should not depend entirely on a single endpoint agent. Centralized logging, network monitoring, identity controls, and tamper protection can help preserve visibility even when an attacker attempts to weaken local security tools.

Credential Theft: Exporting Windows Registry Hives

The scripts reportedly exported the SAM, SYSTEM, and SECURITY registry hives and uploaded them to attacker-controlled infrastructure.

These Windows registry hives can contain information useful for credential extraction and offline analysis. When combined, they may allow attackers to recover password hashes or obtain sensitive authentication material.

Credential theft is often a turning point in a ransomware intrusion. An attacker who begins with access to one workstation may use recovered credentials to access servers, domain controllers, file shares, backup systems, or cloud-connected services.

Monitoring should therefore focus on suspicious registry-hive exports, unusual access to sensitive system files, and unexpected archive or upload activity immediately following credential-collection commands.

Living Off the Land: Using Windows Tools Against Windows Networks

The suspected affiliate relied heavily on legitimate Windows utilities rather than depending exclusively on custom malware.

Scripts reportedly used certutil.exe to download MSI packages and msiexec.exe to install them silently.

This technique is commonly described as living off the land, where attackers abuse trusted operating-system tools that are already installed on the target.

Because these binaries are signed and widely used, traditional antivirus products may not treat their presence as suspicious. The context matters more than the executable itself.

For example, certutil.exe downloading an MSI package from an unfamiliar external server may be suspicious. msiexec.exe launching a package from a temporary directory without user interaction may also warrant investigation.

The same tools can be legitimate in enterprise environments, which means defenders need behavioral rules rather than simple allow-or-block decisions.

Deceptive Task Names: Hiding in Routine Windows Activity

Several recovered scheduled tasks used names designed to resemble ordinary Windows maintenance components, including:

WinSvcUpdate2

WindowsUpdSvc

WindowsUpdateSvc

These names may appear harmless during a quick review, especially in large environments containing hundreds or thousands of scheduled tasks.

Attackers often use familiar naming patterns because defenders tend to focus on obviously suspicious entries. A task named “WindowsUpdateSvc” may receive less scrutiny than one named “RansomwareLoader.”

However, a convincing name does not make a task legitimate. Analysts should inspect the executable path, command-line arguments, account context, creation time, network activity, and parent process.

A scheduled task that claims to be a Windows update component but launches PowerShell from an unusual directory should be treated as a high-priority anomaly.

Lateral Movement: Reaching Other Systems Through SMB and WMI

The recovered scripts reportedly attempted to access internal systems using administrative SMB shares and Windows Management Instrumentation.

Administrative shares such as C$ and ADMIN$ are legitimate Windows features used by administrators. Attackers with sufficient credentials can also abuse them to copy payloads to remote systems.

The scripts then attempted to create scheduled tasks remotely, allowing malware or scripts to execute on additional hosts.

When direct deployment failed, the operation reportedly used fallback methods. This suggests that the toolkit was designed for resilience rather than a single, fragile attack path.

The ability to move laterally is often more important than the initial compromise. A ransomware affiliate may begin on a low-value endpoint but continue searching until it reaches privileged accounts, domain controllers, file servers, backup infrastructure, or systems containing valuable data.

EtherRAT: A Node.js Implant Designed for Flexible Control

The primary payload identified in the recovered material was EtherRAT, a Node.js-based remote-access implant distributed through an MSI installer.

After installation, EtherRAT reportedly creates files under:

%LOCALAPPDATA%MicrosoftSltt

The malware can download Node.js if the runtime is not already available. It then decrypts and launches its JavaScript-based backdoor.

For persistence, EtherRAT reportedly uses a Registry Run key named:

WindowsHost

Registry Run keys are commonly used by legitimate applications to start automatically when a user logs in. They are also frequently abused by malware because they provide a relatively simple persistence mechanism.

The combination of MSI installation, Node.js deployment, encrypted JavaScript, and Registry Run-key persistence allows the implant to blend multiple technologies into one execution chain.

Blockchain-Based Command and Control: Why Ethereum Changes the Investigation

One of EtherRAT’s most distinctive features is its use of an Ethereum smart contract to retrieve command-and-control information.

Instead of storing a fixed C2 domain directly inside the malware, the implant queries a smart contract through public Ethereum RPC services and retrieves the current C2 address.

The reported sample used the following contract:

0xb3f2897f2bc797e5b9033faef8c81e92b01cb831

This design provides operational flexibility. The attacker may update the C2 information without rebuilding the malware or distributing a new payload.

Traditional malware often contains a hard-coded domain or IP address. Once defenders identify and block that address, the malware may lose contact with its operators. EtherRAT’s approach reduces that dependency by separating the implant from the active C2 location.

At the same time, blockchain-based infrastructure creates an investigative advantage. Smart-contract activity is recorded permanently. Even when attackers rotate their domains, historical contract data may preserve evidence of previous infrastructure.

Researchers reportedly reconstructed five historical EtherRAT domains:

publisherresolution[.]com

resumeacceptable[.]com

simultaneouslypower[.]com

wiselystarting[.]com

itemrange[.]com

These domains may help defenders identify previous activity, search historical DNS logs, and investigate possible compromises.

ClickFix Delivery: Social Engineering Meets Persistent Remote Access

EtherRAT was also reportedly observed in a ClickFix campaign.

ClickFix attacks typically manipulate users into copying and running commands under the false impression that they are completing a verification step, fixing an error, or proving that they are human.

The technique is effective because it turns the victim into an active participant in the execution chain. Instead of exploiting a software vulnerability, attackers persuade users to run commands themselves.

This can bypass some traditional security assumptions. A user may execute a PowerShell command from a trusted Windows dialog without realizing that the command downloads malware.

Security awareness programs should therefore teach employees to treat unexpected instructions to open Run, Command Prompt, PowerShell, or Terminal as suspicious—especially when a website claims that such actions are required to solve a CAPTCHA or access content.

Deep Analysis: Detection, Hunting, and Defensive Commands

PowerShell Logging: Increase Visibility Into Script Activity

Organizations should enable and centrally collect PowerShell Script Block Logging where appropriate.

Enable-PSRemoting -Force

The command above enables PowerShell remoting and should not be used as a general detection measure. In production environments, administrators should carefully control remoting access and ensure that logging is enabled through approved security policies.

To review PowerShell operational events:

Get-WinEvent -LogName "Microsoft-Windows-PowerShell/Operational" |
Select-Object TimeCreated, Id, Message |
Format-List

Security teams should search for encoded commands, unexpected downloads, registry modifications, service-control commands, and scripts executed by unusual accounts.

Scheduled-Task Hunting: Search for Suspicious Names

Administrators can review scheduled tasks with:

schtasks /query /fo LIST /v

To search for task names associated with the recovered toolkit:

Get-ScheduledTask |
Where-Object {
$_.TaskName -match "WinSvcUpdate2|WindowsUpdSvc|WindowsUpdateSvc"
} |
Format-List 

Task names alone are not proof of compromise. Analysts should inspect the action, executable path, arguments, account context, and creation history.

Registry Persistence: Inspect the WindowsHost Run Key

The reported EtherRAT persistence mechanism may be investigated with:

Get-ItemProperty `
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Run"

To search specifically for the reported value:

Get-ItemProperty `
"HKCU:\Software\Microsoft\Windows\CurrentVersion\Run" |

Select-Object WindowsHost

Administrators should verify whether the referenced executable or script is expected and trusted.

File-System Hunting: Search for the Reported EtherRAT Directory

The suspected EtherRAT installation path can be checked with:

Get-ChildItem <code>"$env:LOCALAPPDATA\MicrosoftSltt"</code>
-Force -Recurse `
-ErrorAction SilentlyContinue

Unexpected JavaScript files, Node.js binaries, encrypted blobs, or recently created executables should be reviewed carefully.

Service Monitoring: Detect Attempts to Disable Security Software

Security teams can inspect service state with:

Get-Service |
Where-Object {
$_.DisplayName -match "ESET"
} |
Select-Object Name, Status, StartType

Windows event logs should also be reviewed for unexpected service-stop or service-configuration activity.

Network Hunting: Search for Known Infrastructure

Defenders can search proxy, DNS, firewall, and endpoint telemetry for the reported domains and IP addresses.

Example PowerShell query:

Resolve-DnsName publisherresolution.com

Known indicators should be treated as investigation starting points rather than permanent proof of compromise. Infrastructure may change, be reused, or be shared by unrelated activity.

Credential-Access Monitoring: Watch for Registry-Hive Exports

Analysts should investigate command lines involving:

reg save HKLM\SAM
reg save HKLM\SYSTEM
reg save HKLM\SECURITY

A defensive search may include:

Get-WinEvent -FilterHashtable @{
LogName="Security"
StartTime=(Get-Date).AddDays(-7)
} |
Where-Object {
$_.Message -match "reg.exe|SAM|SYSTEM|SECURITY"
}

Exact event availability depends on auditing configuration.

Lateral-Movement Investigation: Review Remote Execution

Security teams should examine remote task creation, SMB administrative-share access, WMI activity, and unusual authentication patterns.

Useful indicators include:

ADMIN$

C$

schtasks /create

wmic

Invoke-Command

A single event may be legitimate. Multiple events occurring together—such as credential dumping, remote file copying, scheduled-task creation, and security-service shutdowns—should be treated as a potentially coordinated intrusion.

What Undercode Say:

The Exposure Shows Preparation, Not Just Malware

The exposed directory provides a view of operational preparation rather than only a finished ransomware payload.

The Toolkit Suggests a Repeatable Attack Model

The combination of scripts, scheduled tasks, installers, tunnels, and credential tools indicates an effort to automate common stages of Windows-domain compromise.

Ransomware Affiliates Are Becoming Infrastructure Operators

Modern affiliates may spend significant time building access and persistence before launching encryption.

The Real Target May Be Domain Control

The attempt to create privileged accounts and interact with Domain Admins suggests that broader domain access may have been an operational objective.

Scheduled Tasks Remain a Powerful Abuse Mechanism

Task Scheduler is trusted, widely available, and difficult to disable without affecting legitimate administration.

Familiar Names Can Become a Defensive Blind Spot

Names resembling Windows update services may reduce scrutiny during manual reviews.

Legitimate Windows Tools Continue to Create Detection Challenges

certutil.exe, msiexec.exe, WMI, SMB, and PowerShell are not inherently malicious.

Context Is More Important Than the Binary

Defenders should evaluate who launched a tool, what it accessed, where it connected, and what happened afterward.

Credential Theft May Be More Dangerous Than the Initial Payload

Stolen credentials can provide access far beyond the first compromised machine.

Security-Product Tampering Is a High-Value Alert

Attempts to stop endpoint protection should trigger immediate investigation.

EtherRAT Demonstrates the Flexibility of Node.js Malware

Node.js allows attackers to build cross-platform components and distribute complex logic through JavaScript.

The MSI Format Can Make Deployment Look Routine

MSI packages are common in enterprise software deployment, making them useful for blending into normal activity.

Blockchain-Based C2 Is an Evolution in Infrastructure Design

The smart contract separates the malware from the current command server.

C2 Rotation Can Reduce the Value of Static Blocklists

Blocking one domain may not be enough when the implant can retrieve new infrastructure dynamically.

Blockchain Also Creates a Permanent Evidence Trail

Smart-contract history may preserve infrastructure information even after domains disappear.

Public Blockchain Data Can Support Threat Hunting

Investigators may use historical contract information to reconstruct previous C2 activity.

ClickFix Campaigns Exploit Human Trust

The user may unknowingly execute the attacker’s command without a software vulnerability being exploited.

Social Engineering Is Becoming More Technical

Victims are increasingly instructed to run commands rather than simply open malicious files.

Security Training Must Include Command-Execution Warnings

Users should understand that websites rarely need them to open PowerShell or Command Prompt.

Multiple Remote-Access Tools Increase Resilience

Sliver, reverse shells, Chisel, and Ligolo-ng may provide alternative communication paths.

Tunneling Tools Can Hide Internal Movement

Encrypted tunnels may allow attackers to reach systems that are not directly accessible from the internet.

Open-Source Tools Can Blur Attribution

The presence of a known tool does not automatically identify the operator.

Infrastructure Overlap Is Important but Not Conclusive

Shared servers, contracts, or filenames may suggest connections without proving direct attribution.

Attribution Requires Multiple Independent Signals

Analysts should combine infrastructure, code, behavior, victimology, timing, and operational patterns.

Exposed Attacker Infrastructure Is a Valuable Intelligence Source

It can reveal tools and techniques before they are used against additional victims.

Defensive Teams Should Preserve Evidence Quickly

Exposed servers may be removed or modified after public reporting.

Historical Logs Become More Valuable After Indicator Discovery

Organizations should search older DNS, proxy, endpoint, and authentication records.

Endpoint Detection Must Be Behavior-Focused

Static signatures may miss customized scripts and legitimate system utilities.

Identity Security Is Central to Ransomware Defense

Strong authentication and privileged-access controls can limit lateral movement.

Local Administrator Accounts Require Continuous Review

Unexpected account creation may indicate persistence or privilege escalation.

Domain Admin Membership Should Be Rare and Closely Monitored

Any unusual attempt to modify privileged groups should receive immediate attention.

Segmentation Can Limit the Impact of Stolen Credentials

Restricting unnecessary access reduces the attacker’s ability to move across the network.

Backup Systems Must Be Isolated

Ransomware operators often search for backup infrastructure before encryption.

Security Controls Should Remain Effective During Endpoint Tampering

Centralized monitoring can preserve visibility when local protections are weakened.

Threat Hunting Should Connect Events Into Attack Chains

Credential dumping, service tampering, remote execution, and unusual network traffic are more meaningful when analyzed together.

Organizations Should Assume That Initial Access Is Only the Beginning

The first compromised endpoint may be a staging point rather than the final target.

The Exposure Offers Defenders a Useful Opportunity

The recovered artifacts can help organizations develop detections before similar techniques are used again.

✅ Confirmed: The Exposed Directory Reportedly Contained a Large Intrusion Toolkit

The reported directory contained 82 files totaling approximately 145 MB, including executables, PowerShell scripts, batch files, scheduled-task configurations, and multiple offensive tools.

The collection supports the assessment that the infrastructure was being used to stage or support Windows-focused intrusion activity.

The presence of multiple tool categories indicates a broad operational capability rather than a single-purpose malware deployment.

✅ Confirmed: EtherRAT Uses an Ethereum Smart Contract for C2 Discovery

The reported EtherRAT sample queried an Ethereum smart contract to retrieve active command-and-control information.

This architecture allows operators to change C2 infrastructure without modifying and redistributing the malware.

The blockchain record may also provide investigators with historical infrastructure evidence.

✅ Confirmed: The Recovered Scripts Included Credential-Access and Defense-Evasion Functions

The scripts reportedly attempted to export the SAM, SYSTEM, and SECURITY registry hives and disable ESET-related services.

These actions are consistent with credential theft and security-product tampering.

Such behavior should be treated as highly suspicious when observed outside authorized administrative activity.

⚠️ Not Fully Confirmed: Direct Attribution to The Gentlemen

Infrastructure overlap and behavioral similarities may support a connection to The Gentlemen ransomware activity.

However, the available evidence does not necessarily prove that every recovered file was operated directly by The Gentlemen or a specific affiliate.

Shared infrastructure, reused tools, and operational partnerships can complicate ransomware attribution.

⚠️ Not Fully Confirmed: The ClickFix Campaign Belonged to the Same Operator

The shared Ethereum contract, similar MSI naming, and overlapping infrastructure suggest a possible relationship.

However, the campaign was not formally attributed to the same actor.

The connection should therefore be treated as a strong investigative lead rather than a final attribution conclusion.

Prediction

(+1) Blockchain-Driven C2 Techniques Will Become More Common

Attackers are likely to continue experimenting with decentralized or semi-decentralized systems to make command-and-control infrastructure more flexible.

(+1) Behavioral Detection Will Become More Important

Security platforms will increasingly focus on attack chains rather than individual malware signatures.

(-1) Static Domain Blocklists Will Become Less Effective

Rapid C2 rotation and dynamic infrastructure discovery may reduce the long-term value of blocking only known domains.

(+1) Blockchain Intelligence Will Become a Larger Part of Threat Hunting

Security researchers may increasingly analyze smart contracts and historical blockchain activity to reconstruct attacker infrastructure.

(-1) ClickFix Attacks May Increase User-Driven Malware Execution

As organizations improve technical defenses, attackers may continue relying on social engineering to persuade users to run commands themselves.

(+1) Exposure of Attacker Infrastructure Will Improve Early Detection

Recovered toolkits can help defenders build detections before the same scripts and payloads are deployed against additional organizations.

▶️ Related Video (82% Match):

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: cyberpress.org
Extra Source Hub (Possible Sources for article):
https://stackoverflow.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube