1920-x-500-Clearfake

ClearFake Campaign - Delivering Malware via “Fake Browser Updates

Published 23 January 2024

Introduction

ClearFake is a relatively new, malicious JavaScript framework that was first identified in July 2023 by security researcher Randy McEoin. This malware was originally named ClearFake due to the lack of obfuscation techniques used in the early versions of this JavaScript code. A link to Randy’s blog can be found in the reference section of this report.

Like other fake update campaigns, the ClearFake malware uses social engineering tactics to present a malicious “fake browser update” page to the victim user. This fake update page, delivered through JavaScript iframes, uses legitimate branding to trick a user into downloading a fake, malicious browser update package. The payload is then downloaded onto the victim’s machine.

This file has been packaged in different ways across various campaigns and as several different file type extensions, ranging from Windows executable (.EXE) files to Windows Application files (.APPX). This payload, a malware loader, is designed to conduct further malicious activity on the victim host and boasts a number of capabilities from information stealing to Command-and-Control (C2) mechanisms.

We’ve observed numerous payloads being delivered by the ClearFake campaign including Amadey, SocGhoulish, and a variety of information stealer malware families. 

Diamond Model Figure 1: Diamond Model depicting ClearFake capabilities and Infrastructure.

ClearFake Deploys “Fake Browser Updates”  

The ClearFake Origins

Threat actors are injecting malicious JavaScript code which can download and execute malicious JavaScript payloads. This malicious JavaScript code is injected into the target website through compromised WordPress plugins. These websites are then used to host malicious JavaScript content and deliver it to victim users through ‘watering hole’ style attacks.

A watering hole attack is a technique which often uses a legitimate website that has been compromised via other means or, in some cases, an impersonating website designed to look and feel like a website that the target victim would commonly navigate to.

By using a website that is familiar to the victim, the victim is more likely to frequently visit the website and interact with it, which enables an attacker to manipulate the victim’s trust.

The ClearFake

Figure 2: The ClearFake infection chain, as observed by the Bridewell CTI team. 

Once the target website has been compromised by an attacker, the malicious JavaScript is injected into a page on the website and executes when the target navigates to the website. 

Figure 3: An example of an early ClearFake JavaScript payload, after deobfuscation. Source: Sekoia.

Figure 3: An example of an early ClearFake JavaScript payload, after deobfuscation. Source: Sekoia. 

The Emergence of EtherHiding

Over the last few months, the ClearFake distribution technique has evolved. Threat actors are now using different methods to download and execute malware, moving away from embedding malicious JavaScript to employing a relatively new technique, EtherHiding. 

The EtherHiding technique has been described as an evolution of the initial ClearFake technique, which uses the Binance SmartChain technology to propagate malicious JavaScript into the target, victim website. Like ClearFake, EtherHiding uses WordPress plugins and vulnerabilities.

The Binance Smartchain is a blockchain technology which is owned by Binance, a major cryptocurrency broker. The Binance Smartchain is designed to operate similarly to other blockchain technology, like Bitcoin and Ethereum, and works to enable developers to build and use decentralised applications and trade digital assets.  

By using the EtherHiding technique, threat actors can manipulate the Binance Smartchain by hiding the initial payload, which then communicates back to second-stage domains hosting further JavaScript files which are responsible for delivering the fake page update pages to the victim’s browser using HTTP iFrames.

We also observed the execution of further malicious JavaScript on the affected website which was used to fingerprint the victim’s browser. By executing specific JavaScript commands, the threat actor collected and transmitted data to enable them to understand which browser was in use. With this data, the threat actor displayed a different fake browser page depending on which browser was being used, the CTI team observed variations of this page including one for Chrome, Firefox and Microsoft Edge. The below is an example of what the fake update payload looks like, when loaded into a victim browser. 

Figure 4: Malicious JavaScript executes a “fake update” window.

Figure 4: Malicious JavaScript executes a “fake update” window.

The above fake update page is displayed to the victim user upon navigating to a website. Often, the victim will not realise that this website has been compromised and may be led to believe that the fake update popup has originated from Chrome itself. Upon closer inspection of one of these compromised websites, we were able to uncover the malicious JavaScript code, which was encoded in Base64. 

Figure 5: JavaScript connection to malicious infrastructure, observed in Chrome.

Figure 5: JavaScript connection to malicious infrastructure, observed in Chrome. 

Figure 6: Base64 encoded JavaScript used to communicate with the Binance SmartChain.

Figure 6: Base64 encoded JavaScript used to communicate with the Binance SmartChain.

The above base64 encoded javascript, once decoded, shows the code which communicates with the Binance Smartchain.

Figure 7: The base64 string, decoded.

Figure 7: The base64 string, decoded. 

Using the above base64 encoded Javascript payload, we used this string to conduct further hunting and discovered over 1000 public facing servers that had been compromised.

Following analysis of this JavaScript execution, we conducted pivoting using the IOCs identified. A full list of IOCs can be identified in the appendix of this article.

Figure 8: Malicious domains involved with the execution of ClearFake.

Figure 8: Malicious domains involved with the execution of ClearFake. 

Using these IOCs, we conducted further research. Pivoting identified 12 servers connected to ClearFake C2 activity, alongside this, a number of IOCs were also found which resolved to the Keitaro TDS (Traffic Distribution System), which was used by the ClearFake operators to deliver further payloads.

A traffic distribution system uses webpage technology to filter incoming traffic based on specific criteria, the traffic directed to the TDS can then be filtered and redirected to alternate destinations. We had identified a number of these TDS related IP addresses and have added hunting queries to our malicious infrastructure database to track their activity moving forward.  

The Infection Chain Continued – ClearFake Malware Loader

Once the user interacts with the malicious browser update page, a connection is made and used to download malware onto the victim’s machine. In the case of a recent incident we investigated, this fake browser update page caused a connection to a Dropbox URL which then delivered the malicious payload, ChromeSetup.exe.

Figure 9: Dropbox URL within VirusTotal.

Figure 9: Dropbox URL within VirusTotal. 

Figure 10: MITRE Attack TTPs for ClearFake loader malware.

Figure 10: MITRE Attack TTPs for ClearFake loader malware.

ChromeSteup.exe – Local Group and Credential Enumeration

When executed, the ChromeSetup.exe malware uses multiple mechanisms to conduct information stealing actions, including enumeration of local accounts and loading of legitimate DLL (dynamic link library) files used by the Microsoft SAM (Security Account Manager).

Figure 11: The ClearFake loader conducts enumeration of local accounts.

Figure 11: The ClearFake loader conducts enumeration of local accounts. 

Secondly, the ChromeSetup.exe malware loads the “samlib.dll” library, a legitimate Microsoft DLL file which is used to access the Microsoft Security Account Manager database. This database contains stored information about user accounts and their credentials, highlighting another clear capability of the malware. 

Figure 12


Figure 12: The samlib library can be used to interact with the Microsoft Security Account Manager. 

ChromeSetup.exe – Obfuscation and Anti-VM Techniques

The ChromeSetup.exe was also observed performing defence evasion techniques including anti-virtualisation techniques and the use of encoded commands to avoid detection through anti-virus or other security tooling.

As an example, the ChromeSetup.exe malware was observed executing via PowerShell, using Base64 encoding as an obfuscation tactic. By obfuscating their activity, threat actors can more easily perform activity that may remain undetected. 

Figure 13: Base64 encoded PowerShell allows an attacker to more easily evade detection. Figure 13: Base64 encoded PowerShell allows an attacker to more easily evade detection. 

When de-obfuscated, this command reveals itself as the following:

“Powershell.exe -NoProfile -enc Start-Sleep -s 10”

As shown above, this PowerShell command executed the ChromeSetup.exe with a sleep time, which allows the malware to sleep, or not execute, until the specified time elapses. By dictating when malware should or should not execute, a threat actor can more easily evade detection or sandbox analysis.

The below KQL queries can be used to hunt for this activity.

//Specific KQL query to detect ClearFake loader malware executing a sleep command, encoded with base64.
DeviceProcessEvents
| where FileName == "powershell.exe"
| where InitiatingProcessFileName == "ChromeSetup.exe" and ActionType == "ProcessCreated"
| where ProcessCommandLine contains "-NoProfile -enc UwB0AGEAcgB0AC0AUwBsAGUAZQBwACAALQBzACAAMQAwAA=="

//A broader query identifying all PowerShell encoded commands.
DeviceProcessEvents
| where FileName == "powershell.exe" and ActionType == "ProcessCreated"
| where ProcessCommandLine contains "-NoProfile -enc"

Along with this, we also observed further interesting obfuscation techniques including the use of some anti-virtualisation techniques conducted using WMI queries. 

Figure 14: The ClearFake malware loader conducts sandbox evasion techniques using WMI.

Figure 14: The ClearFake malware loader conducts sandbox evasion techniques using WMI. 

In the above command, the malware executed a Windows Management Instrumentation (WMI) query to check the temperature of the CPU of the victim machine. This command is used as an anti-sandbox technique by threat actors due to the way that this command operates on virtualisation technology. 

Figure 15: The ClearFake loader malware was identified conducting WMI queries to evade sandbox tools.

Figure 15: The ClearFake loader malware was identified conducting WMI queries to evade sandbox tools. 

When executed in a sandbox or virtualised environment, this command will return an error due to the fact that the “MSAcip_ThermalZoneTemperature” WMI class is not supported on a virtualised processor. Using this information, a threat actor can execute this command as a mechanism to understand if their malicious program is operating inside a virtualised environment. 

Figure 16: The Bridewell CTI team conducted research into this sandbox evasion technique.

Figure 16: The Bridewell CTI team conducted research into this sandbox evasion technique. 

In the above screenshots, when running on a physical host, we can see that the first instance of the command was successful. Following this, execution of the same command within a virtual machine shows that the command fails which can be used by an attacker to indicate that their malicious software is running on a virtualised environment. 

ChromeSetup.exe & MsBuild.exe – Process Injection

The ChromeSetup.exe malware also displayed further capabilities, notably the ability to conduct process injection techniques; in which the ChromeSetup.exe malware leveraged the MSBuild.exe process. 

Figure 17: The ClearFake malware uses process injection techniques.

Figure 17: The ClearFake malware uses process injection techniques. 

Process injection is a technique used by threat actors for a multitude of reasons and involves executing malicious code through the context of another process to more easily evade detection from anti-virus, endpoint detection and response (EDR) or other security tools.

Hunting for this type of process injection technique can be executed using the following KQL query.

//Check for ClearFake loader malware executing process injection via MSBuild.exe. 
DeviceProcessEvents
| where ActionType contains "ProcessCreated"
| where InitiatingProcessFileName == "ChromeSetup.exe" or InitiatingProcessFileName == “MicrosoftEdgeSetup.exe”
| where FileName contains "MSBuild.exe"

Figure 18: MSBuild.exe was used to perform information stealing techniques.

Figure 18: MSBuild.exe was used to perform information stealing techniques. 

The MSBuild.exe process conducted further information gathering actions, including attempted access of browser related resources, such as Chrome browser files.

Following the information gathering actions, the MSBuild.exe executable was observed conducting command-and-control communication with various external IP addresses, a full list of observed IOCs can be found in the appendix section. 

Figure 19: Research conducted by Bridewell CTI into MSBuild command-and-control techniques.

Figure 19: Research conducted by Bridewell CTI into MSBuild command-and-control techniques.

As shown in the above screenshot, these IP addresses have been identified as malicious in VirusTotal and attributed to WordPress exploitation, which also correlates to the original ClearFake infection chain. The following KQL query can be executed to hunt for this activity.

//Check for outbound connections via the injected MSBuild.exe process.
DeviceNetworkEvents
| where InitiatingProcessFileName == "MSBuild.exe" //or InitiatingProcessParentFileName == "ChromeSetup.exe" or InitiatingProcessParentFileName == "MicrosoftEdgeSetup.exe"
| where not (ipv4_is_private(RemoteIP))


Wider Payload Delivery

Once the malicious ChromeSetup.exe malware executed and conducted the above actions, we observed further malicious payloads being downloaded and executed.

Figure 20: MSBuild.exe was used to download and execute further malware.

Figure 20: MSBuild.exe was used to download and execute further malware. 

The above screenshot shows MSBuild.exe contacting and downloading an executable file from the above URL. Wider research revealed that this IP address was attributed to Amadey malware. Amadey malware, first discovered in 2018, is a malware which boasts numerous techniques and displays characteristics of botnet and trojan mechanisms. 

Figure 21: Further payloads attributed to Amadey malware.

Figure 21: Further payloads attributed to Amadey malware. 

When executed in a sandbox, this malicious file demonstrates a variety of malicious activities which can be attributed to Amadey. For example, as shown below, the malicious file (named differently in this environment) conducts command-and-control activity and communicates with the below IP address using a HTTP connection.

Figure 22: The Bridewell CTI team conducted analysis of Amadey within a sandbox environment.

Figure 22: The Bridewell CTI team conducted analysis of Amadey within a sandbox environment. 

We used this IP address to conduct wider pivoting and fingerprinting and, by doing so, the team uncovered 7 IP addresses relating to Amadey command-and-control activity and 4 more IP addresses on this same subnet, attributed to various other malware families, including a cryptocurrency miner (XMRIG) and Redline Stealer.

To confirm these findings, the team also conducted sandbox analysis of the uncovered IP addresses, which all displayed a login panel when appended with the correct URL string. 

Figure 23: Wider research reveals an Amadey login panel.

Figure 23: Wider research reveals an Amadey login panel. 

The Amadey malware also created scheduled tasks to establish persistence, allowing the threat actor to maintain access between reboots of the victim machine.

Figure 24: The Amadey payload was observed conducting persistence techniques.

Figure 24: The Amadey payload was observed conducting persistence techniques. 

As above, the Amadey malware utilised “schtasks.exe”, a legitimate Microsoft process, to create a task using the “/sc” flag with “MINUTE” value and the “/mo” flag with the “1” value instructing Amadey to run every minute. The command also uses the “/tn” flag to execute the malware from the Temp directory.

We also observed Amadey conducting information gathering, including the execution registry queries to gather information about the target host. 

Figure 25: The Amadey payload was observed conducting information gathering techniques.

Figure 25: The Amadey payload was observed conducting information gathering techniques. 

Lastly, the Amadey malware also boasts an interesting technique to conduct defence evasion using the CACLS Windows command. The CACLS command enables an administrator to display or modify Access Control Lists (ACLs) for files and folders, enabling or preventing read/write permissions for specific users. 

Figure 26: Evidence of Amadey malware executing CACLS commands. Source: VMRay

Figure 26: Evidence of Amadey malware executing CACLS commands. Source: VMRay

In wider reporting, security researchers from VMRay observed the Amadey malware using the above command for defence evasion purposes. By using the “cacls <filename> /P <user> /E” command, the malware changes access rights to read only, preventing the deletion of the malicious file.

To test this, we conducted a similar series of commands inside a sandbox environment. 

Figure 27: CACLS can be used to prevent a user from deleting a file.

Figure 27: CACLS can be used to prevent a user from deleting a file. 

As shown above, the command has prevented this file from being deleted without Administrator permission, effectively acting as a Defence Evasion technique by preventing standard users from being able to delete the file.

Figure 28: Research conducted by the Bridewell CTI team into the usage of this command.

Figure 28: Research conducted by the Bridewell CTI team into the usage of this command. 

The above screenshot shows that this command was detected by Microsoft Defender however, no alert was raised for this activity in our sandbox. We did not observe this technique in our customer environment as the intrusion was mitigated. To combat this, the following KQL queries can be used to hunt for this technique.

//Checks for usage of CACLS modifying user permissions with specific parameters. Ignores iCACLS.
let cacls_commands = dynamic(["/p", "/n", "/e", "/r", "/t"]);
DeviceProcessEvents
| where ActionType == "ProcessCreated" and ProcessCommandLine == "cacls.exe" and ProcessCommandLine !contains "icacls.exe"
| where ProcessCommandLine has_any (cacls_commands)

//Checks for usage of CACLS modifying user permissions, specifically with the “n” and “r” permissions.
let cacls_commands = dynamic([":n", ":r"]);
DeviceProcessEvents
| where ActionType == "ProcessCreated" and ProcessCommandLine == "cacls.exe" and ProcessCommandLine !contains "icacls.exe"
| where ProcessCommandLine has_any (cacls_commands)

Wider Campaigns and Malware Delivery

In wider reports and campaigns observed in various articles, the ClearFake technique has been used to deliver a variety of second-stage malware payloads such as Amadey and SocGholish which have both been attributed to further delivery of ransomware.

Alongside this, wider campaigns also reported delivery of various botnet and information stealing malware including LummaStealer, RacoonStealer, StealC, HijackLoader and SystemBC.

Conclusion and Recommendations

The ClearFake fake browser update campaign was first seen in July 2023 and continues to exist as a widespread threat due to the nature of the attack and the large target audience. By using watering-hole style attacks, the ClearFake campaign aims to deliver malicious payloads through execution of malicious JavaScript commands, delivered to legitimate, compromised websites through WordPress vulnerabilities and plugins.

We have outlined recommendations to ensure that organisations are protected against this threat.

  • Organisations should ensure that they are utilising security tooling including Anti-Virus software and Endpoint Detection and Response (EDR) tools to ensure that they are protected against malicious software on their devices.
  • End users should be made aware of and trained to prevent execution of untrusted software, this includes software downloaded from the internet and also software obtained through other means. End users should be prevented from downloading suspicious or untrusted software, especially from the internet.
  • Organisations should ensure that policies are implemented to ensure that passwords are secure and are not reused.
    • Password policies should be implemented to ensure that a strong password is used, containing over 12 characters and a combination of uppercase and lowercase letters, numbers and symbols.
    • Passwords should not be re-used between services and tools, end users should be made aware of the risks and dangers of password-based attacks, especially credential reuse attacks. 

 

Appendix

Indicators of Compromise (IOCs)

Type IOC Description
   
Hash 60036c9c2c97d2ac40ac2c15c371efeb7fe33f855d9fd6a8192f9c2f668f5764 ClearFake Loader
Hash 617f4082c320c24f27f69d146aae6973a3cb818860ab196cf2800ff16518c2bc
 
Amadey
Hash 89d30f7ba7b2af7f519d2fe066700fae723643e25b1859f32c60618956651710
 
Amadey
Hash 3d5d48ea2b6f76af583e541602950d89b8d96a13654469df3bc58dcddf879e9d
 
Amadey Plugin
Hash 015d60486e75035f83ea454e87afb38d11ec39643c33b07f61a40343078ee4f5
 
Amadey Plugin
Hash 3b1afb9e78d0834590df85fee79ac9e7e763dd4e3d894d49ecdb726fd7c75633
 
Hash attributed to TA569
URL http://npskudlu.com/am[.]exe Amadey Delivery URL dropped via MSBuild
URL Zoolclaud[.]pw ChromeLoader/MSBuild C2 URL
URL Theworkflowagency[.]fun ChromeLoader/MSBuild C2 URL
URL https://ulmoyc[.]com ClearFake Javascript URL
URL Awumnf[.]com ClearFake Javascript URL
URL https://longlakeweb[.]com ClearFake Javascript URL
URL http://185.172.128.100/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL 185.172.128.21/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL 185.172.128.100/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL 185.172.128.54/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL 185.172.128.28/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL 185.172.128.99/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL 185.172.128.71/u6vhSc3PPq/Login[.]php Amadey C2 Login Panel
URL https://theworkflowagency[.]fun/rm/vs/18/release/psnlibeay32.dll C2 URL
URL  https://uc3f94b83e462b5f6f6b1a333bc1.dl.dropboxusercontent[.]com ClearFake Payload Delivery
IP 68.178.148[.]77 Amadey Delivery IP dropped via MSBuild
IP 104.21.69[.]86 ChromeLoader/MSBuild C2 IP
IP 45.67.228[.]133 ChromeLoader/MSBuild C2 IP
IP 172.67.206[.]136 ChromeLoader/MSBuild C2 IP
IP 185.172.128[.]100 Amadey C2 IP
IP 109.248.206[.]83 ClearFake Javascript IP
IP 109.248.206[.]196 ClearFake Javascript IP
IP 109.248.206[.]153 ClearFake Javascript IP
IP 109.248.206[.]118 ClearFake Javascript IP
IP 109.248.206[.]159 ClearFake Javascript IP
IP 109.248.206[.]157 ClearFake Javascript IP
IP 109.248.206[.]138 ClearFake Javascript IP
IP 109.248.206[.]51 ClearFake Javascript IP
IP 109.248.206[.]101 ClearFake Javascript IP
IP 109.248.206[.]160 ClearFake Javascript IP
IP 109.248.206[.]106 ClearFake Javascript IP
IP 109.248.206[.]122 ClearFake Javascript IP
IP 185.172.128[.]21 Amadey C2 IP
IP 185.172.128[.]100 Amadey C2 IP
IP 185.172.128[.]54 Amadey C2 IP
IP 185.172.128[.]28 Amadey C2 IP
IP 185.172.128[.]99 Amadey C2 IP
IP 185.172.128[.]71 Amadey C2 IP
IP 185.172.128[.]113 Payload Delivery - Cryptominer XMRIG
IP 185.172.128[.]40 Payload Delivery
IP 185.172.128[.]160 Payload Delivery - Amadey
IP 185.172.128[.]121 Payload Delivery - Cryptominer XMRIG
IP 185.172.128[.]154 Payload Delivery
IP 104.21.69[.]86 Potentially attributed to TA569
IP 104.21.69[.]86 Potentially attributed to TA569
File aqdiovgrowjrmdgnm.exe Amadey File Name
File ChromeSetup.exe ClearFake Loader File Name
File MicrosoftEdgeSetup.exe ClearFake Loader File Name
Command WMI query 'SELECT * FROM MSAcpi_ThermalZoneTemperature' Anti-VM/Sandbox Technique
Command "C:\Windows\System32\schtasks.exe" /Create /SC MINUTE /MO 1 /TN Utsysc.exe /TR "C:\Users\admin\AppData\Local\Temp\b64c58644b\Utsysc.exe" /F Amadey Scheduled Task Creation
Command powershell.exe" -NoProfile -enc UwB0AGEAcgB0AC0AUwBsAGUAZQBwACAALQBzACAAMQAwAA== ChromeLoader PowerShell Sleep Command

        

MITRE Attack Tools, Techniques and Procedures (TTPs)  

Name MITRE Technique Description
   
Masquerading T1036 Malicious JavaScript is hosted and executed from a legitimate, compromised website. The Binance SmartChain is also used to conceal activity. The ClearFake malware also uses legitimate Cloud services to conceal attacker infrastructure.
Command and Scripting Interpreter: Javascript T1059.007 Malicious Javascript is hosted and executed from a legitimate, compromised website.
Drive-By Compromise T1189 Malicious JavaScript is hosted and executed from a legitimate, compromised website. Watering hole style attacks are used to conceal attacker activity.
Web Service T1102 ClearFake malware is hosted on legitimate Dropbox infrastructure.
Permission Groups Discovery: Local Groups T1069.001 ClearFake malware conducts enumeration of local groups and accounts.
OS Credential Dumping: Security Account Manager T1003.002  “samlib.dll” is used to interact with the Microsoft Security Account Manager for credential theft.
Obfuscated Files or Information: Command Obfuscation T1027.010 Base64 encoding is applied to obfuscate malicious PowerShell commands.
Command and Scripting Interpreter: PowerShell T1059.001 PowerShell is used to execute further actions, these are encoded with base64 for obfuscation purposes.
Virtualisation/Sandbox Evasion: System Checks T1497.001 ClearFake malware conducts temperature checks using WMI to conduct sandbox evasion activity.
Windows Management Instrumentation T1047 ClearFake malware conducts temperature checks using WMI queries.
Process Injection T1055 Process injection is conducted using legitimate Windows binaries, including MSBuild.exe.
System Binary Proxy Execution T1218 MSBuild.exe is used to obfuscate and conceal an attacker’s intentions and activity.
Credentials From Password Stores: Credentials From Web Browsers T1555.003 MSBuild.exe is used to obtain browser credentials.
Application Layer Protocol: Web Protocols T1071.001 ClearFake malware communicates with attacker command-and-control servers using HTTP/HTTPS.
Access Token Manipulation T1134 ClearFake malware uses Access Tokens to conduct process injection techniques.
Time Based Evasion T1497.003 PowerShell is used to conduct sleep commands.
Execution Guardrails T1480 ClearFake malware prevents operation in a sandbox/virtualised environment.
Scheduled Task/Job: Scheduled Task T1053.005 Amadey malware uses scheduled tasks to achieve persistence.
File and Directory Permissions Modification: Windows T1222.001 Amadey malware uses the Windows CACLS functionality to modify file permissions.


References

Reference URL
https://blog.sekoia.io/clearfake-a-newcomer-to-the-fake-updates-threats-landscape/#h-annex-2-next-stage-payloads
https://rmceoin.github.io/malware-analysis/clearfake/
https://debugactiveprocess.medium.com/anti-vm-techniques-with-msacpi-thermalzonetemperature-32cfeecda802
https://www.splunk.com/en_us/blog/security/amadey-threat-analysis-and-detections.html