fermer
fermer
Le réseau de demain
Le réseau de demain
Planifiez votre chemin vers un réseau plus rapide, plus sûr et plus résilient, conçu pour les applications et les utilisateurs que vous prenez en charge.
          Essayez Netskope
          Get Hands-on With the Netskope Platform
          Here's your chance to experience the Netskope One single-cloud platform first-hand. Sign up for self-paced, hands-on labs, join us for monthly live product demos, take a free test drive of Netskope Private Access, or join us for a live, instructor-led workshops.
            Un leader sur SSE. Désormais leader en matière de SASE à fournisseur unique.
            Un leader sur SSE. Désormais leader en matière de SASE à fournisseur unique.
            Netskope fait ses débuts en tant que leader dans le Magic Quadrant™ de Gartner® pour le SASE à fournisseur unique.
              Sécuriser l’IA générative pour les nuls
              Sécuriser l’IA générative pour les nuls
              Learn how your organization can balance the innovative potential of generative AI with robust data security practices.
                Modern data loss prevention (DLP) for Dummies eBook
                La prévention moderne des pertes de données (DLP) pour les Nuls
                Get tips and tricks for transitioning to a cloud-delivered DLP.
                  Réseau SD-WAN moderne avec SASE pour les nuls
                  Modern SD-WAN for SASE Dummies
                  Cessez de rattraper votre retard en matière d'architecture de réseau
                    Identification des risques
                    Advanced Analytics transforms the way security operations teams apply data-driven insights to implement better policies. With Advanced Analytics, you can identify trends, zero in on areas of concern and use the data to take action.
                        Les 6 cas d'utilisation les plus convaincants pour le remplacement complet des anciens VPN
                        Les 6 cas d'utilisation les plus convaincants pour le remplacement complet des anciens VPN
                        Netskope One Private Access is the only solution that allows you to retire your VPN for good.
                          Colgate-Palmolive protège sa "propriété intellectuelle" "grâce à une protection des données intelligente et adaptable
                          Colgate-Palmolive protège sa "propriété intellectuelle" "grâce à une protection des données intelligente et adaptable
                            Netskope GovCloud
                            Netskope obtient l'autorisation FedRAMP High Authorization
                            Choisissez Netskope GovCloud pour accélérer la transformation de votre agence.
                              Let's Do Great Things Together
                              La stratégie de commercialisation de Netskope privilégie ses partenaires, ce qui leur permet de maximiser leur croissance et leur rentabilité, tout en transformant la sécurité des entreprises.
                                Solutions Netskope
                                Netskope Cloud Exchange
                                Netskope Cloud Exchange (CE) provides customers with powerful integration tools to leverage investments across their security posture.
                                  Support technique de Netskope
                                  Support technique de Netskope
                                  Nos ingénieurs d'assistance qualifiés sont répartis dans le monde entier et possèdent des expériences diverses dans les domaines de la sécurité du cloud, des réseaux, de la virtualisation, de la diffusion de contenu et du développement de logiciels, afin de garantir une assistance technique rapide et de qualité
                                    Vidéo Netskope
                                    Formation Netskope
                                    Grâce à Netskope, devenez un expert de la sécurité du cloud. Nous sommes là pour vous aider à achever votre transformation digitale en toute sécurité, pour que vous puissiez profiter pleinement de vos applications cloud, Web et privées.

                                      Netskope Threat Coverage: WhisperGate

                                      Jan 26 2022

                                      Summary

                                      A new destructive malware called WhisperGate was discovered in mid-January 2022 targeting Ukrainian organizations. This threat emerged during geopolitical conflicts in Ukraine, masquerading as ransomware. However, this malware has a more destructive nature: wiping files and corrupting disks to prevent the OS from loading. Ukraine has suffered other cyberattacks that seem to be connected to WhisperGate, such as the defacement of many websites connected to their governments.

                                      This is a multi-stage malware, where one of the payloads is hosted on a Discord server. The preference of attackers to use cloud services for malicious purposes is increasingly common, as pointed out in an analysis of a threat campaign that uses multiple cloud services throughout the attack. The threat group behind WhisperGate is being tracked as DEV-0586, and so far there isn’t any association between this attack to known APT groups. In this threat coverage, we analyzed all four stages of WhisperGate to demonstrate how it works.

                                      Analysis

                                      Stage 01

                                      WhisperGate’s first stage is a small executable compiled with MinGW, responsible for corrupting the disk by writing code into the Master Boot Record (MBR), which is a small section on disk that contains the Partition Table and an executable code related to the boot loader.

                                      Screenshot of Binary information about WhisperGate’s first stage
                                      Binary information about WhisperGate’s first stage

                                      Corrupting the MBR is a simple technique to prevent any Operating System from loading, as the assembly code is executed before the OS.

                                      The entire code for the first stage of WhisperGate can fit in a single screenshot, where the malware loads the MBR data that will be written to disk, opens a handle to the physical drive with CreateFileW, and uses WriteFile to writes the 512 bytes to MBR, which is located in the first sector of the disk.

                                      Screenshot of Disassembled code of WhisperGate’s first stage.
                                      Disassembled code of WhisperGate’s first stage.

                                      The MBR stub written to disk includes a 16-bit assembly code and a message.

                                      Screenshot of Data written on disk by WhisperGate
                                      Data written on disk by WhisperGate

                                      If we load this data into the disassembler, we can analyze the 16-bit assembly that will be executed once the computer is rebooted, which doesn’t do anything but display a message.

                                      Example of code that is executed once the computer is infected with WhisperGate.
                                      Code that is executed once the computer is infected with WhisperGate.

                                      Once the computer is infected, as soon as it restarts, the message is displayed and the OS is prevented from loading. The message says the hard drive was corrupted and demands a payment of $10,000 via Bitcoin to a specific walled address.

                                      Example of computer infected with the first stage of WhisperGate.
                                      Computer infected with the first stage of WhisperGate.

                                      This is the only action performed by the first stage of WhisperGate. The following stages were created probably to add a certain resilience to the attack in case the first stage fails, as systems may use GUID Partition Table (GPD), which is MBR’s successor.

                                      Stage 02

                                      In this stage, we have a simple .NET downloader for stage 03. The binary contains an expired signature from Microsoft, and although it is not shown by identification tools, the file is obfuscated with NetReactor, as pointed out by OALabs.

                                      Screenshot of binary information about WhisperGate’s second stage.
                                      Binary information about WhisperGate’s second stage.

                                      Once running, it downloads the third stage from a Discord server, named “Tbopbh.jpg”.

                                      Example of WhisperGate’s .NET downloader.
                                      WhisperGate’s .NET downloader.

                                      After the download, the malware loads the binary as a .NET assembly and executes the method named “Ylfwdwgmpilzyaph”.

                                      Example of malware executing the third stage of WhisperGate
                                      Malware executing the third stage of WhisperGate

                                      Stage 03

                                      Here we have a 32-bit DLL, also developed in .NET. Since this file is directly loaded by the second stage as a .NET assembly, the DLL doesn’t have an entry point, which requires some adjustments to make dynamic analysis feasible.

                                      Screenshot of binary information about WhisperGate’s third stage.
                                      Binary information about WhisperGate’s third stage.

                                      As shown in the image above, the file is protected with Eazfuscator, likely to hinder researchers’ analysis. Searching throughout the decompiled code, we can find the same method that is executed by the second stage.

                                      Screenshot of main function from the third stage of WhisperGate.
                                      Main function from the third stage of WhisperGate.

                                      Once running, it checks if the process is running as an Administrator. If it’s not the case, it launches itself with elevated permissions and exits the process.

                                      Example of Malware checking for administrative permissions.
                                      Malware checking for administrative permissions.

                                      Then, it drops a VBS named “Nmddfrqqrbyjeygggda.vbs” into the Windows temporary folder, containing a simple PowerShell code that adds the path “C:\” to Windows Defender’s exclusion list.

                                      Example of simple VBS / PowerShell to bypass Windows Defender.
                                      Simple VBS / PowerShell to bypass Windows Defender.

                                      It also drops an executable named “AdvancedRun.exe” to the same directory, which is a tool from NirSoft to execute programs with different settings. WhisperGate uses this tool to execute commands in the “TrustedInstaller” group context.

                                      Example of usage of AvancedRun tool, by NirSoft.
                                      Usage of AvancedRun tool, by NirSoft.

                                      It executes two commands with this tool, both as an attempt to disable Windows Defender. The first one tries to stop Defender’s service, and the second tries to delete its respective folder.

                                      Example of commands executed with AdvancedRun.
                                      Commands executed with AdvancedRun.

                                      Then, WhisperGate copies “InstallUtil.exe” to Windows temporary folder, which is a binary from .NET Framework.

                                      Example of copying InstallUtil executable to Windows temporary folder.
                                      Copying InstallUtil executable to Windows temporary folder.

                                      And finally, WhisperGate’s last stage is injected into an instance of the InstallUtil’s process. The payload is stored within an encrypted resource, where all the bytes are reversed and compressed with Gzip.

                                      Example of malware loading WhisperGate’s last stage.
                                      Malware loading WhisperGate’s last stage.

                                      Stage 04

                                      The binary used in this stage is quite similar to the first one in terms of compiler and linker.

                                      Screenshot of WhisperGate’s last stage.
                                      WhisperGate’s last stage.

                                      Looking at the main function of the malware, we have two functions being called prior to the end of the execution.

                                      Screenshot of WhisperGate’s main function.
                                      WhisperGate’s main function.

                                      At the function we named “mw_main_routine”, the malware starts by listing the drives with the help of GetLogicalDrives API.

                                      Screenshot of malware listing OS drives.
                                      Malware listing OS drives.

                                      Then, it uses GetDriveTypeW to check if the drive is either fixed or remote. If that’s the case, it starts the function that will wipe the files.

                                      Example of malware checking the drive type.
                                      Malware checking the drive type.

                                      Within the function we named “mw_wipe_files”, it starts by listing all the files in the root path of the drive with FindFirstFileW.

                                      Screenshot of malware listing all the files in the current directory.
                                      Malware listing all the files in the current directory.

                                      If the current object is a directory, the “mw_wipe_files” function is called recursively with the identified directory as a parameter. This is verified by calling the “_wstat” function and checking the st_mode bits.

                                      Screenshot of malware checking if the current object is a directory.
                                      Malware checking if the current object is a directory.

                                      WhisperGate does not wipe files in the Windows directory.

                                      Screenshot of WhisperGate skipping Windows folder.
                                      WhisperGate skipping Windows folder.

                                      The last verification is related to the file’s extension, where the malware iterates over a list of targeted extensions and, if the file name matches, a function we named “mw_write_bytes_to_file” is called.

                                      Example of WhisperGate checking for targeted extensions
                                      WhisperGate checking for targeted extensions.

                                      WhisperGate targets many files with extensions related to websites, such as “.html”, “.php”, “.asp”, “.jsp”, as well as common documents like “.doc”, “.xls”, “.ppt”, etc. A complete list of targeted extensions can be found in our GitHub repository.

                                      Screenshot of WhisperGate’s targeted extensions.
                                      WhisperGate’s targeted extensions.

                                      And finally, if the file matches the criteria, WhisperGate wipes the file by replacing its content with a sequence of 0x100000 bytes of 0xCC.

                                      Screenshot of WhisperGate wiping system’s files.
                                      WhisperGate wiping system’s files.

                                      Also, a random extension is appended to the file’s name.

                                      Screenshot of files wiped by WhisperGate.
                                      Files wiped by WhisperGate.

                                      Once it’s over, WhisperGate deletes itself through a simple command line, where “%s” is the file path obtained with GetModuleFileNameA.

                                      This is the only behavior of WhisperGate’s last stage. Paying the ransom demanded would be fruitless because the MBR and files were simply overwritten, not encrypted like they would be by ransomware. 

                                      Conclusions

                                      WhisperGate is a multi-stage destructive malware that has emerged in the midst of the geopolitical conflict that is still unfolding in Ukraine. Netskope Threat Labs is on the lookout for any malware that may appear with an apparent political motivation, especially ones that may disrupt essential services, such as infrastructure. It’s also interesting to see this threat using Discord to host one of the payloads, showing again the preference of cloud apps usage by cyber attackers. We echo CISA’s recommendations released in this note to implement cybersecurity measures for critical infrastructure.

                                      Protection

                                      Netskope Threat Labs is actively monitoring this campaign and has ensured coverage for all known threat indicators and payloads. 

                                      • Netskope Threat Protection
                                        • Win32.Trojan.WhisperGate
                                        • Win32.Network.WhisperGate
                                        • ByteCode-MSIL.Trojan.WhisperGate
                                      • Netskope Advanced Threat Protection provides proactive coverage against this threat.
                                        • Gen.Malware.Detect.By.StHeur indicates a sample that was detected using static analysis
                                        • Gen.Malware.Detect.By.Sandbox indicates a sample that was detected by our cloud sandbox

                                      IOCs

                                      A full list of IOCs and Yara rules can be found in our GitHub repository.

                                      author image
                                      Gustavo Palazolo
                                      Gustavo Palazolo is an expert in malware analysis, reverse engineering and security research, working many years in projects related to electronic fraud protection.
                                      Gustavo Palazolo is an expert in malware analysis, reverse engineering and security research, working many years in projects related to electronic fraud protection.

                                      Restez informé !

                                      Abonnez-vous pour recevoir les dernières nouvelles du blog de Netskope