MoonWalk: A deep dive into the updated arsenal of APT41 | Part 2
2024-7-11 23:26:44 Author: securityboulevard.com(查看原文) 阅读量:6 收藏

IntroductionThis is Part 2 of our two-part technical deep dive into APT41’s new tooling, DodgeBox and MoonWalk. For details of DodgeBox, go to Part 1.In Part 2 of this blog series, we examine the MoonWalk backdoor, a new addition to APT41's toolkit. Continuing from our previous analysis of the DodgeBox loader in Part 1, we have discovered that MoonWalk shares several evasion techniques. It makes use of Google Drive for command-and-control (C2) communication and abuses Windows Fibers, a lesser-known Windows feature, to evade anti-virus (AV) and Endpoint Detection and Response (EDR) solutions.Key TakeawaysAPT41, a China-based nation-state threat actor known for campaigns in Southeast Asia, has been observed using a new backdoor called MoonWalk.MoonWalk shares a common development toolkit with DodgeBox, reusing code that implements evasive techniques such as DLL hollowing, import resolution, DLL unhooking, and call stack spoofing. Additionally, MoonWalk employs further evasion tactics, including the use of Google Drive as its C2 channel to blend in with legitimate network traffic and the utilization of Windows Fibers to evade AV/EDR security solutions.MoonWalk's modular design allows attackers to easily update its capabilities, modify its behavior, and customize functionality for different scenarios.Technical AnalysisAttack chainThe focus of this blog post is the second half of the attack chain that begins with the in-memory execution of MoonWalk backdoor. Once the MoonWalk backdoor is successfully loaded by DodgeBox, the malware decrypts and reflectively loads two embedded plugins (C2 and Utility). The C2 plugin uses a custom encrypted C2 protocol to communicate with the attacker-controlled Google Drive account. A figure depicting the attack chain used to deploy MoonWalk with the DodgeBox loader is shown below.Figure 1: Attack chain used to deploy the DodgeBox loader and MoonWalk backdoor.MoonWalk analysisMoonWalk is a malware backdoor written in C that shares many code similarities with DodgeBox, suggesting a common development toolkit. It incorporates many evasion related functions from DodgeBox, including those related to the following:DLL hollowing Import resolution DLL unhooking Call stack spoofing Additionally, MoonWalk utilizes the same DLL blocklist as DodgeBox.ThreatLabz analysis reveals MoonWalk's modular design, allowing it to load different plugin components as needed. The sample examined by ThreatLabz contains two embedded plugins, a C2 plugin for C2 communication, and a utility plugin that provides functionality related to compression and public-key cryptography. This modular architecture makes MoonWalk highly adaptable, enabling attackers to customize its functionality for different scenarios. In the section below, we will highlight several notable capabilities of MoonWalk.Unloading the DodgeBox loaderWhen MoonWalk first initializes, it resolves its imports using the same algorithms as DodgeBox. Then, depending on the DodgeBox configuration parameter Config.fShouldUnloadStealthVector, MoonWalk unloads the DodgeBox DLL from memory and unlinks it from the Process Environment Block (PEB). This reduces MoonWalk’s in-memory footprint, and obfuscates its origins, hindering memory forensic analysis.Using Windows FibersNext, MoonWalk initializes global structures used to manage Windows Fibers. Windows Fibers are a lightweight threading mechanism, available in the Windows operating system since Windows NT SP5. Unlike traditional threads, which are scheduled by the operating system, fibers are cooperatively scheduled by the application itself. This allows developers to tune an application’s performance for a specific workload. However, due to the complexity of utilizing Windows Fibers, and performance improvements of computer hardware, Windows Fibers were not widely adopted, and remains an obscure feature.However, with the increased focus on cybersecurity in recent years, there has been an uptick in interest in Windows Fibers from the research and red-teaming community. Multiple research papers (1, 2, 3) and open-sourced proof of concepts (POCs) have been published, abusing Windows Fibers to evade AVs/EDR solutions.APT41 may have been following these developments, as they have incorporated Windows Fibers into the MoonWalk backdoor. At a high level, MoonWalk maintains a global array of fibers. When a function needs to be executed as a fiber, a fiber is created using the CreateFiber API. This fiber is then packaged together with the address of the function and its arguments and other metadata, and inserted into the global array. The main fiber then schedules these fibers for execution. This use of Windows Fibers helps MoonWalk evade AVs and EDRs which do not support the scanning of Windows Fibers, and also makes analysis challenging by breaking up the control flow.ConfigurationMoonWalk decrypts its configuration, which is hard-coded within its .lrsrc section. Like DodgeBox, MoonWalk uses MD5 for configuration validation and AES Cipher Feedback (AES-CFB) for decryption. However, MoonWalk's configuration is more complex, featuring nested structures and arrays. This configuration contains various execution parameters including the following: Mutex names A fiber configuration Heartbeat intervals Encryption keys C2-related data In the sample we analyzed, MoonWalk's configuration (referred to as Config) included OAuth secrets used to authenticate with the attacker-controlled Google Drive account, and other notable fields as shown below:Config.szClientID: XXXXXXXX3108-0pm3bsjc0mto2e1k4kp2u8817lgk3e3v.apps.googleusercontent.comConfig.szClientSecret:XXXXXXXXBiuo8VPZUH1dBHkv86mC1xFU_Z3Config.szRefreshToken: XXXXXXXXiYDPmH9cCgYIARAAGAkSNwF-L9IrcM7YiuxWrNuyIfKINyNc_pEVytGNNK750ZyyIm32qH6Wh3dGIBTvdPJ2v92xAohHwWwConfig.rgbXorKey:a8e6bd132daf0360b1af1f5eea15e42f8c6f1dcd7d34376ae4e83a1a4f5907c0Config.szMutexName:Global\ctXjvsAxpzyqElmkConfig.szName:defaultAfter loading the default configuration, MoonWalk searches for a new configuration file at C:\ProgramData\[MD5(Config.rgbIDBytes)]. If found, the malware decrypts and loads this file. A sample of MoonWalk's decrypted configuration is available in the Appendix of this blog for reference.Unpacking and loading pluginsMoonWalk then extracts embedded plugins from the .lrsrc section. In the MoonWalk sample we analyzed, there were two plugins embedded within this section: one plugin for C2, and another plugin which provides utility functions such as public key cryptography and compression.Each plugin in the .lrsrc section is prefixed with 72 bytes of metadata, which includes AES-CFB secrets, an MD5 checksum, and plugin type information. The plugin type information fields provide information about the features of a plugin. These fields help identify whether a plugin serves as a command handler, C2, or utility. More details about the structure of plugin metadata can be found in the Appendix section.MoonWalk organizes these plugins by registering them in a global linked list. MoonWalk then goes through this list to load the C2 plugin and its dependencies, such as the utility plugin, using DLL hollowing. This process is similar to what we previously described in Part 1 for DodgeBox. Like DodgeBox, this MoonWalk sample stores a copy of the host DLL in C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Data.Trace.C2After loading the C2 plugin, MoonWalk is prepared to establish communication with the C2 server. MoonWalk utilizes Google Drive for C2 communications. This helps MoonWalk evade detection, as traffic to and from reputable cloud services are less likely to raise suspicion, especially if a target is already using this service. Strangely, MoonWalk uses the string curl/7.54.0 as its User-Agent when making HTTP requests, even though it does not utilize libcurl in its C2 plugin, and uses the WinHTTP family of APIs instead.At a high level, MoonWalk communicates over Google Drive in the following manner:StepDescription1Initialization MoonWalk obtains an access token from the Google Authorization Server, by utilizing the OAuth secrets in its configuration (Config.szClientID, Config.szClientSecret and Config.szRefreshToken).MoonWalk generates 16 random bytes, and hex-encodes them, resulting in a string such as: f137da1a9019849fbc2aac49a4b6f2c3. We will reference this string as SessionID.MoonWalk uses the Google Drive APIs to retrieve the ID for the /data directory.MoonWalk retrieves the ID for the /data/temp directory.2Cryptographic Handshake (Client Hello and Server Hello) MoonWalk searches /data/temp for a file named after the generated SessionID (i.e. f137da1a9019849fbc2aac49a4b6f2c3). If the file is not found, MoonWalk generates and uploads a file /data/temp/[SessionID] to initiate a cryptographic handshake and exchange AES keys with the server.MoonWalk then looks for the /data/[SessionID] directory, and its subdirectory /data/[SessionID]/s1. The directory titled s[number] seems to serve as the designated location where MoonWalk will retrieve and download forthcoming C2 instructions.Lastly, MoonWalk searches for the /data/[SessionID]/s1/1 file. As it becomes available, MoonWalk downloads and processes it, and completes the cryptographic handshake.3Information Gathering MoonWalk then checks for the existence of the directory /data/[SessionID]/c1, and creates it if it does not exist. Then, MoonWalk gathers information such as the computer name, user name, and OS version, and uploads this to the file /data/[SessionID]/c1/1.4Heartbeat MoonWalk then proceeds to send heartbeats regularly to the C2 server by updating a file named “temp.txt” with the current Unix timestamp as a string.MoonWalk also regularly polls the /data/[SessionID]/s1 directory for new files. If a new file is found, MoonWalk processes it and uploads its response in the /data/[SessionID]/c1 directory. During our analysis of MoonWalk, only ping commands were observed, where MoonWalk responded by uploading encoded files to the /data/[SessionID]/c1 directory, containing the current Unix timestamp.Table 1: High-level view of the MoonWalk C2 communication protocol using Google Drive. Cryptographic Handshake (Client Hello)During the cryptographic handshake phase, MoonWalk exchanges AES keys with the server using a custom protocol. Because of this, it becomes very difficult or impossible to decode encrypted C2 messages without access to these AES keys, which exist only in MoonWalk’s process memory.The process begins with MoonWalk generating a 32-byte AES key (rgbClientAESKey) and a 16-byte initialization vector (IV) (rgbClientAESIV) using a custom random number generator. The AES key is then treated as an Elliptic-curve Diffie-Hellman (ECDH) private key, to generate the corresponding ECDH public key (rgbECDHPublicKey) using the curve25519_donna function.MoonWalk then encodes the ECDH public key and AES IV by XORing them with the XOR key from MoonWalk's configuration (Config.rgbXorKey). A checksum is created by performing an MD5 hash on the concatenation of Config.rgbXorKey, ECDH public key, and AES IV, and then taking the hash’s first four bytes. Finally, MoonWalk uploads this data to Google Drive at the path /data/temp/[SessionID].The figure below shows content of an uploaded file:Figure 2: Contents of a MoonWalk Client Hello key exchange message. The table below provides a description of the various fields contained within the uploaded file:OffsetSize in bytesDescription0x001Unknown field, possibly a message type enum.0x0132rgbECDHPublicKey XORed with Config.rgbXorKey rgbECDHPublicKey before the XOR operation is:d2 04 7b 20 60 c4 25 e2 da 01 f8 1d 5b 89 d1 8cae bd 07 d3 da bc 82 41 e1 b1 14 2c 57 b5 5a 070x2116rgbClientAESIV XORed with Config.rgbXorKey rgbClientAESIV before the XOR operation is:c4 e9 27 7c 18 e3 67 c7 49 32 0a a6 f8 be 7a 670x314First four bytes of MD5 (Config.rgbXorKey | rgbECDHPublicKey | rgbClientAESIV)0x3515Unknown bytes.Table 2: Description of MoonWalk Client Hello key exchange message.Cryptographic Handshake (Server Hello)MoonWalk then downloads the file located at /data/[SessionID]/s1/1. This file contains the server’s response to MoonWalk’s handshake above. This file, and all subsequent uploaded or downloaded files, are encoded using a custom scheme. Here, we walk through the decoding process of this scheme, using the Server Hello file as an example.The figure below is an example of the overall layout of the encoded Server Hello file:Figure 3: MoonWalk Server Hello message format.A description of these fields is shown in the following table.OffsetSize in bytesDescription0x008rgbFileXorKeyThe XOR key used to decode rgbEncodedBytes.0x088Unknown, potentially a message type field.0x102dwNumEncodedBytes The number of encoded bytes that follows. This field is encoded with rgbFileXorKey. Decoding this field shows that there are 0xbc encoded bytes within this file.85 20 XOR 85 9c = 00 bc0x12dwNumEncodedBytesrgbEncodedBytes The encoded bytes within this file. These bytes appear to contain message metadata, such as Google Drive file IDs, message headers, or junk bytes. To decode these bytes, rgbFileXorKey is used, starting with the third byte of the XOR key. 18 25 ea a3 39 b4 e8 45 7f 01 99 ba 07 d6XOR29 44 ae cd 5f fb 85 20 29 44 ae cd 5f fb=31 61 44 6e 66 4f 6d 65 56 45 37 77 58 2d0x??variablergbEncryptedBytesThe rest of the file is not encoded, because this section is typically encrypted with AES-CFB, using the AES keys exchanged during the cryptographic handshake phase.Table 3: Description of the MoonWalk Server Hello message format.The figure below shows the Server Hello file after decoding:Figure 4: Example contents of a decoded MoonWalk Server Hello message.The decoded Server Hello fields are described in the table below.OffsetSize in bytesDescription0x008rgbFileXorKeyThe XOR key, used to decode rgbEncodedBytes.0x088Unknown0x102dwNumEncodedBytes0x12variableszHeartBeatFileIDThe Google Drive ID of the heartbeat file, temp.txt.0x34variableUnknown0xce48Encoded buffer, XOR encoded with Config.rgbXorKey. After decoding, the following fields are revealed: rgbServerECDHBasePoint – Used as the ECDH base point, which MoonWalk later uses to generate the shared AES key used by the server. 77 82 64 13 04 16 94 da 35 d2 1e b8 27 d7 35 ff02 8a 47 85 56 41 29 5b cb 3b 28 22 f2 69 3d 3a The remaining bytes after decoding contain a checksum, and additional unknown bytes.0xfe4Checksum generated by MD5 (rgbServerECDHBasePoint | Config.rgbXorKey.)0x102variableUnknownTable 4: Description of fields within a MoonWalk Server Hello message.With this information, MoonWalk generates a public key (rgbECDHServerPublicKey) using the curve25519_donna function. Then, rgbECDHServerPublicKey is XORed against Config.rgbXorKey to generate the server AES key.Curve25519_Donna(
a1->rgbECDHServerPublicKey,
// Public Key (out):
// 000001e6`246391ec b5 8f a7 ee 0b da d6 79-79 60 85 79 bf 32 ad 91
// 000001e6`246391fc 24 a3 39 66 4c 4b 49 97-6c 71 92 d3 55 45 4b 3e
a1->rgbClientAESKey,
// Private Key:
// 000001e6`2463920c 54 be fd a7 f4 0f 62 15-fb 22 9a 48 04 e3 6e 90
// 000001e6`2463921c 85 4b b9 c7 f2 5f de 57-65 59 9c 90 18 04 d9 d1
a1->rgbECDHServerBasepoint);
// Basepoint:
// 000001e6`24639251 77 82 64 13 04 16 94 da-35 d2 1e b8 27 d7 35 ff
// 000001e6`24639261 02 8a 47 85 56 41 29 5b-cb 3b 28 22 f2 69 3d 3a

rgbServerAESKey = rgbECDHServerPublicKey ^ Config.rgbXorKey
// 1d 69 1a fd 26 75 d5 19-c8 cf 9a 27 55 27 49 be
// a8 cc 24 ab 31 7f 7e fd-88 99 a8 c9 1a 1c 4c feIn this manner, MoonWalk exchanges AES keys with its C2, and thus concludes the cryptographic handshake.Information gatheringDuring this phase, MoonWalk collects information about the environment and uploads it to Google Drive. The gathered data includes details such as the processor architecture, Windows product type, version and build numbers, computer and usernames, as well as IP addresses. This information is then compressed using LZ4. A checksum is then added, using the 32-bit MurmurHash2 algorithm, with a customized mixing constant where r is set to 15, and with the initial seed set to 0x12345678. These bytes are then encrypted using AES-CFB with the server’s AES key, and packaged using the custom scheme detailed above, before being uploaded to Google Drive.More details of the environment information collected are provided in the Appendix of this blog.HeartbeatMoonWalk also regularly sends heartbeats to the server. It uploads the current Unix timestamp in plain text to a temp.txt file on Google Drive, using the file ID szHeartBeatFileID retrieved as part of the cryptographic handshake.Backdoor capabilitiesIn our analysis of MoonWalk, we did not observe the C2 sending any other commands or plugins. If a command handler plugin (dwPluginTypePart2 == 1 described in the Appendix) is not found, MoonWalk defaults to a built-in list of handlers. These handlers contain functionality, which include the following:Collect environment information (similar to the information gathering step above)Steal token (token impersonation)Create token (log on to the Windows machine using given credentials)Download new configurationExecute command line commandsNote: This list is not complete as further analysis is required.ConclusionMoonWalk is a sophisticated and modular backdoor that incorporates evasion techniques seen in DodgeBox. It also introduces innovative techniques, including the utilization of Windows Fibers, which are not commonly observed. These evasion techniques combined with the usage of a custom complex C2 communication protocol abusing Google Drive to blend in with legitimate traffic highlights the highly skilled nature of the APT41 threat adversary.We continue to closely monitor the latest tactics, techniques, and procedures (TTPs) of this threat actor to protect our customers and share research with the security community.Zscaler CoverageZscaler’s multilayered cloud security platform detects indicators related to DodgeBox at various levels with the following threat name.Win64.Backdoor.MoonwalkIndicators Of Compromise (IOCs)MD5 HashDescription5b1e8455291d99a1724327b9a7fc2616MoonWalk backdoor (related to DodgeBox loader with MD5: d72f202c1d684c9a19f075290a60920f).b69984cbf52b418673bd08279ca845d6Utility plugin5217b8552321556ea434474377cfcd02C2 pluginbfd6286bb39a0e24a2af28c63bd8e194MoonWalk backdoor (related to DodgeBox loader with MD5: 393065ef9754e3f39b24b2d1051eab61).75bfb7d5199bf0c4e62525099b33e14fC2 pluginf68ef9e40462c9760bf9c829edd9f4a9Utility plugin EntityDescriptionGDrive OAuth Client ID #1XXXXXXXX5917-dudeis843uv3v1lrm1n12jbq9l9a86lq.apps.googleusercontent.comGDrive Client Secret #1XXXXXXXX8OPdXrMnPIbIvODh4bnYTVtdKJYGDrive Refresh Token #1XXXXXXXXEqC4HrQVCgYIARAAGAkSNwF-L9IrS7n6zr6G_vE7_huP5uJuMT6aMtOnu3WgmTMRiEc5QJaQgVX4gbUV7ltUbFXVmd5KOZMGDrive OAuth Client ID #2XXXXXXXX3108-0pm3bsjc0mto2e1k4kp2u8817lgk3e3v.apps.googleusercontent.comGDrive Client Secret #2XXXXXXXXBiuo8VPZUH1dBHkv86mC1xFU_Z3GDrive Refresh Token #2XXXXXXXXiYDPmH9cCgYIARAAGAkSNwF-L9IrcM7YiuxWrNuyIfKINyNc_pEVytGNNK750ZyyIm32qH6Wh3dGIBTvdPJ2v92xAohHwWwThreat actor’s email address (linked to GDrive)[email protected] Heartbeat related network requestsDescriptionVerb:PATCH URL:https://www.googleapis.com/upload/drive/v3/files/[redacted_id] URL Params:uploadType=media&fields=id,name,size,mimeType,modifiedTime User-Agent: curl/7.54.0MoonWalk updating temp.txt with Unix timestamp.Verb:GET URL:https://www.googleapis.com/drive/v3/files URL Params:fields=files(id,name,size,mimeType,modifiedTime)&q=[redacted_id]%20in%20parents%20and%20trashed%20%3D%20false%20&pageSize=300 User-Agent:curl/7.54.0MoonWalk querying for new commands.MITRE ATT&CK FrameworkTacticIDTechniqueDescriptionDefense EvasionT1027Obfuscated Files or InformationMoonWalk uses AES-CFB to encrypt strings, configurations, and bundled payloads.Defense EvasionT1027.007Obfuscated Files or Information: Dynamic API ResolutionMoonWalk uses salted FNV1a hashes to dynamically resolve APIs.Defense EvasionT1620Reflective Code LoadingMoonWalk reflectively loads plugin DLLs, utilizing DLL hollowing.Defense EvasionT1106Native APIMoonWalk uses Windows Native APIs like NtCreateFile, LdrLoadDll, and NtAllocateVirtualMemory, as opposed to their Win32 counterparts.Defense EvasionT1562.001Impair Defenses: Disable or Modify ToolsMoonWalk utilizes stack spoofing when calling APIs to monitor for security software.MoonWalk performs a scan within its own address space to detect any alterations, such as hooks or debugger breakpoints. If it identifies any signs of modification, DodgeBox takes action to restore the original code from disk, effectively undoing any unauthorized changes made to its code.Command and ControlT1102.002 Web Service: Bidirectional Communication MoonWalk has a C2 plugin that utilizes an attacker-controlled Google Drive account to implement a C2 communication channel.Command and ControlT1573Encrypted ChannelMoonWalk leverages a custom network protocol to exchange encrypted C2 messages.ReconnaissanceT1592Gather Victim Host InformationMoonWalk collects information about the hardware and software configuration of the victim's host.ReconnaissanceT1590Gather Victim Network Information MoonWalk collects the IP address of the victim's host. Appendix.lrsrc sectionAn example of the .lrsrc section from MoonWalk is shown in the figure below.Figure 5: An example of the .lrsrc section from MoonWalk.The table below provides a description of the various fields.OffsetSize in bytesDescription0x004dwOffsetToEncryptedConfig Offset from the start of .lrsrc section0x044dwSizeOfEncryptedConfig0x084dwNumEmbeddedPlugins0x0c4rgsEmbeddedPlugin[0].dwPluginOffset Offset to embedded plugin, containing a plugin’s metadata, followed by the plugin.0x104rgsEmbeddedPlugin[0].dwPluginSize Size of the plugin including its metadata.0x144rgsEmbeddedPlugin[1].dwPluginOffset0x184rgsEmbeddedPlugin[1].dwPluginSizePlugin metadataAn example of a MoonWalk C2 plugin’s metadata is shown in the figure below.Figure 6: An example of a MoonWalk C2 plugin’s metadata.The table below provides a description of the various fields.OffsetSize in bytesDescription0x004dwPluginTypePart1A combination of dwPluginTypePart1 and dwPluginTypePart2 determine a plugin’s functionality0x044dwPluginTypePart2 A combination of dwPluginTypePart1 and dwPluginTypePart2 determine a plugin’s functionality0x084Flag to load plugin only if OS and processor information have been successfully collected by MoonWalk.0x0c4Dictates how MoonWalk should retrieve a plugin’s exports.0x104Unknown0x1416MD5 of plugin metadata and plugin data.0x2416Hashed with MD5 to produce the AES key for decrypting the plugin.0x3416AES IV0x444Size of plugin data that follows.Decrypted configurationMoonWalk's configuration is complex, containing arrays and nested structures of various types, as shown in the figure below. This analysis will focus only on the relevant fields, with non-essential bytes omitted from the analysis. These omitted bytes will either have unknown functionality or contain metadata for parsing the configuration.An example of MoonWalk’s decrypted configuration is shown in the figure below.Figure 7: MoonWalk's configuration which contains arrays and nested structures of various types.The table below provides a description of the various fields.OffsetSize in bytesDescription0x0016rgbIDBytes The MD5 hash of this value is also used to generate the path to override a configuration file on disk.0x1024szMutexName The name of the mutex that MoonWalk uses to ensure only one instance of the backdoor is running.0x2cvariablewszConfigName Postulated to be the name of the configuration. Since this is the configuration extracted from the binary, it is the “default”. During our analysis, we did not receive additional configurations.0x3a32rgbXorKey This is the XOR key used to encrypt C2 communications. In this sample, the value is:a8e6bd132daf0360b1af1f5eea15e42f8c6f1dcd7d34376ae4e83a1a4f5907c0.0x5e8Appears to be used as a heartbeat related interval lower bound.0x668Appears to be used as a heartbeat related interval upper bound.0x964fEnableHeartBeat0x9a8Appears to be used as another heartbeat related interval lower bound.0xa28Appears to be used as another heartbeat related interval upper bound.0x0130variableszClientID OAuth client ID used to authenticate with Google Drive.0x17fvariableszClientSecret OAuth client secret used to authenticate with Google Drive.0x1a9variableszRefreshToken OAuth refresh token used to authenticate with Google Drive.Gathered environment informationThis is the list of environment information gathered by MoonWalk and uploaded to GoogleDrive as part of its initialization process.Victim hash (FNV1a hash of the concatenation of the computer name Config.rgbIDBytes and the machine’s GUID).Windows major and minor version numbersWindows build numberComputer nameUser nameExecutable path (full path to the current process’s executable file).Impersonation statusCPU start timeIPv4 addressesIPv6 addressesConfig.rgbIDBytesConfig.wszConfigNameVarious heartbeat related interval fields from MoonWalk’s configuration.

*** This is a Security Bloggers Network syndicated blog from Security Research | Blog Category Feed authored by Yin Hong Chang. Read the original post at: https://www.zscaler.com/blogs/security-research/moonwalk-deep-dive-updated-arsenal-apt41-part-2


文章来源: https://securityboulevard.com/2024/07/moonwalk-a-deep-dive-into-the-updated-arsenal-of-apt41-part-2/
如有侵权请联系:admin#unsafe.sh