| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
sandpolis is a virtual estate manager which is a tool for controlling esoterica like your online accounts, cloud servers, and even physical devices.
Virtual/digital estate is an encompassing term that refers to all digital assets under your control. Some assets may be entirely virtual and mostly controlled by a corporation, like accounts on github.com. Others have a physical component as well, like a Raspberry Pi.
All of these entities are part of your virtual estate and are intricately connected in both obvious and unapparent ways.
As an example, you might have an SSH key or API token on your machine that grants access to repositories (a digital asset) on Github. And suppose your machine also has an authorized key installed that allows access from another machine:
┌──────────┐ SSH Key ┌──────────┐ API Token ┌───────────────────┐
│Machine A ┼───────────►Machine B ┼─────────────► Github │
└──────────┘ └──────────┘ │ │
│ - Private repos │
└───────────────────┘
This picture represents a simple virtual estate with physical/digital assets that you have a high degree of control over (local machines), and purely digital assets that you have very little control over (an online account).
Sandpolis is about mapping out these relations to provide an overall view of your entire virtual estate. It can do both microscopic management tasks (like: "give me a shell on Machine A") and macroscopic tasks (like: "map out the attack surface of my Github repos").
Whatever you call it, non-physical or digital assets have a significant impact on our "real" lives. Sandpolis places all of those points on a map so you can track them in one place, with the ultimate goal of uncovering who controls what parts of your virtual estate.
Not everyone agrees on how much control we should personally have over our virtual estates. Some people simply don't care - just put it all in the cloud. Others recognize that the "cloud" is just someone else's computer and they're effectively sharing control over their digital assets.
If you're in the first category, then Sandpolis probably doesn't offer much value. For the rest of you, Sandpolis is an invaluable tool for shifting control of your virtual estate back where it belongs.
Sandpolis itself runs as a server that you login to via a GUI/CLI application (the client). The server generates a certificate that clients use to authenticate with mTLS.
You can run the Sandpolis agent on your devices which allows you to interact with them from a client. Agents also use the same mTLS certificate that client use.
Crates.iocargo install sandpolisAs an added benefit for this installation method, you can customize exactly what features you need. For example, to build with support for remote desktop and nothing else:
cargo install sandpolis --no-default-features --features desktopAs a result, your installation artifacts will be smaller and will be unable to perform any unwanted functionality.
Docker# Docker compose
services:
sandpolis-server:
image: sandpolis/server
restart: unless-stoppedalias sandpolis-client="docker run --rm sandpolis/client"The demo image runs a server, an agent and the GUI client together in one container:
docker run --rm -it \
-e XDG_RUNTIME_DIR=/run/user/1000 \
-e WAYLAND_DISPLAY="$WAYLAND_DISPLAY" \
-v "$XDG_RUNTIME_DIR/$WAYLAND_DISPLAY":/run/user/1000/"$WAYLAND_DISPLAY" \
--device /dev/dri \
-v sandpolis-demo:/data \
sandpolis/demoWithout a compositor handed in, the server and agent still come up and you get a shell aimed at them instead of the GUI:
[sandpolis demo] /data $ sandpolis agent list| Back | FazBrowse Home | New Git URL |