SLEEPWALKER: The Stealthy Windows Backdoor That Can Hide Inside Normal Network Traffic

Listen to this Post

Featured Image

Introduction: A Backdoor Designed to Stay Asleep

Cybersecurity researchers have uncovered a previously unknown Windows backdoor called SLEEPWALKER, and its design reveals just how far modern malware can go to avoid detection. Rather than behaving like a conventional remote-access Trojan that continuously communicates with a command-and-control server, SLEEPWALKER can remain almost completely silent until an attacker sends the right encrypted trigger.

That difference is important.

For defenders, one of the most reassuring signs of a clean endpoint is often the absence of suspicious outbound connections. Security teams routinely search for beaconing, unusual domains, unexpected listening ports, and unexplained traffic patterns. SLEEPWALKER challenges that assumption because the malware can wait passively for commands hidden inside network traffic that otherwise may look ordinary.

The backdoor was found as an unsigned 64-bit Windows DLL masquerading as Microsoft’s dpapi.dll. It copies version information from the ESET Management Agent and is designed to be side-loaded by ERAAgent.exe, the legitimate ESET Management Agent executable. Once loaded into the expected process, the implant checks its environment and remains dormant unless the correct conditions are met.

This creates a particularly uncomfortable scenario: a compromised machine may continue performing legitimate management-agent activity while the malicious component quietly waits in the background.

The Core Idea: Malware That Does Not Need to Call Home

Traditional backdoors frequently establish a connection to an attacker-controlled server. They may resolve a domain, contact an IP address, maintain a heartbeat, or periodically send encrypted data.

SLEEPWALKER takes a different approach.

Its initial configuration contains essentially one major responsibility: monitor network interfaces for a specially constructed trigger. The malware does not need to constantly communicate with an external server to determine whether an attacker is present.

Instead, it waits.

That passive behavior dramatically changes the detection problem. A security team could inspect DNS logs, proxy traffic, firewall connections, and endpoint network activity and find nothing obviously malicious because the implant may not generate the outbound beaconing normally associated with command-and-control infrastructure.

The attacker essentially has to knock on the door before the malware wakes up.

A Fake dpapi.dll Helps SLEEPWALKER Blend In

One of the most interesting aspects of SLEEPWALKER is its delivery mechanism.

Researchers identified the sample as an unsigned 64-bit DLL pretending to be Microsoft’s dpapi.dll. The malware also copies version information associated with the ESET Management Agent.

Its intended loading path involves ERAAgent.exe, the legitimate ESET Management Agent process.

This technique takes advantage of a dangerous reality in Windows environments: legitimate applications frequently load DLLs, and defenders cannot automatically treat every DLL loaded by a trusted process as malicious.

SLEEPWALKER goes further by checking the name of the host process. If it is not running in the expected environment, the malware stays inactive.

That environmental check is another layer of stealth.

Why DLL Side-Loading Remains Dangerous

DLL side-loading works because Windows applications may search for required libraries in locations controlled by an attacker. If a malicious library is placed where an application expects a legitimate dependency, the trusted executable can unintentionally become the mechanism that loads the malware.

The result is a deceptive chain:

Legitimate executable → malicious DLL → hidden backdoor

From an analyst’s perspective, the process itself may appear legitimate. The challenge becomes identifying whether the loaded library is authentic, correctly signed, located where it should be, and consistent with the software’s expected installation state.

This is why file integrity and module-loading telemetry remain important even when endpoint protection products are installed.

SLEEPWALKER’s Trigger Is Heavily Protected

SLEEPWALKER does not simply react to every packet arriving at the compromised computer.

The malware applies multiple validation stages before accepting traffic as a command.

Researchers observed framing checks, CRC-32 validation, and AES-256-CCM authentication as part of the trigger-validation process.

That combination is significant because it makes accidental activation much less likely.

A random packet should not be enough to wake the implant. The attacker needs to construct traffic that satisfies the backdoor’s expected format and cryptographic checks.

This creates a form of hidden authentication mechanism embedded directly into the network-triggering process.

Promiscuous Packet Capture Gives the Backdoor an Unusual View

SLEEPWALKER uses promiscuous-mode packet capture to inspect network traffic before it is processed normally by the operating system’s protocol stack.

That capability is particularly interesting from a defensive perspective.

Ordinary applications generally interact with network traffic through conventional sockets and protocols. A backdoor operating closer to the packet-capture layer can inspect traffic that was never intended to establish a normal connection with the malicious process.

The malware can therefore listen without necessarily opening an obvious TCP or UDP service.

That is a major reason why conventional port-scanning approaches may fail to reveal the implant.

Multiple Communication Channels Expand the Attack Surface

SLEEPWALKER supports several potential communication mechanisms.

Researchers identified capabilities involving:

Raw network packets

DNS queries

TCP

UDP

ICMP echo requests

SMB named pipes

VMware VMCI

Each channel presents a different challenge for defenders.

The important qualification is that discovering these capabilities does not prove that every communication method was used in a real-world intrusion. The analyzed sample’s bootstrap configuration activates the raw-packet listener, while some of the other capabilities could require another build or later commands.

That distinction matters when separating confirmed behavior from theoretical malware capability.

ICMP Turns Ordinary Pings Into a Potential Carrier

ICMP is normally associated with simple diagnostic operations such as ping.

That familiarity makes it attractive to attackers.

SLEEPWALKER can use ICMP echo requests to transport information, allowing data to travel inside ping traffic rather than a conventional application-layer connection.

A basic security monitoring system might classify occasional ICMP traffic as harmless troubleshooting.

The danger appears when defenders assume that familiar protocols are automatically trustworthy.

ICMP traffic deserves context. A single ping is usually unremarkable. Repeated, structured, unusually sized, or encoded ICMP payloads originating from unexpected systems can be much more interesting.

SMB Named Pipes Add an Internal Communication Route

The backdoor can also communicate through Windows SMB named pipes.

Named pipes are legitimate Windows mechanisms used for inter-process and network communication. They are therefore another example of malware hiding inside technology that administrators already expect to see in enterprise environments.

SLEEPWALKER can create named pipes that are accessible to Everyone and Anonymous Logon after weakening certain Windows settings related to anonymous SMB sessions.

That behavior is particularly concerning because it could facilitate communication between compromised systems on a local network.

The researchers noted that these changes require administrator-level privileges already available to the compromised process.

DNS Can Become a Covert Trigger

DNS is one of the most heavily used protocols on enterprise networks, making it another attractive channel for covert communication.

SLEEPWALKER contains functionality capable of extracting encrypted commands from specially formatted DNS query labels.

However, there is an important caveat: the analyzed sample’s embedded bootstrap configuration enables the raw-packet listener rather than the DNS listener.

That means the presence of DNS functionality should not automatically be interpreted as evidence that DNS-based command execution occurred in the observed environment.

Instead, it demonstrates what the malware is capable of under a different configuration or after receiving additional instructions.

VMware VMCI Creates an Even More Interesting Problem

Perhaps the most unusual communication mechanism is VMware VMCI, a virtualization communication layer that can facilitate communication between a guest virtual machine and its host or between guests running on the same VMware host.

Unlike ordinary network traffic, VMCI communication does not necessarily traverse a physical network adapter.

That has serious implications for monitoring.

Traditional network sensors generally watch traffic crossing network interfaces. A communication mechanism that operates outside the physical network path can reduce the visibility available to conventional packet-capture infrastructure.

In heavily virtualized environments, defenders therefore need visibility at more than the network perimeter.

The Malware Can Receive and Execute Bytecode

Once SLEEPWALKER is activated, the malware can decrypt and execute attacker-supplied bytecode through a custom command interpreter.

Researchers identified 23 instructions supported by the interpreter.

These instructions provide capabilities associated with scheduling tasks, transferring information, receiving additional programs, assembling staged payloads, decompressing code, and executing shellcode directly from memory.

This is more than a simple communications implant.

It is effectively a flexible execution platform.

The ability to receive instructions and construct or execute additional payloads in memory can reduce the need for an attacker to immediately drop conventional executable files onto disk.

In-Memory Execution Makes Forensics Harder

Malware that executes code directly from memory creates an additional challenge for incident responders.

Traditional forensic techniques often emphasize suspicious files, recently created executables, modified directories, and persistence mechanisms.

Memory-resident payloads can leave fewer obvious artifacts on disk.

That does not make them invisible, but it changes where defenders need to look.

Memory acquisition, process inspection, loaded-module analysis, ETW telemetry, endpoint detection data, and behavioral monitoring become increasingly important when investigating suspicious processes.

SLEEPWALKER’s Dormant State Is the Most Dangerous Feature

The most concerning characteristic may not be its ability to execute code.

It may be its ability to wait.

A noisy backdoor can eventually reveal itself through repeated connections, strange domains, unusual ports, or persistent outbound traffic.

A dormant implant can sit quietly for days, weeks, or longer.

This creates a fundamental defensive problem: defenders are often searching for activity, while the malware’s strategy is to minimize activity until the attacker decides to act.

That is why SLEEPWALKER is an important example of the continuing evolution from noisy command-and-control malware toward highly selective, event-driven implants.

The Backdoor Does Not Prove a Specific Threat Actor

At the time of the reported discovery, researchers had not linked SLEEPWALKER to a known threat actor, specific campaign, victim, or industry.

That limitation should remain front and center.

The

The presence of DNS, SMB, ICMP, or VMCI support also does not prove that attackers actually used those channels in a particular intrusion.

Good threat intelligence separates observed behavior, identified capability, and inferred intent.

Why This Discovery Matters to Enterprise Defenders

SLEEPWALKER represents a broader shift in the way defenders need to think about endpoint compromise.

Security teams can no longer rely exclusively on:

Open ports

C2 domains

Periodic beacons

Suspicious outbound connections

Dropped executable files

Conventional network protocols

Modern implants can abuse legitimate infrastructure, wait for carefully crafted triggers, operate inside trusted processes, and communicate through channels that do not necessarily produce obvious network indicators.

That makes endpoint integrity and behavioral visibility increasingly important.

Deep Analysis: How Defenders Can Hunt for SLEEPWALKER-Like Behavior

Check Unexpected DLLs Loaded by Trusted Processes

Security teams should investigate trusted processes that load unsigned or unexpected DLLs.

On Windows, defenders can begin with process and module inspection using built-in tools such as:

Get-Process -Name ERAAgent -Module |
Select-Object ModuleName, FileName

The objective is not to declare every unusual module malicious. Instead, analysts should compare the loaded module against the approved ESET installation, expected file paths, signatures, hashes, and software inventory.

Verify Digital Signatures

A suspicious DLL masquerading as a Microsoft component deserves immediate investigation.

Get-AuthenticodeSignature "C:\Path\To\dpapi.dll" |
Format-List Status, StatusMessage, SignerCertificate

A missing or invalid signature is not automatically proof of malware, but it should increase the investigation priority when combined with unexpected location or loading behavior.

Search for Suspicious DLL Locations

Administrators can search for files named dpapi.dll outside expected Windows system directories:

Get-ChildItem C:\ -Filter dpapi.dll -Recurse -ErrorAction SilentlyContinue |
Select-Object FullName, Length, LastWriteTime

On large production systems, defenders should perform this through centralized endpoint tooling rather than indiscriminately running recursive searches across every disk.

Inspect Network Interfaces and Listening State

A conventional backdoor might expose a listening socket, but SLEEPWALKER demonstrates why defenders should not stop there.

Useful baseline commands include:

Get-NetTCPConnection |
Sort-Object State, LocalPort |

Format-Table -AutoSize

and:

Get-NetUDPEndpoint |
Sort-Object LocalPort |

Format-Table -AutoSize

The absence of a suspicious listener should never be treated as proof that an endpoint is clean.

Investigate Promiscuous Capture Behavior

Security teams should pay attention to processes that unexpectedly interact with packet-capture functionality.

Depending on the environment, telemetry from Windows Filtering Platform, ETW, endpoint detection platforms, and network-monitoring software can help identify processes interacting with packet capture or unusual network interfaces.

The key question is behavioral:

Why does this particular process need to inspect raw traffic?

Hunt for Suspicious ICMP Payloads

ICMP traffic should be profiled rather than automatically blocked.

Defenders can use packet-capture tools in controlled environments to inspect suspicious traffic:

tcpdump -ni any icmp

For deeper investigation:

tcpdump -ni any -vv -X icmp

These commands are useful for incident response and controlled network analysis. Analysts should look for unusual payload sizes, repetitive structures, encoded content, abnormal frequency, and unexpected communication relationships.

Investigate DNS Labels, Not Just Domains

DNS monitoring should go beyond domain reputation.

Long or highly structured labels can sometimes indicate encoded or tunneled information.

A basic Windows DNS cache review can begin with:

Get-DnsClientCache |
Sort-Object Name |

Format-Table -AutoSize

Enterprise defenders should ideally correlate DNS requests with process identity, endpoint identity, timing, and destination reputation.

Monitor SMB Named-Pipe Activity

Named pipes are common in Windows environments, so simply finding one is not enough.

Investigators should correlate:

Pipe names

Creating process

Parent process

User context

Remote endpoints

Authentication behavior

Timing

Corresponding file or registry activity

Suspicious anonymous access attempts or unexpected changes to SMB security settings should receive additional scrutiny.

Review Anonymous SMB Configuration

Because the reported malware can weaken Windows settings associated with anonymous SMB sessions, defenders should monitor configuration changes related to anonymous access.

For example:

Get-SmbServerConfiguration |
Select-Object EnableAuthenticateUserSharing, EnableSecuritySignature

Organizations should compare these values against their approved security baseline rather than relying on a universal configuration assumption.

Look for Unsigned Modules Inside Security Software Processes

A particularly valuable hunting rule is to identify unsigned DLLs loaded into processes belonging to security, management, backup, monitoring, or administration software.

Trusted processes are attractive targets because they can provide:

Legitimate execution context

Reduced suspicion

Existing privileges

Network access

Enterprise trust

Automatic startup

That combination can be extremely valuable to a stealthy implant.

What Undercode Say: SLEEPWALKER Shows Why Silence Is No Longer Reassuring
1. The Biggest Threat Is Not the Number of Protocols

SLEEPWALKER is impressive because it supports several communication mechanisms, but the deeper lesson is not simply that attackers have another protocol to abuse.

The deeper lesson is that malware can be designed around conditional activity.

2. Dormant Malware Changes the Detection Equation

When malicious software does not beacon continuously, defenders lose one of their easiest behavioral indicators.

The endpoint can appear quiet while still being compromised.

  1. Trusted Processes Are Increasingly Valuable to Attackers

Using a legitimate management executable as the host for malicious code demonstrates why process reputation alone cannot establish trust.

The process may be legitimate.

The module loaded into it may not be.

4. DLL Side-Loading Remains a Practical Technique

Despite years of security research, DLL side-loading continues to provide attackers with a powerful way to blend malicious code into legitimate software execution chains.

  1. The Name of a DLL Means Very Little

A file called dpapi.dll is not necessarily

Path, signature, hash, origin, loading process, and behavior all matter.

  1. Cryptographic Triggers Are Designed to Reduce Noise

CRC checks combined with authenticated AES encryption make accidental activation less likely.

This demonstrates that sophisticated malware developers increasingly design implants to avoid unnecessary activity.

  1. Raw Packet Monitoring Creates a Blind Spot

Traditional socket-based monitoring may not capture every form of traffic inspection performed by an implant.

Network visibility must therefore extend deeper than ordinary connection logs.

8. ICMP Is Still Relevant

Ping traffic is often treated as low risk because it is so common.

SLEEPWALKER demonstrates why defenders should analyze behavior rather than protocol names.

9. DNS Remains an Attractive Covert Channel

DNS is everywhere, which makes unusual DNS traffic difficult to eliminate without affecting legitimate business activity.

That makes detection quality more important than simply blocking DNS.

  1. Named Pipes Are Part of the Windows Attack Surface

Enterprise defenders frequently focus on network sockets and forget local IPC mechanisms.

Malware developers have not forgotten them.

11. Virtualization Creates New Security Boundaries

VMCI is especially important because it highlights the limitations of network-centric monitoring in virtualized environments.

Not every meaningful communication path crosses a physical network interface.

  1. Cloud and Virtual Infrastructure Need Endpoint Visibility

As organizations move workloads into virtualized and cloud environments, host-level telemetry becomes increasingly valuable.

13. Memory Analysis Is Becoming More Important

The ability to execute staged code directly from memory means file-based detection cannot be the entire defensive strategy.

14. Security Products Can Become Attack Targets

Security and management agents often run with elevated privileges.

That makes them valuable targets for attackers seeking execution and persistence.

  1. ESET-Like Management Infrastructure Deserves Strong Integrity Controls

Any software deployed broadly across an enterprise should have strict controls around its installation directory and loaded modules.

16. Unsigned Components Should Be Investigated

An unsigned DLL inside a privileged management process deserves more attention than an ordinary unsigned file sitting in an isolated user directory.

17. Attribution Should Wait for Evidence

The researchers did not connect SLEEPWALKER to a known actor or campaign.

That should discourage premature attribution.

  1. Capability Is Not the Same as Usage

The presence of DNS functionality does not mean DNS was used in the intrusion.

The presence of VMCI support does not prove VMCI communication occurred.

19. This Distinction Matters for Incident Response

Investigators must separate what the sample can do from what the attacker actually did.

20. Detection Should Be Layered

No single telemetry source is likely to expose every SLEEPWALKER-like implant.

Endpoint, memory, network, DNS, SMB, virtualization, and file-integrity telemetry should complement one another.

21. Network Detection Alone Is Insufficient

A backdoor that can remain dormant does not need to produce continuous C2 traffic.

  1. Endpoint Detection Alone Is Also Not Enough

An implant waiting for a network trigger may appear almost inert until activated.

23. Correlation Becomes the Key

The strongest detection opportunity may come from connecting small anomalies that look insignificant individually.

  1. A Strange DLL Plus a Trusted Process Is More Interesting

A suspicious module becomes more meaningful when combined with unusual loading context.

  1. A Strange DLL Plus Packet Capture Is More Concerning

If the same process also demonstrates unexpected raw-network inspection, the risk increases significantly.

26. Anomalous ICMP Should Be Correlated

Repeated structured ICMP traffic deserves investigation when its source and destination relationships are unusual.

27. DNS Anomalies Need Process Context

A suspicious query becomes much more valuable when defenders can identify the process responsible for generating it.

28. SMB Anomalies Need Identity Context

Anonymous named-pipe behavior should be correlated with user privileges, process identity, and network location.

29. Virtualization Telemetry Should Not Be Forgotten

VM-level communication can bypass monitoring assumptions built around traditional Ethernet traffic.

30. Privilege Reduction Still Matters

SLEEPWALKER’s ability to modify security-related settings depends on administrator-level privileges already available to the compromised process.

31. Least Privilege Can Limit Damage

Reducing unnecessary administrative privileges can make post-compromise actions more difficult.

  1. Application Control Can Raise the Cost of Execution

Organizations should use application-control and allowlisting mechanisms where practical, particularly for sensitive management systems.

33. File Integrity Monitoring Can Catch Tampering

Unexpected changes to security-agent directories should generate alerts.

34. Module-Level Monitoring Is Valuable

Monitoring what libraries trusted applications load can expose attacks that process-level monitoring misses.

35. Incident Responders Should Acquire Memory

If an endpoint is suspected of hosting an in-memory implant, memory acquisition can preserve evidence unavailable from disk.

36. Hunt Before You Eradicate

Investigators should preserve relevant telemetry before removing a suspected implant.

37. Detection Engineering Should Assume Evasion

Attackers are increasingly designing malware specifically around common defensive assumptions.

  1. “No C2” Does Not Mean “No Compromise”

This is perhaps the most important lesson from SLEEPWALKER.

39. Quiet Systems Still Need Behavioral Baselines

A machine that suddenly begins capturing unusual traffic or loading unexpected libraries should be compared against its normal operating profile.

  1. SLEEPWALKER Is a Warning About the Future

The next generation of stealth malware may not look like a traditional backdoor at all.

It may look like a legitimate process, remain asleep for long periods, communicate through ordinary infrastructure, and wake only when a carefully authenticated trigger reaches the right machine.

✅ SLEEPWALKER Uses Multiple Potential Communication Channels

The reported sample contains capabilities involving raw packets, DNS, ICMP, SMB named pipes, and VMware VMCI.

However, these capabilities should not be confused with confirmed use of every channel during an actual intrusion.

✅ The Malware Can Remain Dormant

The described design does not require continuous beaconing to a hard-coded command-and-control server.

Its initial configuration waits for a specially constructed trigger before activating.

✅ The Sample Masquerades as dpapi.dll

Researchers identified an unsigned 64-bit DLL impersonating

This makes DLL integrity and module-loading telemetry particularly important.

✅ AES-256-CCM Is Part of Trigger Validation

The analyzed malware performs multiple checks before accepting a command, including cryptographic authentication.

This reduces the chance that arbitrary network traffic will activate the implant.

⚠️ Attribution Remains Unconfirmed

No known threat actor, campaign, victim, or industry was linked to SLEEPWALKER in the supplied research.

Claims connecting it to a particular group would therefore require additional evidence.

⚠️ Every Supported Channel Was Not Necessarily Used

The presence of DNS, ICMP, SMB, and VMCI functionality demonstrates capability, not proof of operational use.

The analyzed bootstrap configuration reportedly enables the raw-packet listener.

Prediction

(+1) Stealthy, Event-Driven Backdoors Will Become More Common

The security industry is likely to see more malware that minimizes beaconing and waits for highly specific activation conditions.

Attackers have an obvious incentive to reduce the number of observable indicators generated by their implants.

Future backdoors may increasingly combine encrypted triggers with legitimate protocols, virtualization channels, memory execution, and trusted software processes.

That will push defenders toward richer behavioral telemetry rather than simple IOC-based detection.

(+1) Endpoint and Virtualization Monitoring Will Become More Important

As attackers explore communication mechanisms outside traditional network interfaces, organizations will increasingly need visibility inside endpoints and virtualized infrastructure.

Security teams that can correlate process activity, loaded modules, network behavior, DNS requests, memory activity, and virtualization events will have a significant advantage.

(-1) Traditional “Look for the Beacon” Detection Will Become Less Reliable

Organizations that rely heavily on outbound C2 detection could miss highly dormant implants.

The disappearance of periodic beaconing does not necessarily mean attackers have abandoned remote control.

It may mean they have found a quieter way to activate it.

Final Analysis: The Most Dangerous Malware May Be the Malware You Cannot See

SLEEPWALKER is a powerful reminder that malware sophistication is not always measured by how loudly it attacks.

Sometimes the most dangerous capability is restraint.

A backdoor that continuously contacts an attacker is eventually forced to reveal something about itself. It has to communicate, resolve domains, transmit data, maintain sessions, or expose infrastructure.

SLEEPWALKER turns that model around.

It can wait for the attacker.

It can disguise itself as a familiar DLL.

It can execute inside a legitimate management process.

It can inspect traffic without relying on an ordinary listening socket.

It can potentially communicate through several different mechanisms.

It can process encrypted triggers.

It can receive bytecode.

It can assemble staged payloads.

And it can execute code directly in memory.

None of those characteristics automatically proves a particular attack campaign. But together, they demonstrate the direction in which advanced Windows malware is moving.

For defenders, the answer is not to panic every time a machine loads a DLL or sends a ping.

The answer is to build context.

Know which DLLs belong on every critical endpoint. Know which processes legitimately capture packets. Know which systems should communicate through SMB named pipes. Know what normal DNS looks like. Know how virtual machines communicate. Know which management agents require administrator privileges.

Then investigate the deviations.

The central lesson is simple but uncomfortable: a compromised machine does not have to look busy to be dangerous.

SLEEPWALKER’s greatest weapon may therefore be its silence. By remaining asleep until the right trigger arrives, it attacks one of the oldest assumptions in cybersecurity—the idea that malicious software must constantly reveal itself to its operator.

In an era of increasingly stealthy implants, defenders will need to look beyond connections and alerts and start asking a harder question:

What is happening inside the systems that appear completely normal?

🕵️‍📝Let’s dive deep and fact‑check.

🎓 Live Courses & Certifications:

Join Undercode Academy for Verified Certifications

🚀 Request a Custom Project:

Secure, high-velocity infrastructure and disruptive technological engineering. Contact our engineering team for high-tier development and proprietary systems:
[email protected]
💎 Smart Architecture | 🛡️ Secure by Design | ⭐ Trusted by Thousands

References:

Reported By: cyberpress.org
Extra Source Hub (Possible Sources for article):
https://www.digitaltrends.com
Wikipedia
OpenAi & Undercode AI

Image Source:

Unsplash
Undercode AI DI v2

🔐JOIN OUR CYBER WORLD [ CVE News • HackMonitor • UndercodeNews ]

💬 Whatsapp | 💬 Telegram

📢 Follow UndercodeNews & Stay Tuned:

𝕏 formerly Twitter 🐦 | @ Threads | 🔗 Linkedin | 🦋BlueSky | 🐘Mastodon | 📺Youtube