-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Architecture
Joe edited this page Feb 9, 2022
·
7 revisions
This document describes the technical design of Sliver.
There are four major components to the Sliver ecosystem:
-
Server Console - The server console is the main interface, which is started when you run the
sliver-server
executable. The server console is a superset of the client console. All code is shared between the client/server consoles except server-specific commands related to client (i.e., operator) management. The server console talks over an in-memory gRPC interface to the server. -
Sliver Server - The Sliver server is also part of the
sliver-server
executable and manages the internal database, starts/stops network listeners (such as C2 listeners, though there are other types). The main interface used to interact with the server is the gRPC interface, thru which all functionality is implemented. By default the server will only start an in-memory gRPC listener that can only be communicated with from the server console. However, the gRPC interface can also be exposed to the network (i.e., multiplayer mode) over mutual TLS (mTLS). -
Client Console - The client console is the primary user interface that is used to interact with the Sliver server. Note that most of the code in the server console is actually the client console. The client console can also be compiled into a separate client binary file
sliver-client
, which is generally used to connect to the "mutliplayer" gRPC network listener. - Implant - The implant is the actual malicious code run on the target system you want remote access to.
[ Server Console ] --(In Memory gRPC)--> [ Sliver Server ] --(Various C2 Protocols)--> [ Implant ]
^
|
(mTLS gRPC)
|
[ Client Console ]
By implementing all functionality over this gRPC interface, and only differing the in-memory/mTLS connection types the client code doesn't "know" if it's running in the server console or the client console. Due to this, a single command implementation will work in both the server console and over the network in multiplayer mode.
"Bred as living shields, these slivers have proven unruly—they know they cannot be caught."