# New Formbook Campaign Delivered Through Phishing Emails **[netskope.com/blog/new-formbook-campaign-delivered-through-phishing-emails](https://www.netskope.com/blog/new-formbook-campaign-delivered-through-phishing-emails)** Gustavo Palazolo March 11, 2022 ## Summary [Since the beginning of 2022, the unfolding geopolitical conflict between Russia and Ukraine](https://www.bbc.com/news/world-60525350) [has resulted in the discovery of new malware families and related cyberattacks. In January](https://www.wsj.com/articles/the-russia-ukraine-cyberwar-could-outlast-the-shooting-war-11646456442) [2022, a new malware named WhisperGate was found corrupting disks and wiping files in](https://www.netskope.com/blog/netskope-threat-coverage-whispergate) Ukrainian organizations. In February 2022, another destructive malware was found in [hundreds of computers in Ukraine, named HermeticWiper, along with](https://www.netskope.com/blog/netskope-threat-coverage-hermeticwiper) IsaacWiper and HermeticWizard. Aside from new malware families and novel attacks, previously known malware families continue to be used against organizations in Ukraine and throughout the world. Recently, [Netskope Threat Labs came across an interesting phishing email addressed to high-ranking](https://www.virustotal.com/gui/file/c013b2be04364216421dbec58c254bca979adff55ce7263bcd4da8ada7dd692f) [government officials in Ukraine containing Formbook (a.k.a. XLoader), which is a well-known](https://malpedia.caad.fkie.fraunhofer.de/details/win.formbook) [malware operating in the MaaS (Malware-as-a-Service) model. This malware provides full](https://www.vmray.com/glossary/formbook/) control over infected machines, offering many functionalities such as stealing passwords, grabbing screenshots, downloading, and executing additional malware, among others. The email seems to be part of a new spam campaign, since there were multiple emails with the same subject and body addressed to other recipients. Most of them contain an infected [spreadsheet encrypted with the “VelvetSweatshop” password which is a known Formbook](https://forensicitguy.github.io/xloader-formbook-velvetsweatshop-spreadsheet/) ----- [behavior. The infected spreadsheet delivers the threat through vulnerability described under](https://forensicitguy.github.io/xloader-formbook-velvetsweatshop-spreadsheet/) [CVE-2017-11882 and](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-11882) [CVE-2018-0798. However, the email addressed to government](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-0798) officials in Ukraine contains a .NET executable, responsible for loading Formbook in a multistage chain: In this blog post, we will analyze all the layers from the email attachment to the last Formbook payload. ## Phishing Email The infection flow starts with a generic phishing email that uses a common technique, tricking the victim into downloading the payload by pretending to be a shipping invoice. ----- containing a malicious attachment. The attachment is a compressed file containing the first Formbook stage. Phishing email Email attachment carrying Formbook. Also, as we mentioned previously, we found similar emails delivering malicious spreadsheets, so we believe that this is part of a new spam campaign delivering multiple threats. ----- Similar phishing email with a malicious attachment. ## Analysis – Summary Before executing the last file (Formbook), the malware is divided into multiple stages, which we have summarized below. 1. Stage 01 is a loader, responsible for decoding and executing the next stage; 2. Stage 02 is another loader, responsible for obtaining the encrypted bytes of Stage 03 from the resources of Stage 01, decrypting and executing it; 3. Stage 03 is a known packer/loader named CyaX-Sharp, responsible for decrypting and executing the last stage; 4. Stage 04 is the Formbook payload, which injects itself into other processes, as described later in this analysis. ----- Summary of Formbook loading process ## Analysis – Stage 01 The first stage is a .NET executable likely compiled on February 21, 2022. This file is a loader, responsible for decoding and executing the next stage. ----- Binary details of the first stage. Once we decompile the file, we can see that the real executable name is “VarArgMet.exe”. This stage doesn’t contain any code obfuscation but does contain an obfuscated string and an encrypted resource which we will discuss later. First stage decompiled. [Also, this file seems to be an infected version of a public .NET project named PlaylistPanda,](https://github.com/beaugunderson/playlist-panda) created in 2009. Looking at the entry point, we can see the same code that is published in the PlaylistPanda public repository, where the MainForm function is called, followed by **InitializeComponent.** ----- Entry point of the first stage. In this malicious version, the InitializeComponent function contains the main code of the first stage. Once running, the code reads an obfuscated and base64 encoded string stored in a variable named x121312x121312, which contains the next stage. Once it’s deobfuscated and decoded, the file is passed as an argument to the function Springfield. Furthermore, this loader contains a lot of junk code that will never be executed, possibly to confuse analysts and slow down analysis. ----- Loader’s main code, decoding and executing the next stage. [The Springfield function then loads the second stage as a .NET assembly, which is saved in](https://docs.microsoft.com/en-us/dotnet/api/system.reflection.assembly?view=net-6.0) a variable named DebuggerVisualizer. Second stage being loaded as a .NET assembly. The DebuggerVisualizer variable is then passed as an argument to the EraInfo function, which executes the second stage by calling the CreateInstance function with the payload and three strings as arguments: ----- 5A6F6E654964656E746974795065726D697373696F6E417474726962 (ZoneIdentityPermissionAttrib) 6F513037 (oQ07) PlaylistPanda Second stage being executed. ## Analysis – Stage 02 The second stage is a .NET DLL, likely compiled on February 16, 2022. This file is another loader responsible for executing the third stage, which is stored in the resources of the first stage. Binary details of the second stage. Once we decompile the file, we can see that the real name is “SpaceChemSolver.dll”. This file doesn’t have any sort of code obfuscation or protection. The entry point of this stage is the RunCore function, which is called within SharpStructures.Main. ----- Second stage’s name. This code is responsible for loading and executing the third stage, which is encrypted and stored as a resource named ZoneIdentityPermissionAttrib in the first stage (PlaylistPanda), masqueraded as a bitmap image. Third stage execution flow. After loading the fake image from the first stage resources, the function **ConstructionResponse is responsible for decrypting the binary using XOR operations with** the string “oQ07”. ----- Function that decrypts the third stage. Once decrypted, the second stage loads the third stage as a .NET assembly, like we saw previously, executing a function named yjO9HynvmD. Third stage being loaded. ## Analysis – Stage 03 (CyaX-Sharp) [The third stage is yet another .NET file, but this time it’s protected with .NET Reactor. The](https://www.eziriz.com/dotnet_reactor.htm) compilation date is also near the other files, on February 21, 2022. This file is a known [loader/packer named CyaX-Sharp, which is commonly used to deliver malware like](https://www.mcafee.com/blogs/enterprise/mcafee-enterprise-atr/see-ya-sharp-a-loaders-tale/) [AgentTesla and](https://www.netskope.com/blog/infected-powerpoint-files-using-cloud-services-to-deliver-multiple-malware) [Warzone RAT.](https://www.netskope.com/blog/dbatloader-abusing-discord-to-deliver-warzone-rat) ----- Binary details of the third stage. Before executing the payload, this packer offers many functionalities such as Virtual Machine and Sandbox detection. These features can be enabled or disabled through configuration, which is stored in a string within the binary. CyaX-Sharp configuration string. Once it’s running, it starts by parsing the configuration string and then calling the functions related to the features for which the option is enabled. ----- CyaX-Sharp main function. The malware checks if there’s another instance running through a Mutex object named “WuhpBQuQigdPUFFvzgV”. Mutex created by the third stage. Then, the malware checks if the process is running with administrative privileges, and it adds [the path of the executable to the exclusion list of Microsoft Defender.](https://docs.microsoft.com/en-us/powershell/module/defender/add-mppreference?view=windowsserver2022-ps) ----- Simple Windows Defender bypass. In this specific file, the Virtual Machine and Sandbox verification are disabled. However, just to demonstrate how it works, this malware is able to detect virtualized environments by checking the presence of specific values in the Windows Registry, used by software like [VirtualBox and](https://www.virtualbox.org/) [VMware.](https://www.vmware.com/) ----- Functionality to detect virtualized environments. For sandbox detection, the malware searches for common file names, loaded modules, and windows titles. ----- Functionality to detect sandboxes. CyaX-Sharp also offers a feature to download and execute additional payloads, which is also disabled in this sample. Functionality to download and execute additional payloads. It then copies itself to AppData, as “YtGUemuxgzC.exe”. Malware copying itself to AppData. The permission of this file is then changed to avoid anyone from deleting it. ----- Changing recently copied AppData permission. To execute this copy, a very simple persistence technique is implemented via Windows scheduled tasks. Malware’s persistence. The final stage is then loaded from a resource named “fVkXSK7E”, which contains the encrypted bytes of Formbook. CyaX-Sharp loading the final stage. ----- Before decrypting the payload, CyaX-Sharp builds the path string of the executable that will be used to inject Formbook. In this case, the malware is configured to use “vbc.exe”. Formbook is then decrypted through bitwise operations using the bytes of the string “SUASbkTWociWWQ”. CyaX-Sharp decrypting Formbook. Formbook is injected into “vbc.exe” via [Process Hollowing, which we have already explained](https://attack.mitre.org/techniques/T1055/012/) [in more detail in this analysis. All the APIs are loaded dynamically via GetProcAddress and](https://www.netskope.com/blog/dbatloader-abusing-discord-to-deliver-warzone-rat) [LoadLibraryA APIs.](https://docs.microsoft.com/en-us/windows/win32/api/libloaderapi/nf-libloaderapi-loadlibrarya) ----- APIs related to Process Hollowing. We can find Formbook fully decrypted by inspecting the “vbc.exe” process memory, or by dumping the bytes once it’s decrypted in the third stage. ----- Formbook injected into “vbc.exe” ## Analysis – Stage 04 (Formbook) [The last stage is Formbook, which is an infostealer sold as a service (MaaS) on hacking-](https://www.bleepingcomputer.com/news/security/formbook-infostealer-sold-on-hacking-forums-is-becoming-quite-a-threat/) related forums since 2016. This malware provides many functionalities, such as: 1. Grabbing keystrokes (Keylogger); 2. Grabbing screenshots; 3. Grabbing HTTP(s) forms from network requests; 4. Stealing data from the clipboard; 5. Stealing data from common software, such as browsers, email, and ftp clients; 6. Shutdown/Reboot the OS; 7. Download and execute additional files; 8. Remotely execute commands; ----- 9. Encrypted C2 communication; The malware is written in ASM/C, and the compilation timestamp seems to be altered, as it indicates it was created in 2003. Binary details of Formbook payload. The primary entry point of Formbook is straightforward. Once running, it calls the main function which is named “InjectMaliciousPayload” in this IDA database. Most of the strings [are obfuscated using the “Stack Strings” technique, which can be defeated with FLOSS. A](https://github.com/mandiant/flare-floss) [list of decoded strings for this sample can be found in our GitHub repository.](https://github.com/netskopeoss/NetskopeThreatLabsIOCs/blob/main/Formbook/IOCs/Formbook_strings.txt) ----- Formbook’s primary entry point. It then executes a sequence of functions to assess the environment and determine whether it’s going to run, by verifying the presence of blacklisted processes and usernames, for example. Formbook anti-analysis mechanisms. ----- After the anti-analysis mechanisms, Formbook proceeds by creating and injecting itself into a randomly chosen process from Windows directory. In this case, it is injected into “svchost.exe”. Formbook injecting itself into another process. Also, another instance is injected into “explorer.exe”, responsible for the C2 communication. We found 65 different domains in this sample, where 64 are only used as decoys. Formbook trying to connect to domains. The real C2 of this sample is “www.biohackingz[.]one”. ----- Formbook C2 communication. [This domain was first seen on February 21, 2022 on VirusTotal.](https://www.virustotal.com/gui/domain/www.biohackingz.one/relations) Analysis of the C2 domain. Once the communication is established, Formbook parses the data to determine the action that needs to be taken. Part of the function that parses the C2 response. ## Conclusions Formbook is an infostealer, available via the Malware-as-a-Service model since 2016, often used by non-experienced people as it’s sold as a service at a [reasonable price. Although it’s](https://www.bleepstatic.com/images/news/u/986406/Malware/RAT/FormBook-ad.jpg) a simple threat, it contains many layers and techniques to slow down analysis and bypass detection engines. Regardless of the cheap price, Formbook can be quite dangerous as it provides full access to infected systems. Netskope Threat Labs will keep monitoring this new campaign as well as others that may emerge. ## 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.FormBook Win32.Spyware.Noon Win32.Malware.Heuristic ByteCode-MSIL.Malware.Heuristic **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 All the IOCs related to this campaign and the Yara rules can be found in our GitHub repository. -----