| Original Text |
|---|
advanced engineering programs that contribute to Russia’s military-industrialcomplex. Tracked as Operation HollowQuill, the campaign leverages weaponized decoydocuments masquerading as official research invitations to infiltrate academic,governmental, and defense-related networks. The threat entity delivers a malicious RARfile which contains a .NET malware dropper, which further drops other Golang based shellcodeloader along with legitimate OneDrive application and a decoy-based PDF with a final CobaltStrike payload.Key TargetsIndustries AffectedAcademic & Research InstitutionsMilitary & Defense Industry.Aerospace & Missile TechnologyGovernment oriented research entities.Geographical FocusRussian Federation.Infection Chain. Initial Findings.In the early months of 2025, our team found a malicious RAR archive file named as Исх 3548 оформировании государственных заданий на проведение фундаментальных и поисковыхисследований БГТУ «ВОЕНМЕХ» им. Д.Ф. Устинова.rar , which translates to Outgoing 3548 Operation HollowQuill: Malware delivered intoRussian R&D Networks via Research Decoy PDFsSubhajeet SinghaOperation HollowQuill: Malware delivered into Russian R&DNetworks via Research Decoy PDFs.ContentsIntroductionKey TargetsIndustries AffectedGeographical FocusInfection ChainInitial FindingsLooking into the decoy-documentTechnical AnalysisStage 1 – Malicious RAR FileStage 2 – Malicious .NET malware-dropperStage 3 – Malicious Golang Shellcode loaderStage 4 – Shellcode OverviewHunting and InfrastructureConclusionSeqrite ProtectionIOCsMITRE ATT&CKAuthorsIntroductionSEQRITE Labs APT-Team has been tracking and has uncovered a campaign targeting the BalticState Technical University, a well-known institution for various defense, aerospace, and on the formation of state assignments for conducting fundamental and exploratory research atBSTU ‘VOENMEKH’ named after D.F. Ustinov.rar surfaced on Virus Total. Upon investigation,we determined that this RAR has been used as a preliminary source of infection, containing amalicious .NET dropper which contains multiple other payloads along with a PDF based decoy.The RAR archive contains a malicious .NET executable functioning as a dropper, named “Исх3548 о формировании государственных заданий на проведение фундаментальных ипоисковых исследований БГТУ «ВОЕНМЕХ» им. Д.Ф. Устинова” which also translates toOutgoing No. 3548 regarding the formation of state assignments for conducting fundamental andexploratory research at BSTU ‘VOENMEKH’ named after D.F. Ustinov. This dropper is responsiblefor deploying a legitimate OneDrive executable alongside a malicious shellcode loader written inGolang. Upon execution, the .NET executable performs several operations: one of them it deploysthe Golang loader containing shellcode, injects the shellcode into the legitimate OneDrive process,and spawns a decoy document. Before delving into the technical details, let’s first examine thedecoy document.Looking into the decoy-document.Upon looking into the decoy document, it turns out that this lure is a document related to theMinistry of Science and Higher Education of Russia, specifically concerning Baltic StateTechnical University “VOENMEKH” named after D.F. Ustinov. The document appears tobe an official communication addressed to multiple organizations, potentially discussing state-assigned research projects or defense-related academic collaborations. The above is a translated version of the initial sections of the decoy. Now, looking into the later part of the decoy it can be seen that the decoy document providesadditional information on the submission process for state-assigned research tasks, emphasizingthat financial support for these projects will come from budgetary allocations through the Ministryof Science and Higher Education of Russia. Also, the document mentions contact details forinquiries of Bogdan Evgenyevich Melnikov, a senior researcher in the Department of Fundamentaland Exploratory Research, with an email address for communication.Well, at the end of this decoy, it can be seen that it has been signed by A.E. Shashurin, who isidentified as a Doctor of Technical Sciences (д.т.н.), professor, and acting rector (и.о. ректора)of the institution. Overall, this lure document serves as an official communication from theMinistry of Science and Higher Education of Russia, providing guidelines for organizationsregarding state-funded research initiatives.Technical AnalysisWe will divide our analysis into four main sections. First, we will examine the malicious RARarchive. Second, we will delve into the malicious .NET dropper. Third, we will focus on analyzingthe working of the malicious Golang based shellcode injector and at the end, we will look into themalicious Cobalt Strike payload. This detailed exploration will shed light on the methodologiesemployed and provide insights into the threat actor’s tactics within this particular campaign.Stage 1 – Malicious RAR File.Upon examining the malicious RAR file, it contains another malicious executable named Исх 3548о формировании государственных заданий на проведение фундаментальных и поисковыхисследований БГТУ «ВОЕНМЕХ» им. Д.Ф. Устинова. After initial analysis of the file’s artefactsit was revealed it is a 32-bit .NET-based executable. In the next section, we will explore thefunctionality of this.NET executable. The contents and the entire decoy confirm that this PDF serves as a comprehensive guideline forthe allocation of state-assigned research tasks, outlining the process for organizations to submitproposals for fundamental and applied research projects under the 2026-2028 budget cycle. Itprovides instructions for institutions, particularly those engaged in advanced scientific andtechnological research, on how to register their technological requests within the Unified StateInformation System for Scientific Research and Technological Projects (ЕГИСУ НИОКТР) beforethe specified deadline. Stage 2 – Malicious .NET malware-dropper.Now, let us look into the workings of the .NET file which was compressed inside the RAR archive.As in the previous section we found that the binary is basically a 32-bit.NET executable, it is alsorenamed as SystemUpdaters.exe while we loaded it into analysis tools. Upon looking inside, the sample, we found three interesting methods. Now let us dive deep into them. Looking into the first method we can see that the Main function, we can see that it calls anothermethod MyCustomApplicationContext . Let us analyze the method. Next, looking into the method, we found that the code initially checks whether the decoy PDF ispresent inside the C:\Users\Appdata\Roaming\Documents location, in case the PDF file is notpresent, it goes ahead and copies the decoy, which is stored under the resources section, and writesit into the location. Then looking into one of the most intriguing aspects of this dropper is its use of a shortcut (.lnk)file named X2yL.lnk as a persistence mechanism by placing it in the Windows Startup folder toensure execution upon system boot. Upon analyzing the H3kT7fXw method, we observed that it isresponsible for creating this shortcut file. The method utilizes WshShell to generate the .lnk fileand assigns it a Microsoft Office-based icon, making it less suspicious. Additionally, the targetpath of the shortcut is set to the location where the malicious payload I.e., OneDrives_v2_1.exe isstored, ensuring its execution whenever the shortcut is triggered upon booting. At the end, it goes ahead and spawns the decoy PDF into the screen. As, we conclude the analysisof the malicious .NET dropper, in the next sections, we will analyze the malicious executabledropped by this dropper.Stage 3 – Malicious Golang Shellcode loader. Next, looking into the code further, we found that it checks if the file OneDrive.exe which isbasically the legitimate OneDrive application exists, in case it does not find it on the desiredlocation, it goes ahead and copies the legitimate application stored under the resource section, andwrites it into the location. Looking into the later part of code, we found that it checks for a file named as OneDrives_v2_1.exeunder the location C:\Users\Appdata\Roaming\Driver , in case it did not find the file, just likesimilar files, it copies the executable from the resources section and writes it to the location. Initially, upon looking into the sample inside analysis tools. we can confirm that this executable isprogrammed using Golang. Next, we will look into the working of the shellcode loader and itsinjection mechanism. Looking into the very first part of this shellcode loader, we found that the binary executestime_now function to initially capture the current system time, then it calls time_sleep which isalso a Golang function with a hardcoded value, then again it calls the time_now function, whichchecks for the timestamp after the sleep. Then, it calls time_Time_Sub which checks the differencebetween the timestamp captured by the function and goes ahead and checks if the total sleep timeis less then 6 seconds, in case the sleep duration is shorter, the program exits, this acts as a littleanti-analysis technique. Then finally, the code performs APC Injection technique to inject the shellcode inside the memory,by first starting with the process in a suspended state, followed by decoding and decrypting theshellcode, followed by allocating memory on the suspended OneDrive.exe process, then once thememory is allocated, it goes ahead and writes the shellcode inside the memory usingWriteProcessMemory , then it uses QueueUserAPC API to queue a function call inside the mainthread of the suspended OneDrive.exe process. Finally using ResumeThread which causes thequeued APC function (containing the shellcode) to execute, effectively running the injectedmalicious code within the context of OneDrive.exe. Now, let us analyze some key artifacts of theshellcode.Stage 4 -Shellcode overview.Upon looking inside, the malicious shellcode and analyzing it we found that the shellcode isactually a loader, which works by initially loading a Windows wwanmm.dll library. Once, the DLL is loaded it zeroes out the .text section of the DLL. It uses a windows APIDllCanUnloadNow which helps to prepare the beacon in memory. Thus, further facilitating theworking of the shellcode which is a Cobalt Strike beacon. Next, moving ahead and checking the code, we found that the legitimate OneDrive executable,which was dropped by the.NET dropper, that similar process is being created using theCreateProcess API in Golang, and the process is being created in a suspended mode. Then, the shellcode which is already embedded in this loader binary is being read by using Golangfunction embed_FS_ReadFile which returns the shellcode. Next, the shellcode which was returned by the previous function in a base64 encoded format isbeing decoded using Golang native function base64.StdEncoding.DecodeString and returned. Then, the code basically uses a hardcoded 13-byte sized key, which is basically used to decode theentire shellcode. Further analyzing it becomes quite evident that the beacon is connecting to the C2-server, hostedby the attacker using certain user-agent. As, this tool is quite commonly used, therefore, we willnot delve in-depth on the workings of the malicious beacon. The configuration of the beacon can beextracted as follows.Extracted Configuration:Method : GETHost[Command & Control] : phpsympfony.comUser-Agent : “Mozilla/5.0 (WindowsNT 6.3; Trident/7.0; rv:11.0) like Gecko”Hunting and Infrastructure.Upon analysis of the shellcode injector programmed in Golang, we found little OPSEC relatedmistakes from the threat actor such as leaving Go-build ID along with the injector, which helped usto hunt for similar payloads, used by the same threat actor. The Go-build ID is as follows:-_APqjT14Rci2qCv58VO/QN6emhFauHgKzaZvDVYE/3lVOVKh9ePO_EDoV_lSN/NL58izAdTGRId20sd3CJNow, looking into the infrastructural artefacts, the malicious command-and-control server whichhas been hosted at the domain phpsymfony[.]com , has been rotating the domain across multiplesASN services. Also, there has been a unique HTTP-Title which has also been rotated multiple timesacross the C2-server. AS174 United States COGENT-174AS47846 Germany SEDO-ASAS8560 UnknownIONOS-ASConclusionWe have found that a threat actor is targeting the Baltic Technical University using researchthemed lure where they have been using a.NET dropper to shellcode loader finally delivering aCobalt Strike in-memory implant. Analyzing the overall campaign and TTPs employed by thethreat actor, we can conclude that the threat actor has started targeting few months back sinceDecember 2024.SEQRITE Protection.Trojan.Ghanarava.1738100518c73fdbTrojan.Ghanarava.1735165667615275 IOCs.MD5 Filenameab310ddf9267ed5d613bcc0e52c71a08 Исх 3548 о формировании государственныхзаданий на проведение фундаментальных ипоисковых исследований БГТУ «ВОЕНМЕХ» им.Д.Ф. Устинова.rarfad1ddfb40a8786c1dd2b50dc9615275 SystemsUpdaters.exe Looking into the response across the history we can see that the title Coming Soon –pariaturzzphy.makebelievercorp[.]com has been set up multiple times. Upon further searching for the same HTTP-Title, we found that a lot of hosts are serving the sametitle, out of which some of them are serving malicious binaries such as ASyncRAT and much more. Looking into the ASNs, the C2 server has been rotating since the date of activation. The list is asfollows.ASN Geolocation OwnerAS13335 United States Cloudflare NetAS35916 United States MULTA-ASN1AS135377 Hong Kong UCLOUD-HK-AS-AP UCLOUD INFORMATION TECHNOLOGYHK LIMITED |
| Original Text | ChatGPT 4o Paged |
|---|---|
advanced engineering programs that contribute to Russia’s military-industrialcomplex. Tracked as Operation HollowQuill, the campaign leverages weaponized decoydocuments masquerading as official research invitations to infiltrate academic,governmental, and defense-related networks. The threat entity delivers a malicious RARfile which contains a .NET malware dropper, which further drops other Golang based shellcodeloader along with legitimate OneDrive application and a decoy-based PDF with a final CobaltStrike payload.Key TargetsIndustries AffectedAcademic & Research InstitutionsMilitary & Defense Industry.Aerospace & Missile TechnologyGovernment oriented research entities.Geographical FocusRussian Federation.Infection Chain. Initial Findings.In the early months of 2025, our team found a malicious RAR archive file named as Исх 3548 оформировании государственных заданий на проведение фундаментальных и поисковыхисследований БГТУ «ВОЕНМЕХ» им. Д.Ф. Устинова.rar , which translates to Outgoing 3548 |
Phase: Initial Access
Phase: Execution
Phase: Payload Deployment
Phase: Execution
Phase: Defense Evasion
Phase: Command and Control
|
Operation HollowQuill: Malware delivered intoRussian R&D Networks via Research Decoy PDFsSubhajeet SinghaOperation HollowQuill: Malware delivered into Russian R&DNetworks via Research Decoy PDFs.ContentsIntroductionKey TargetsIndustries AffectedGeographical FocusInfection ChainInitial FindingsLooking into the decoy-documentTechnical AnalysisStage 1 – Malicious RAR FileStage 2 – Malicious .NET malware-dropperStage 3 – Malicious Golang Shellcode loaderStage 4 – Shellcode OverviewHunting and InfrastructureConclusionSeqrite ProtectionIOCsMITRE ATT&CKAuthorsIntroductionSEQRITE Labs APT-Team has been tracking and has uncovered a campaign targeting the BalticState Technical University, a well-known institution for various defense, aerospace, and |
Phase: Initial Access
Phase: Execution
Phase: Execution
Phase: Defense Evasion
Phase: Execution
Phase: Command and Control
|
on the formation of state assignments for conducting fundamental and exploratory research atBSTU ‘VOENMEKH’ named after D.F. Ustinov.rar surfaced on Virus Total. Upon investigation,we determined that this RAR has been used as a preliminary source of infection, containing amalicious .NET dropper which contains multiple other payloads along with a PDF based decoy.The RAR archive contains a malicious .NET executable functioning as a dropper, named “Исх3548 о формировании государственных заданий на проведение фундаментальных ипоисковых исследований БГТУ «ВОЕНМЕХ» им. Д.Ф. Устинова” which also translates toOutgoing No. 3548 regarding the formation of state assignments for conducting fundamental andexploratory research at BSTU ‘VOENMEKH’ named after D.F. Ustinov. This dropper is responsiblefor deploying a legitimate OneDrive executable alongside a malicious shellcode loader written inGolang. Upon execution, the .NET executable performs several operations: one of them it deploysthe Golang loader containing shellcode, injects the shellcode into the legitimate OneDrive process,and spawns a decoy document. Before delving into the technical details, let’s first examine thedecoy document.Looking into the decoy-document.Upon looking into the decoy document, it turns out that this lure is a document related to theMinistry of Science and Higher Education of Russia, specifically concerning Baltic StateTechnical University “VOENMEKH” named after D.F. Ustinov. The document appears tobe an official communication addressed to multiple organizations, potentially discussing state-assigned research projects or defense-related academic collaborations. The above is a translated version of the initial sections of the decoy. |
Phase: Initial Access
Phase: Execution
Phase: Defense Evasion
Phase: Execution (Secondary)
|
Now, looking into the later part of the decoy it can be seen that the decoy document providesadditional information on the submission process for state-assigned research tasks, emphasizingthat financial support for these projects will come from budgetary allocations through the Ministryof Science and Higher Education of Russia. Also, the document mentions contact details forinquiries of Bogdan Evgenyevich Melnikov, a senior researcher in the Department of Fundamentaland Exploratory Research, with an email address for communication.Well, at the end of this decoy, it can be seen that it has been signed by A.E. Shashurin, who isidentified as a Doctor of Technical Sciences (д.т.н.), professor, and acting rector (и.о. ректора)of the institution. Overall, this lure document serves as an official communication from theMinistry of Science and Higher Education of Russia, providing guidelines for organizationsregarding state-funded research initiatives.Technical AnalysisWe will divide our analysis into four main sections. First, we will examine the malicious RARarchive. Second, we will delve into the malicious .NET dropper. Third, we will focus on analyzingthe working of the malicious Golang based shellcode injector and at the end, we will look into themalicious Cobalt Strike payload. This detailed exploration will shed light on the methodologiesemployed and provide insights into the threat actor’s tactics within this particular campaign.Stage 1 – Malicious RAR File.Upon examining the malicious RAR file, it contains another malicious executable named Исх 3548о формировании государственных заданий на проведение фундаментальных и поисковыхисследований БГТУ «ВОЕНМЕХ» им. Д.Ф. Устинова. After initial analysis of the file’s artefactsit was revealed it is a 32-bit .NET-based executable. In the next section, we will explore thefunctionality of this.NET executable. |
Phase: Initial Access
Phase: Execution
Phase: Delivery
Phase: Execution
Phase: Command and Control
This structured breakdown highlights the stages of the campaign and the tools and techniques used, aiding in red team emulation. |
The contents and the entire decoy confirm that this PDF serves as a comprehensive guideline forthe allocation of state-assigned research tasks, outlining the process for organizations to submitproposals for fundamental and applied research projects under the 2026-2028 budget cycle. Itprovides instructions for institutions, particularly those engaged in advanced scientific andtechnological research, on how to register their technological requests within the Unified StateInformation System for Scientific Research and Technological Projects (ЕГИСУ НИОКТР) beforethe specified deadline. |
The text provided doesn't contain information relevant to threat actor procedures, commands, or tools. If you have a specific Cyber Threat Intelligence (CTI) report or similar data, please share it to extract and structure the procedures used by the threat actor. |
Stage 2 – Malicious .NET malware-dropper.Now, let us look into the workings of the .NET file which was compressed inside the RAR archive.As in the previous section we found that the binary is basically a 32-bit.NET executable, it is alsorenamed as SystemUpdaters.exe while we loaded it into analysis tools. Upon looking inside, the sample, we found three interesting methods. Now let us dive deep into them. Looking into the first method we can see that the Main function, we can see that it calls anothermethod MyCustomApplicationContext . Let us analyze the method. Next, looking into the method, we found that the code initially checks whether the decoy PDF ispresent inside the C:\Users\Appdata\Roaming\Documents location, in case the PDF file is notpresent, it goes ahead and copies the decoy, which is stored under the resources section, and writesit into the location. |
Phase: Execution
Phase: Defense Evasion
|
Then looking into one of the most intriguing aspects of this dropper is its use of a shortcut (.lnk)file named X2yL.lnk as a persistence mechanism by placing it in the Windows Startup folder toensure execution upon system boot. Upon analyzing the H3kT7fXw method, we observed that it isresponsible for creating this shortcut file. The method utilizes WshShell to generate the .lnk fileand assigns it a Microsoft Office-based icon, making it less suspicious. Additionally, the targetpath of the shortcut is set to the location where the malicious payload I.e., OneDrives_v2_1.exe isstored, ensuring its execution whenever the shortcut is triggered upon booting. At the end, it goes ahead and spawns the decoy PDF into the screen. As, we conclude the analysisof the malicious .NET dropper, in the next sections, we will analyze the malicious executabledropped by this dropper.Stage 3 – Malicious Golang Shellcode loader. |
Phase: Persistence
Phase: Execution
Phase: Deception
Phase: Execution (Golang Shellcode Loader)
|
Next, looking into the code further, we found that it checks if the file OneDrive.exe which isbasically the legitimate OneDrive application exists, in case it does not find it on the desiredlocation, it goes ahead and copies the legitimate application stored under the resource section, andwrites it into the location. Looking into the later part of code, we found that it checks for a file named as OneDrives_v2_1.exeunder the location C:\Users\Appdata\Roaming\Driver , in case it did not find the file, just likesimilar files, it copies the executable from the resources section and writes it to the location. |
Phase: Execution
Phase: Persistence
|
Initially, upon looking into the sample inside analysis tools. we can confirm that this executable isprogrammed using Golang. Next, we will look into the working of the shellcode loader and itsinjection mechanism. Looking into the very first part of this shellcode loader, we found that the binary executestime_now function to initially capture the current system time, then it calls time_sleep which isalso a Golang function with a hardcoded value, then again it calls the time_now function, whichchecks for the timestamp after the sleep. Then, it calls time_Time_Sub which checks the differencebetween the timestamp captured by the function and goes ahead and checks if the total sleep timeis less then 6 seconds, in case the sleep duration is shorter, the program exits, this acts as a littleanti-analysis technique. |
Phase: Analysis Evasion
This sequence ensures that if the environment is being debugged and the sleep is artificially shortened, the program will terminate. |
Then finally, the code performs APC Injection technique to inject the shellcode inside the memory,by first starting with the process in a suspended state, followed by decoding and decrypting theshellcode, followed by allocating memory on the suspended OneDrive.exe process, then once thememory is allocated, it goes ahead and writes the shellcode inside the memory usingWriteProcessMemory , then it uses QueueUserAPC API to queue a function call inside the mainthread of the suspended OneDrive.exe process. Finally using ResumeThread which causes thequeued APC function (containing the shellcode) to execute, effectively running the injectedmalicious code within the context of OneDrive.exe. Now, let us analyze some key artifacts of theshellcode.Stage 4 -Shellcode overview.Upon looking inside, the malicious shellcode and analyzing it we found that the shellcode isactually a loader, which works by initially loading a Windows wwanmm.dll library. Once, the DLL is loaded it zeroes out the .text section of the DLL. It uses a windows APIDllCanUnloadNow which helps to prepare the beacon in memory. Thus, further facilitating theworking of the shellcode which is a Cobalt Strike beacon. |
Phase: Execution
Phase: Execution
|
Next, moving ahead and checking the code, we found that the legitimate OneDrive executable,which was dropped by the.NET dropper, that similar process is being created using theCreateProcess API in Golang, and the process is being created in a suspended mode. Then, the shellcode which is already embedded in this loader binary is being read by using Golangfunction embed_FS_ReadFile which returns the shellcode. Next, the shellcode which was returned by the previous function in a base64 encoded format isbeing decoded using Golang native function base64.StdEncoding.DecodeString and returned. Then, the code basically uses a hardcoded 13-byte sized key, which is basically used to decode theentire shellcode. |
Phase: Execution
Phase: Defense Evasion
|
Further analyzing it becomes quite evident that the beacon is connecting to the C2-server, hostedby the attacker using certain user-agent. As, this tool is quite commonly used, therefore, we willnot delve in-depth on the workings of the malicious beacon. The configuration of the beacon can beextracted as follows.Extracted Configuration:Method : GETHost[Command & Control] : phpsympfony.comUser-Agent : “Mozilla/5.0 (WindowsNT 6.3; Trident/7.0; rv:11.0) like Gecko”Hunting and Infrastructure.Upon analysis of the shellcode injector programmed in Golang, we found little OPSEC relatedmistakes from the threat actor such as leaving Go-build ID along with the injector, which helped usto hunt for similar payloads, used by the same threat actor. The Go-build ID is as follows:-_APqjT14Rci2qCv58VO/QN6emhFauHgKzaZvDVYE/3lVOVKh9ePO_EDoV_lSN/NL58izAdTGRId20sd3CJNow, looking into the infrastructural artefacts, the malicious command-and-control server whichhas been hosted at the domain phpsymfony[.]com , has been rotating the domain across multiplesASN services. Also, there has been a unique HTTP-Title which has also been rotated multiple timesacross the C2-server. |
Phase: Command and Control
Phase: Execution
Additional Observations
|
AS174 United States COGENT-174AS47846 Germany SEDO-ASAS8560 UnknownIONOS-ASConclusionWe have found that a threat actor is targeting the Baltic Technical University using researchthemed lure where they have been using a.NET dropper to shellcode loader finally delivering aCobalt Strike in-memory implant. Analyzing the overall campaign and TTPs employed by thethreat actor, we can conclude that the threat actor has started targeting few months back sinceDecember 2024.SEQRITE Protection.Trojan.Ghanarava.1738100518c73fdbTrojan.Ghanarava.1735165667615275 IOCs.MD5 Filenameab310ddf9267ed5d613bcc0e52c71a08 Исх 3548 о формировании государственныхзаданий на проведение фундаментальных ипоисковых исследований БГТУ «ВОЕНМЕХ» им.Д.Ф. Устинова.rarfad1ddfb40a8786c1dd2b50dc9615275 SystemsUpdaters.exe |
Phase: Initial Access
Phase: Execution
Phase: Execution
Phase: Command and Control
Potential Additional Commands and ToolsThese are inferred based on standard TTPs associated with Cobalt Strike:
- Technique: PowerShell Execution
- Command:
The sequence reflects a typical progression from initial access to establishing a persistent foothold in the targeted environment, leveraging Cobalt Strike’s versatile capabilities. |
Looking into the response across the history we can see that the title Coming Soon –pariaturzzphy.makebelievercorp[.]com has been set up multiple times. Upon further searching for the same HTTP-Title, we found that a lot of hosts are serving the sametitle, out of which some of them are serving malicious binaries such as ASyncRAT and much more. Looking into the ASNs, the C2 server has been rotating since the date of activation. The list is asfollows.ASN Geolocation OwnerAS13335 United States Cloudflare NetAS35916 United States MULTA-ASN1AS135377 Hong Kong UCLOUD-HK-AS-AP UCLOUD INFORMATION TECHNOLOGYHK LIMITED |
Based on the provided CTI information, there are no explicit command-line details or specific TTPs directly outlined. However, inferred techniques related to the malware and activity mentioned can be described as follows: Phase: Command and Control
Inferred Activities Based on Known Malware and Methodologies:Phase: Initial Access
Phase: Execution
Phase: Persistence
Phase: Lateral Movement
Phase: Defense Evasion
Note: For precise emulation, verify each inferred procedure with current ASyncRAT capabilities and updates since threat tools frequently evolve. |
| Gemini 2.0 |
|---|
Model: gemini-2.0-flashOkay, here's the breakdown of the TTPs from the provided CTI report, formatted for red team use. Operation HollowQuill TTPsPhase: Initial Access
Phase: Execution
Phase: Installation
Phase: Persistence
Phase: Defense Evasion and Code Injection
Phase: Payload Delivery
|
| Gemini 2.5 |
|---|
Model: gemini-2.5-flash-preview-05-20Here's a structured breakdown of the threat actor's procedures for red team emulation, based on the provided report: Phase: Initial Access
Phase: Execution
Phase: Persistence
Phase: Defense Evasion
Phase: Command and Control
|