Combine cutting-edge XDR technology, multi-signal threat intelligence and 24/7 Elite Threat Hunters to help you build a world-class security operation.
Our team delivers the fastest response time in the industry. Threat suppression within just 4 hours of being engaged.
Cyber risk and advisory programs that identify security gaps and build security strategies to address them.
24/7 SOC-as-a-Service with unlimited threat hunting and incident handling.
XDR with machine learning that eliminates noise, enables real-time detection and response, and automatically blocks threats.
Seamless integration and threat investigation across your existing tech stack.
Proactive threat intelligence, original threat research and a world-class team of seasoned industry veterans.
Extend your team capabilities and prevent business disruption with expertise from eSentire.
We balance automated blocks with rapid human-led investigations to manage threats.
Guard endpoints by isolating and remediating threats to prevent lateral spread.
Defend brute force attacks, active intrusions and unauthorized scans.
Investigation and threat detection across multi-cloud or hybrid environments.
Remediate misconfigurations, vulnerabilities and policy violations.
Investigate and respond to compromised identities and insider threats.
Stop ransomware before it spreads.
Meet regulatory compliance mandates.
Detect and respond to zero-day exploits.
End misconfigurations and policy violations.
Defend third-party and supply chain risk.
Prevent disruption by outsourcing MDR.
Adopt a risk-based security approach.
Meet insurability requirements with MDR.
Protect your most sensitive data.
Build a proven security program.
Operationalize timely, accurate, and actionable cyber threat intelligence.
THE THREAT On November 18th, 2024, Palo Alto disclosed a critical actively exploited authentication bypass zero-day vulnerability impacting Palo Alto Networks PAN-OS. The…
Nov 13, 2024THE THREAT Update: eSentire has observed multiple exploitation attempts targeting CVE-2024-8069. In real-world attacks, threat actors successfully achieved RCE and attempted to…
eSentire is The Authority in Managed Detection and Response Services, protecting the critical data and applications of 2000+ organizations in 80+ countries from known and unknown cyber threats. Founded in 2001, the company’s mission is to hunt, investigate and stop cyber threats before they become business disrupting events.
We provide sophisticated cybersecurity solutions for Managed Security Service Providers (MSSPs), Managed Service Providers (MSPs), and Value-Added Resellers (VARs). Find out why you should partner with eSentire, the Authority in Managed Detection and Response, today.
Multi-Signal MDR with 300+ technology integrations to support your existing investments.
24/7 SOC-as-a-Service with unlimited threat hunting and incident handling.
Three MDR package tiers are available based on per-user pricing and level of risk tolerance.
The latest security advisories, blogs, reports, industry publications and webinars published by TRU.
Compare eSentire to other Managed Detection and Response vendors to see how we stack up against the competition.
See why 2000+ organizations globally have chosen eSentire for their MDR Solution.
PINGPULL is a Remote Access Tool (RAT) that is used as a new backdoor variant that allows threat actors to encrypt communications and provides admin-level control over the host devices. It has been known to target several public and private organizations across Russia, Europe, Southeast Asia, and Africa.
Backdoors provide attacker(s) with a number of advantages including: (a) remote access to the victim’s machine, (b) the ability to execute, upload, modify files on the victim’s machine, and (c) exfiltrate data to the attackers’ machine by encrypted communication channels. In addition, a backdoor allows the attacker(s) to hide in legitimate network traffic and circumvent perimeter defenses. Backdoors are typically installed after successfully compromising a system. A common infection vector for backdoors is through exploiting a vulnerability.
This malware analysis delves deeper into the technical details of how the PINGPULL RAT functions and our security recommendations to protect your organization from being exploited.
On May 28th, 2022, eSentire's Threat Response Unit (TRU) team was notified by a government partner about the new backdoor variant named PINGPULL. The new Remote Access Tool (RAT) comes in two versions – Internet Control Message Protocol (ICMP) and Hypertext Transfer Protocol (HTTP) and is being abused by an advanced persistent threat actor (APT) group to encrypt communications and perform administrative control over the hosts. The backdoor is known to target government and telecommunications industries based in Russia, Europe, Southeast Asia, and Africa. The initial access vector is known to be publicly available exploits for common vulnerabilities such as Log4j.
The backdoor we analyzed is a lightweight 64-bit ICMP backdoor (MD5: 255dffb6d619ba7ffe5602e6ff64e03c) 113KB in size. The compiler date is Sep 10, 2021, which is the day after the first sample was submitted on VirusTotal from Vietnam.
The ICMP backdoor is using run-time dynamic linking to load the Dynamic Link Libraries (DLLs) and stack strings to evade detections (Figure 1). Dynamic linking is very common with malwares. Instead of accessing the libraries during the program startup, the malware can load the libraries during the runtime.
In our sample, the backdoor loads the Advapi32.dll library with the function LoadLibraryA, then it retrieves the address of functions (OpenSCManagerA, OpenServiceA) from the DLL by calling GetProcAddress function. The mentioned functions allow the backdoor to open or check for an existing service. If the service does not exist, PINGPULL leverages functions such as CreateServiceA and StartServiceA that creates and starts the service accordingly to maintain the persistence on the infected host (Figure 2).
The service name created is Iph1psvc and the display name used to identify the service is IP He1per with the description shown in Figure 3.
It should be noted that the backdoor is trying to masquerade itself under a legitimately looking service iphlpsvc (IP Helper) by changing a few characters. The legitimate iphlpsvc service is also known as an Internet Protocol helper service that allows the users to configure and modify network configuration (Figure 4). The malicious service points to the backdoor executable in the binary path.
PINGPULL can create and terminate the processes by leveraging the CreateProcessA, CreateProcessAsUserA (this function allows the process to be run in a security context of the specific user), and TerminateProcess functions.
The backdoor has an anti-debugging check. If the sample detects the debugger, it terminates the process (Figure 5).
The malware can also modify or change the timestamp of the created file by using SystemTimeToFileTime function to retrieve the FILETIME and SYSTEMTIME structures. With the handle to the created file obtained via CreateFileA API and FILETIME structure, the backdoor can leverage SetFileTime function to modify the timestamp, this technique is also known as timestomping (Figure 6).
FILETIME structure:
typedef struct _FILETIME { DWORD dwLowDateTime; DWORD dwHighDateTime; } FILETIME, *PFILETIME, *LPFILETIME;
SYSTEMTIME structure:
typedef struct _SYSTEMTIME { WORD wYear; WORD wMonth; WORD wDayOfWeek; WORD wDay; WORD wHour; WORD wMinute; WORD wSecond; WORD wMilliseconds; } SYSTEMTIME, *PSYSTEMTIME, *LPSYSTEMTIME;
PINGPULL, like other RATs, is able to manipulate the files and directories by creating and deleting directories and files, and through file copy, file move, and file enumeration.
The backdoor creates the directory using SHCreateDirectoryExA function after performing the checks if the directory already exists. If the error code returns 80 (ERROR_FILE_EXISTS) and 183 (ERROR_ALREADY_EXISTS), the error exception is thrown (Figure 7).
PINGPULL performs drive enumeration from A to Z by using the BITTEST function that returns the value of a specific bit in a binary value. GetLogicalDrives function returns the bitmask that represents available disk drives: Bit position 0 represents drive A, bit position 1 represents drive B, and so on (Figure 8).
The backdoor utilizes recvfrom() and sendto() functions to receive and send data on sockets over ICMP communication. Within the function responsible for communication with the C2 server, the backdoor retrieves the hostname of the infected computer and the IP address by leveraging GetComputerNameA and gethostbyname() functions.
The ICMP connections are initialized every one second with the C2 server using the following query codes:
The observed ping requests sent to C2 server are 121 bytes in length including 79 bytes of payload data. The data is being sent out has the following format:
PROJECT_<backdoor_name>_<hostname>_<hexadecimal_value_of_the_IP> total=0 current=0
The total and current parameters are likely used for the amount of data being transferred over an active communication channel with the C2 server.
ICMP tunneling (covert communication between two hosts using echo request and echo reply) is used by the backdoor to evade detections, since it does not require ports for communications, the analysts will not be able to detect the suspicious connections by running the commands to display network connections such as netstat. ICMP tunnelling can be detected by thoroughly inspecting network traffic with tools like Wireshark. It’s worth mentioning that the attacker(s) can also encrypt the ICMP payloads for evasion purposes.
PINGPULL is leveraging Microsoft Enhanced RSA and AES Cryptographic Provider to encrypt ICMP payloads with AES and RSA algorithms as shown in Figure 9.
The HTTPs version of the backdoor (MD5: 61496042ac5d53a99dcf52a0fde41867) is also using Microsoft Enhanced RSA and AES Cryptographic Provider to encrypt the traffic, it also appends the user-agent Mozilla/4.0 (compatible) to the POST requests.
The filenames used by the backdoor:
Our Threat Response Unit (TRU) combines threat intelligence obtained from research and security incidents to create positive security outcomes for our customers. We are taking a holistic response approach to combat modern cybersecurity threats by deploying countermeasures, such as:
Our detection content is supported by investigation runbooks, ensuring our 24/7 Cyber SOC Analysts respond rapidly to any intrusion attempts related to a known malware Tactics, Techniques, and Procedures (TTPs). In addition, TRU closely monitors the threat landscape and constantly addresses capability gaps and conducts retroactive threat hunts to assess customer impact.
We recommend implementing the following controls to help secure your organization against the PINGPULL RAT:
While the TTPs used by adversaries grow in sophistication, they lead to a certain level of difficulties at which critical business decisions must be made. Preventing the various attack paths utilized by threat actor(s) requires actively monitoring the threat landscape, developing, and deploying endpoint detection, and the ability to investigate logs & network data during active intrusions.
eSentire’s TRU is a world-class team of threat researchers who develop new detections enriched by original threat intelligence and leverage new machine learning models that correlate multi-signal data and automate rapid response to advanced threats.
If you are not currently engaged with an MDR provider, eSentire MDR can help you reclaim the advantage and put your business ahead of disruption.
Learn what it means to have an elite team of Threat Hunters and Researchers that works for you. Connect with an eSentire Security Specialist.
Name | Indicators |
ICMP Backdoor | b4dd22013aefae6f721f0b67be61dc91 |
ICMP Backdoor | 1a96767957e193c45b1bf642f3293350 |
ICMP Backdoor | d58c5fe6a5b5b3d494bae50d1df310f5 |
HTTPs Backdoor | 61496042ac5d53a99dcf52a0fde41867 |
HTTPs Backdoor | 7e01d776a0eb044a11bf91f3a68ce6f5 |
C2 | v2[.]hinitial[.]com |
C2 | v3[.]hinitial[.]com |
C2 | v4[.]hinitial[.]com |
C2 | t1[.]hinitial[.]com |
C2 | hinitial[.]com |
C2 | df[.]micfkbeljacob[.]com |
C2 | jack[.]micfkbeljacob[.]com |
C2 | affidavits7[.]exportadoralambari[.]com |
import "pe" rule PINGPULL_backdoor { meta: author = "eSentire TI" date = "05/24/2022" version = "1.0" strings: $a1 = {68 69 6E 69 74 69 61 6C 2E 63 6F 6D} $a2 = {50 52 4F 4A 45 43 54 5F 25 73 5F 25 73 5F} $a3 = {74 6F 74 61 6C 3D} $a4 = {49 50 20 48 65 31 70 65 72} $a5 = "Iph1psvc" condition: 3 of ($a*) and (filesize<200KB) and (uint16(0) == 0x5A4D or uint32(0) == 0x4464c457f) }
The eSentire Threat Response Unit (TRU) is an industry-leading threat research team committed to helping your organization become more resilient. TRU is an elite team of threat hunters and researchers that supports our 24/7 Security Operations Centers (SOCs), builds threat detection models across the eSentire XDR Cloud Platform, and works as an extension of your security team to continuously improve our Managed Detection and Response service. By providing complete visibility across your attack surface and performing global threat sweeps and proactive hypothesis-driven threat hunts augmented by original threat research, we are laser-focused on defending your organization against known and unknown threats.