On this publish we will likely be discussing Group Coverage assaults, basing the menace hunt on a ransomware investigation undertaken by the Sophos X-Ops Incident Response staff earlier this 12 months. We’ll cowl malicious behaviors related to Lively Listing and Group Coverage assaults, displaying you how one can examine and remediate a few of these threats.
A lot of the fabric on this publish can be coated within the video “Figuring out Group Coverage Assaults,” now displaying on our new Sophos X-Ops YouTube channel. The video reveals a hunt and remediation (utilizing Sophos Stay Response — a key characteristic of Sophos Intercept X Superior with XDR, our customary investigation software, although hunters can replicate these steps on any Home windows shell).
This publish walks by the identical materials, however supplies the onscreen data in a reader-friendly format.
The case
Within the Cyclops ransomware case underneath dialogue, the menace actor gained preliminary entry to the setting by leveraging a ProxyShell vulnerability to breach an unpatched Trade server. 4 days after reaching preliminary entry, the menace actor started executing their assault utilizing encoded PowerShell instructions from the net shell on the Trade server.
The attacker proceeded to disable endpoint safety as a protection evasion approach, and to clear Home windows occasion logs and web browser historical past. The attacker then leveraged Distant Desktop Protocol (RDP) to carry out lateral motion to further machines on the community. Each Cobalt Strike command-and-control malware in addition to AnyDesk distant entry software program had been put in on a number of machines to take care of entry. A day later, the attacker used their community entry to exfiltrate knowledge to a number of cloud storage internet hosting suppliers.
After that, the attacker leveraged Lively Listing Group Coverage to distribute the Cyclops ransomware binary to machines on the area, additionally making a Group Coverage to execute the ransomware binary utilizing scheduled duties. Within the remaining stage of the assault, the attacker deleted quantity shadow copy backups. Machines on the area ran the scheduled job, executing the Cyclops ransomware binary, encrypting recordsdata, and leaving ransom notes.
Why goal Group Coverage?
Group Coverage assaults are a sign of a bigger Lively Listing assault. In a Group Coverage assault, menace actors could leverage current Group Coverage Objects, akin to UNC path, to execute malicious payloads from less-secure areas preset on a GPO, or the interception of person passwords set by way of Group Coverage with the weak cpassword attribute.
As soon as a menace actor has escalated privileges, they typically create GPOs to perform objectives at scale, akin to disabling of core safety software program and options together with firewalls, antivirus, safety updates, and logging. They could additionally use GPOs for deployment of malicious instruments by the creation of scheduled duties, startup or login scripts, or providers to take care of persistence and execute malware.
Comfortable looking
Investigators start a ransomware investigation-and-remediation course of by amassing no matter sufferer testimonies and forensic knowledge can be found. Utilizing the instruments at hand, they seek for indicators of compromise in the usual forensic artifacts, akin to Home windows occasion logs, PowerShell historical past, startup objects, shellbags, scheduled duties, shim cache, and so forth.
When performing an evaluation, if synchronized or reoccurring proof is discovered, it might be a key indication of a Group Coverage assault. For instance, when a scheduled job or file execution is seen on a number of machines, it signifies distant execution or the usage of Group Coverage. When system logs indicating the usage of software program deployment instruments or Home windows Administration Instrumentation usually are not current, it serves as a sign that Group Coverage was seemingly compromised. This use of malicious synchronizing is particularly evident throughout triage, when persistent scheduled duties reappear on techniques after being eliminated.
As soon as a Group Coverage assault is suspected, investigators ought to have a look at the Group Coverage objects on the area controller, utilizing the PowerShell command get-GPO -All to record all of them. Filtering these outcomes
Get-GPO -All | Type-Object ModificationTime -Descending | Format-Desk DisplayName, ModificationTime, CreationTime
permits the investigator to see modification and creation instances, in search of intersections with different info of the case. Sorting by the date on which recordsdata had been final modified can result in any GPOs created or modified by the menace actor. At this level, it’s helpful for the investigator to generate a GPO report for additional investigation.
Get-GPOReport -All -ReportType Html -Path "C:WindowsTempSophos_GPOReport.html”
Analyzing the GPO report we will discern the aim of any Group Coverage objects with suspicious names. Within the Cyclops case anonymized for our video, we recognized three suspicious-looking GPOs, which for anonymization functions we name “Pawn,” “Rook,” and “Queen.”
- Within the case of Pawn, the attacker used the GPO to put in a scheduled job on area computer systems to run this system rook.exe.
- The Rook GPO is used to repeat the rook.exe file to domain-joined machines from an administrative share on the file server. Since it will make sense for the attacker to do precisely that with malware, we instantly go to the native system to see if a duplicate continues to be obtainable, utilizing Get-ItemProperty “C:Windowsrook.exe”. Whether it is obtainable, an investigator can get the hash worth for this file (utilizing Get-FileHash “C:Windowsrook.exe”) and test it in opposition to VirusTotal to see if it’s identified to be malicious; this hash additionally supplies the means to dam the file within the setting. It’s sensible after all to retain a pattern of the malware for additional forensic evaluation.
- The Queen GPO configures Home windows Firewall states to Off. It additionally seems that Queen disables Home windows Defender’s antimalware protections, together with real-time scanning skill.
Making it higher
As soon as malicious behaviors in your setting are recognized, containment and remediation can start by way of the Group Coverage Administration software on the Lively Listing administration server.
First, tackle the Queen, which is undermining Home windows Firewall and Home windows Defender operations. Disabling this coverage will stop these settings from overriding the default native Home windows settings.
Subsequent it’s Rook’s flip to be taken off the board. Disabling this coverage will stop the malware rook.exe from being copied to any further machines on the community. The malware executable must also be blacklisted within the world settings for all the community. This can remove the malware’s skill to be executed sooner or later – kind a brand new attacker try, for example, or in case an contaminated backup makes an attempt to re-load the executable. (Good backup hygiene is a crucial subject for defenders to contemplate, nevertheless it lies barely exterior the scope of this text.)
Lastly, remediate the malicious scheduled job named Pawn. Disabling this GPO prevents further deployments of the scheduled job to computer systems on the area. Following these remediation steps will assist stop the unfold of malicious exercise all through the community.
All three of those steps contain disabling malicious GPOs, however that’s not sufficient; correct remediation will contain taking steps that may carry out the alternative motion(s) as these taken by the malicious GPOs. This could itself be finished at scale with GPOs or different system administration platforms. An alternative choice, which some enterprises could desire, is rollback. When you select the latter, inspection of the archived materials for an infection or undesirable alteration is strongly really helpful.
Acknowledgements
Elida Leite and Rajat Wason contributed to this analysis.