On September 4, 2023, CERT-UA revealed a meticulously planned cyberattack targeting Ukraine's critical energy infrastructure. The attack's modus operandi was distinct; it utilized deceptive emails containing bait links, luring victims into downloading a seemingly innocuous ZIP archive. This archive, however, harbored malicious files designed to hijack the victim's computer, redirecting data flows and exfiltrating sensitive information using services like mockbin.org and mocky.io. Parallel to this, Zscaler ThreatLabz identified a campaign—dubbed the "Steal-It" campaign—exhibiting striking similarities. Focusing on regions like Australia, Poland, and Belgium, this campaign also harnessed Mockbin APIs to exfiltrate NTLMv2 hashes. Intriguingly, the tactics, techniques, and procedures (TTPs) align closely with those exhibited by APT28 (also known as Fancy Bear). The convergence of these findings underscores an adversary leveraging public services in broad daylight, orchestrating sophisticated attacks, and continuously adapting to the digital landscape.
The Splunk Threat Research Team (STRT) delved deeper into the findings reported by CERT-UA and Zscaler. This blog walks through our process of reconstructing the key components of the attack, our experience with Splunk Attack Analyzer for rapid sample triaging, and our deep dive into paths linked to mockbin.org and mocky.io. Furthermore, we'll detail how the STRT gathered crucial data from Mockbin. The goal of this blog is to illuminate how different adversary campaigns can intersect, wield the same tools conspicuously over extended periods, and provide guidance on spotting such activities using Splunk.
Let's begin by understanding Mockbin and mocky.io in depth. Both Mockbin and mocky.io are invaluable tools designed primarily for developers and testers. They provide platforms to create custom endpoints, allowing users to test, mock, and monitor HTTP requests and responses. This can be especially useful when integrating libraries, testing sockets, or experimenting with APIs.
However, while these platforms have legitimate and beneficial uses, they can also be exploited by adversaries. By leveraging the persistent and reliable hosting capabilities of Mockbin and mocky.io, threat actors can conveniently host and retrieve their malicious payloads. This offers them a stealthy approach, as these services are typically seen as benign, making their malicious activities harder to detect.
In our detailed analysis, we observed a consistent pattern of adversaries exploiting mockbin.org as an initial point of interaction, often serving as the first click or download in their attack chain. One notable method involves embedding links in LNK files, wherein a PowerShell script is triggered to send web requests to mockbin.org. This, in turn, redirects to mocky.io, fetching the first-stage payload. More recently, we noticed a direct approach where Mockbin links are delivered straight to potential victims' inboxes. Once clicked, these links redirect the user to mocky.io for a zip file download. Delving deeper into the contents of this zip file, we identified batch scripts that further rely on mocky.io URLs to progress the attack.
The intricacies of this multi-stage attack were meticulously documented in the CERT-UA blog post dated September 4th. While the post dives deep into various components of the campaign, the concluding screenshot effectively encapsulates the different stages of the attack, offering a visual representation.
(https://cert.gov.ua/article/5702579, CERT-UA)
We received two samples related to the campaign that include the batch file and decoy images.
https://www.virustotal.com/gui/file/b30f229ca49c8c0cd734e47336eeb49a483920914093d36672c64d45481ee71e
https://www.virustotal.com/gui/file/749533eef943e019e1f6ccf61f36cc0939f7aa0c730bac84467d83441a0584f0
With the mocky.io sites currently offline, we weren't able to proceed with the subsequent stages of the attack. Drawing insights from the CERT-UA blog, had the sites been operational, an additional BAT and VBS would have been deployed to further the attack. Delving into the primary .cmd file provides us with the following insights:
Weblinks.cmd
The second bat file contained the following - B207a288-3e1f-42cc-b.bat -
Notably, one of the compelling detection opportunities lies in identifying any usage of mockbin.org and mocky.io within an organizational network.
Headless browsers have become a cornerstone tool for developers. In essence, a "headless" browser is a web browser without a graphical user interface (GUI). This means that it can access web pages, but it doesn't display them to users. Instead, it operates programmatically, often used for automated testing, web scraping, and other server environments where a visual display isn't necessary.
Benefits of Headless Browsers:
Below are example usage of three popular browsers using the headless parameter.
Google Chrome:
Mozilla Firefox:
Microsoft Edge:
According to CERT-UA, the adversary leveraged the headless mode in a strategic manner. By running browsers in this mode, they could programmatically access the mockbin.org site, ensuring the redirection to the next stage of their attack. This tactic, while efficient, also has a layer of stealth to it; since headless browsers don't display their activities visually, it's easier for malicious actions to go unnoticed. The reliance on familiar developer tools in a malicious context underscores the craftiness of modern adversaries. They're co-opting legitimate tools, using them in ways they weren't originally intended for, all to further their malicious goals.
Headless browsing brings up an interesting detection opportunity as most endpoints across a fleet do not use it. This should stand out as non-standard behavior, but every organization is different, therefore we recommend baselining. A higher fidelity analytic could be used to look for headless and mockbin.org on the CommandLine together.
As outlined by Zscaler, the LNK method similarly uses Mockbin to redirect to Mocky and download the next stage.
(Zscaler,2013)
(Zscaler, 2013)
Many samples on VirusTotal may be obtained that contain similar artifacts. For the purposes of our research, we utilized this.
In this instance, once the LNK is clicked it will use PowerShell to hit the Mockbin (https://mockbin.org/bin/de22e2a8-d2af-4675-b70f-e42f1577da6e/view) site which returns the NTLM relay. Clever, right?
There are many variances, and most date back to earlier this year. It wasn’t until about 2 months ago we saw the first Bin ID on VirusTotal being used similarly as CERT-UA identified in their September 4, 2023 post.
In the midst of this, the STRT found two samples that matched what Zscaler had also identified. The two scripts on VirusTotal were defanged enough to where we could not run them. Unbeknownst to us at the time, Zscaler found this customized version of Nishang’s Start-CaptureServer.ps1.
The samples:
https://www.virustotal.com/gui/file/5c08c1c1b7e089b172e30b9ad452bab7ce64ee48201f603fc96fd9c6e24db1dc
https://www.virustotal.com/gui/file/52951f2d92e3d547bad86e33c1b0a8622ac391c614efa3c5d167d8a825937179
Initially, our view was these were bespoke instances of the tool Inveigh.
With that, we created a proof of concept that writes the credentials to disk instead of sending to Mockbin:
https://github.com/MHaggis/notes/blob/master/utilities/FancyNTLMRelay/fancyntlmrelay.ps1
We compared the two instances. First is our new version which will write it to a txt file:
These were the two variations on VirusTotal:
And
Both samples on VirusTotal were specially crafted for use. As obvious as it looks, they are not being picked up by many AV engines as of this writing.
This demo video showcases our version of Nishang’s Start-CaptureServer.ps1 script that logs locally.
Changing gears a bit, we will now focus on Mockbin and its use in the campaign shared by CERT-UA.
We initially started by viewing the reported URLs from VirusTotal. From everything we found on VirusTotal for the Mockbin domain, to using urlscan.io to gather additional Bin IDs, we were able to collect 26 unique IDs all related to the same activity reported by Zscaler and CERT-UA. We manually reviewed the content of each to validate it was the same as reported.
Below is the list of Bin IDs we gathered while digging into this.
As detailed in our analysis, the campaign often leverages mockbin.org as an initiation point, redirecting to mocky.io for subsequent stages. Upon extracting the URLs associated with this strategy, we found that the ensuing stages—whether zip files or other payloads—are currently inaccessible.
Mocky is free and open, therefore it allows us to request every script and access log being hosted by that Bin Identifier. We can do this via the website by going to the Bin ID and hitting the /log or /view. In addition, Mocky provides an API endpoint for each. For example, we can retrieve the log and view the data hosted.
View a script being hosted at https://mockbin.org/bin/31df6e74-9d7f-4759-b628-6424187c95d3/view
And the log can be viewed at https://mockbin.org/bin/31df6e74-9d7f-4759-b628-6424187c95d3/log
Mocky also offers an API that allows retrieval of all access logs and hosted scripts. We collected all the Bin Identifiers from VirusTotal and subsequently gathered the associated logs. We've shared the script we utilized to aid researchers in further investigations here.
Once we collected data from each Bin ID, we reviewed the scripts.
Most all of them are the same with the only difference being the mocky.io address. It begins by using a function “getBrowserVersion” to determine the browser in use. From there, it redirects to the next stage. Windows users with the presence of the string “win” in the user-agent, but not containing the string “wow”, and with the browser version above 100 will be redirected to mocky.io. Otherwise, directed to msn.com.
In Splunk, we were able to develop a simple query to show geographically where most of the ClientIPAddress were coming into the mockbin.org links.
| inputlookup extractedips.csv | iplocation A | geostats latfield=lat longfield=lon count
Throughout our research process, we devised a new analytic story for Forrest Blizzard and associated prior analytics. Furthermore, we enhanced our analytic set by crafting two distinct analytics. These are designed to aid defenders in baselining the utilization of mocky.io and mockbin.org, as well as in detecting headless browsing within their environments.
The analytic outlined below taps into endpoint process and command line data to pinpoint instances of headless browsing. Its primary goal is to assist organizations in establishing a baseline of normal activity, thereby making it easier to discern potential threats.
| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes where (Processes.process=*--headless* AND Processes.process="*--disable-gpu*") by Processes.dest Processes.user Processes.parent_process Processes.process_name Processes.process Processes.process_id Processes.parent_process_id sourcetype | `drop_dm_object_name(Processes)` | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`
The second analytic we developed aims to detect headless browsing that directly accesses the mockbin.org or mocky.io sites, aligning with the findings shared by CERT-UA.
| tstats `security_content_summariesonly` count min(_time) as firstTime max(_time) as lastTime from datamodel=Endpoint.Processes where (Processes.process=*--headless* AND Processes.process="*--disable-gpu*" AND (Processes.process="*mockbin.org/*" OR Processes.process="*mocky.io/*")) by Processes.dest Processes.user Processes.parent_process Processes.process_name Processes.process Processes.process_id Processes.parent_process_id sourcetype | `drop_dm_object_name(Processes)` | `security_content_ctime(firstTime)` | `security_content_ctime(lastTime)`
This campaign offers a striking testament to the evolving tactics of modern adversaries. Their ability to repurpose legitimate developer tools and public services for malicious ends presents both a challenge and an opportunity for the cybersecurity community. As threats become more sophisticated and covert, our ability to identify, analyze, and counteract these strategies becomes all the more crucial. The discoveries shared in this analysis underscore the importance of continuous vigilance, research, and collaboration. By understanding the methods of our adversaries, we can better equip ourselves to anticipate and mitigate future threats.
Any feedback or requests? Feel free to put in an issue on GitHub and we’ll follow up. Alternatively, join us on the Slack channel #security-research. Follow these instructions If you need an invitation to our Splunk user groups on Slack.
We would like to thank Michael Haag for authoring this post and the entire Splunk Threat Research Team for their contributions alongside the community: Teoderick Contreras, Mauricio Velazco, Patrick Bareiss, Nasreddine Bencherchali and Jose Hernandez.
The Splunk platform removes the barriers between data and action, empowering observability, IT and security teams to ensure their organizations are secure, resilient and innovative.
Founded in 2003, Splunk is a global company — with over 7,500 employees, Splunkers have received over 1,020 patents to date and availability in 21 regions around the world — and offers an open, extensible data platform that supports shared data across any environment so that all teams in an organization can get end-to-end visibility, with context, for every interaction and business process. Build a strong data foundation with Splunk.