sightingdb 0.5.8

A database designed for Sightings, a technique to count items
sightingdb-0.5.8 is not a library.

SightingDB is a database designed for Sightings, a technique to count items. This is helpful for Threat Intelligence as Sightings allow to enrich indicators or attributes with Observations, rather than Reputation.

Simply speaking, by pushing data to SightingDB, you will get the first time it was observed, the last time, its count.

However, it will also provide the following features:

  • Keep track of how many times something was searched
  • Keep track of the hourly statistics per item
  • Get the consensus for each item (how many namespaces contain the same value)
  • Expire data with a per-value TTL
  • Answer lookups over DNS, using the DNSBL conventions security tooling already speaks
  • Ingest from a MISP ZeroMQ feed, and import STIX 2.1 bundles
  • Browse namespaces and values in a browser, with a histogram of when each value was seen

SightingDB is designed to scale writing and reading. There is no global lock: namespaces are locked independently, and within a namespace each value has its own lock, so concurrent writes to different values never contend.

The database is held in memory and snapshotted to disk (see dbdir below). Set no dbdir to run purely in memory.

Getting started

$ cargo install sightingdb
$ sightingdb --setup

--setup asks a few questions, prints exactly what it intends to do, and only then does it: directories with sensible modes, a configuration, a self-signed certificate, an admin API key, and a systemd unit or launchd job. Without root it installs under ~/.sightingdb for the current user; with sudo on Linux it installs system-wide under /etc and /var/lib and creates a sightingdb service account.

Nothing existing is replaced without being asked, file by file, and API keys and certificates are never replaced at all — re-running setup on an installed system keeps them. The admin key is shown once, when it is first created.

Building

  1. Make sure you have Rust and Cargo installed. The toolchain is pinned in rust-toolchain.toml; rustup will fetch it automatically.
  2. Run make (or cargo build).

You will need OpenSSL development headers to build (libssl-dev on Debian/Ubuntu, openssl from Homebrew on macOS).

Running

To run from the source directory:

  1. Generate a certificate: ./target/debug/sightingdb -c etc/sightingdb.toml --install-selfsigned-keys
  2. Start the daemon: ./target/debug/sightingdb -c etc/sightingdb.toml

--install-selfsigned-keys writes a self-signed certificate and a 0600 key at the configured ssl_cert and ssl_key paths and exits. It never overwrites an existing file, so pointing those settings at a real certificate is safe. The generated certificate names localhost, 127.0.0.1 and ::1, lasts a year, and is for getting started — clients have to skip verification (curl -k).

Set ssl = false in [daemon] to serve plain HTTP instead.

Without -c, the configuration is looked up in /etc/sightingdb/sightingdb.toml and then ~/.sightingdb/sightingdb.toml.

Running as a service

The recommended way to run SightingDB in the background is under a service manager, which handles restarts, log capture and startup ordering for you. A hardened systemd unit is provided:

sudo install -m 0644 etc/sightingdb.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now sightingdb

Keep daemonize = false for that, and point log4rs at a console appender so the logs land in the journal (journalctl -u sightingdb).

Setting daemonize = true instead makes SightingDB detach on its own: it re-executes itself with stdin on /dev/null, stdout and stderr on the log_out and log_err files, and its own process group, then the launcher exits. A pid file is written to the first writable location out of /var/run/sightingdb.pid, ~/.sightingdb/sightingdb.pid or ./sightingdb.pid, and removed again on a clean shutdown.

Detaching by re-executing rather than by forking is deliberate. fork carries over only the calling thread, so a forked daemon silently loses anything already running in the background — including log4rs' own configuration reloader. The child here starts from a clean exec, so refresh_rate keeps working. Nothing changes directory either, so relative paths in the configuration keep resolving.

Send SIGTERM to stop: in-flight requests are drained, the database is written out, and the pid file is removed.

Options

-c, --config <FILE>          Configuration file (default: see above)
    --install-selfsigned-keys Write a self-signed cert and key, then exit
    --import-stix <PATH>     Import STIX 2.1 bundles, then exit
-l, --logging-config <FILE>  log4rs configuration file (default: etc/log4rs.yml)
-k, --apikey <APIKEY>        Set the default API key, replacing the built-in 'changeme'
-v, --verbose...             Increase verbosity

Client Demo

Writing

$ curl -k https://localhost:9999/w/my/namespace/?val=127.0.0.1
{"message":"ok","count":1}
$ curl -k https://localhost:9999/w/another/namespace/?val=127.0.0.1
{"message":"ok","count":1}
$ curl -k https://localhost:9999/w/another/namespace/?val=127.0.0.1
{"message":"ok","count":2}

Pass timestamp=<unix seconds> to record a sighting at a specific time; without it the sighting is recorded now.

Pass ttl=<seconds> to expire the value that long after it was last seen. Writing the value again pushes the deadline out; writing without ttl= leaves the existing one alone, and ttl=0 clears it. Expired values read as 404 immediately and are reclaimed by the next sweep, which also gives back the consensus they were holding.

Pass tags=<comma,separated> to record what is known about the value beyond the fact that it was seen:

$ curl -k 'https://localhost:9999/w/my/namespace/?val=127.0.0.1&tags=stix-type:ipv4-addr,tlp:amber'
{"message":"ok","count":1}

Tags are merged, so one feed contributing stix-type:ipv4-addr and another contributing tlp:amber leave the value knowing both. See Tags.

Reading

$ curl -k https://localhost:9999/r/my/namespace/?val=127.0.0.1
{"value":"127.0.0.1","first_seen":1566624658,"last_seen":1566624658,"count":1,"tags":"","ttl":0,"consensus":2}

$ curl -k https://localhost:9999/r/another/namespace/?val=127.0.0.1
{"value":"127.0.0.1","first_seen":1566624686,"last_seen":1566624689,"count":2,"tags":"","ttl":0,"consensus":2}

$ curl -k https://localhost:9999/rs/my/namespace/?val=127.0.0.1
{"value":"127.0.0.1","first_seen":1593719022,"last_seen":1593721509,"count":10,"tags":"","ttl":0,"consensus":1,"stats":{"1593716400":2,"1593720000":8}}

Omit val= to list every value in a namespace:

$ curl -k https://localhost:9999/r/my/namespace/
{"attributes":[{"value":"127.0.0.1","first_seen":1566624658,"last_seen":1566624658,"count":1,"tags":"","ttl":0,"consensus":2}]}

Reading is recorded as a "shadow sighting" under _shadow/<namespace>, so you can see how often a value was searched for. Add noshadow to the query string to suppress that.

Bulk

$ curl -k -X POST https://localhost:9999/wb -H 'Content-Type: application/json' \
    -d '{"items":[{"namespace":"my/namespace","value":"127.0.0.1"}]}'
{"message":"ok","written":1}

timestamp, ttl, tags and noshadow are optional on each item.

Authentication

$ curl -H 'Authorization: changeme' -k https://localhost:9999/w/my/namespace/?val=127.0.0.1
{"message":"ok","count":1}

Authentication is on unless authenticate=false is set in the configuration. Keys and their permissions are declared in the [acl] section; see below.

Where to put the key. Three ways, in the order you should prefer them:

acl_file, or [acl] best A file the daemon reads. Nothing else on the host sees it, permissions are the filesystem's, and it is the only one that can carry more than one key with different rights. What the Helm chart uses.
SIGHTINGDB_APIKEY acceptable Replaces the built-in default key, for a container or a first run. Visible to whatever can read /proc/<pid>/environ, and to kubectl describe pod if set inline rather than from a Secret.
-k <key> avoid The same thing on the command line, where ps shows it to every process on the host. The daemon warns when you use it.

The last two grant one key unrestricted access; scoped grants need the file.

REST Endpoints

/w: write (GET)
/wb: write in bulk mode (POST)
/r: read (GET)
/rs: read with statistics (GET)
/rb: read in bulk mode (POST)
/rbs: read with statistics in bulk mode (POST)
/d: delete (GET)
/stix: export a namespace as a STIX 2.1 bundle (GET)
/_api/stix: export one or more namespaces as STIX 2.1 (POST)
/_api/tier: set a namespace's tier and idle window (POST)
/c: configure (GET, not implemented)
/i: info (GET)
/health: liveness and readiness, no key required (GET)
/_api/openapi.yaml: this API as an OpenAPI 3 document (GET)

OpenAPI

doc/openapi.yaml describes the whole HTTP API — data, STIX, storage and management — as an OpenAPI 3.0.3 document. Import it into Postman (File → Import), Insomnia, Bruno or anything else that reads OpenAPI, and every endpoint arrives with its parameters, example bodies and responses.

A running instance also serves it, so you can always ask an instance to describe itself rather than trusting a file that may be older:

$ curl -k https://localhost:9999/_api/openapi.yaml -o sightingdb.yaml

That copy has the version rewritten to whatever the server actually is. Set the API key once in Postman as a collection-level API-key auth with the header name Authorization and the key as the value — no Bearer in front of it — and every request inherits it.

A test asserts that every route the server registers appears in the document, so an endpoint added without documentation fails the build rather than being discovered by whoever imported the collection.

Status codes

Every endpoint answers with JSON and a meaningful status code:

200 OK         the request succeeded
400 Bad Request malformed query string, JSON body, or a missing val=
401 Unauthorized no Authorization header was sent
403 Forbidden   unknown API key, or an attempt to reach the _config tree
404 Not Found   no such namespace, or no such value inside it
501 Not Implemented  /c

Configuration

Either listener can be turned off, so one instance can serve HTTP, DNS, or both. enabled = false under [daemon] runs DNS only; enabled = false under [dns] (or simply omitting the section) runs HTTP only. Disabling both is a startup error rather than a process that listens on nothing.

Beyond the listen address and TLS settings, [daemon] accepts:

enabled           Serve the HTTP API (default true).

dbdir             Directory for snapshots. Unset or blank runs in memory only.
snapshot_interval Seconds between snapshots (default 300). 0 saves only on shutdown.
sweep_interval    Seconds between eviction sweeps (default 60). 0 disables the sweeper.
stats_retention   Hourly statistics buckets kept per value (default 0 = unlimited).
shadow_ttl        Seconds a shadow sighting is kept (default 0 = forever).

The retention settings default to keeping everything, so upgrading an existing install never starts discarding data on its own. The configuration shipped in etc/sightingdb.toml sets 30-day windows for both, which is what bounds memory growth — without them, statistics accumulate one bucket per hour per value and _shadow/* grows for every distinct search, forever.

DNS lookups

SightingDB can answer over DNS as well as HTTP, following the DNSBL/RBL conventions, so anything that can already consult a blocklist — Postfix, rspamd, Suricata, a shell script with dig — can query it unmodified.

$ dig +short 4.3.2.1.malware.sdb.example.com
127.0.0.1

$ dig +short 9.9.9.9.malware.sdb.example.com
127.0.0.3

$ dig +short TXT 9.9.9.9.malware.sdb.example.com
"count=15 first_seen=1786774648 last_seen=1786774648 consensus=1 ttl=86400 tags=\"\""

The TXT record carries every field the HTTP API reports. tags is quoted because it is free-form, and a record too long for one DNS character-string is split across several, which clients join back together.

A value that was never seen answers NXDOMAIN, which is both the DNSBL idiom and what lets resolvers cache the negative. A value that was seen answers with a 127.0.0.x address whose last octet gives the order of magnitude: 1 is once, 2 is single digits, 3 is tens, and so on up to 9. A client that only checks "did I get an address at all" works unchanged.

Three ways of spelling a value in the query name are supported, chosen per namespace in the configuration:

ip      4.3.2.1.malware.sdb.example.com    ->  1.2.3.4
        (reversed octets, as RBLs do; IPv6 uses the ip6.arpa nibble form)
domain  evil.com.domains.sdb.example.com   ->  evil.com
base32  <base32 of the value>.hashes.sdb.example.com

TCP is supported, and a reply too large for a datagram comes back truncated so the client retries over it.

Before you enable it

DNS has no authentication. The [acl] section does not apply, so anything reachable over DNS is readable by anyone who can send a packet. Accordingly:

  • Only namespaces named under [dns.namespaces] answer at all; everything else in the database is NXDOMAIN, indistinguishable from a value that was never seen. Namespaces beginning with _ are refused at startup.
  • The listener binds to 127.0.0.1 unless you say otherwise.
  • Names outside the configured zone are REFUSED rather than answered, so this can never act as an open resolver.
  • rate_limit caps queries per second per source address, dropping rather than refusing once a source is over budget — an error reply is still an amplified packet. Responses are capped at 1232 bytes even if a client advertises more.
  • Shadow sightings are off by default, since over DNS they would be an unauthenticated write path.

Management interface

Point a browser at /_management/ and sign in with an API key holding the admin grant — changeme on a fresh install:

[acl]
changeme   = "rw, admin"
feeds-only = "admin, r:feeds"

A namespace is a path, so the interface browses one the way a file manager browses directories: feeds holds feeds/misp/ips, and a path can be a folder and a namespace at once — holding values of its own while other namespaces sit underneath it. Each level lists what is below it and the values stored at that path, paged and filterable since a namespace can hold a great many. /_management/feeds/ips/ is a direct link to that namespace, so views are bookmarkable. Ticking search everywhere looks through whole namespace names instead of walking a level at a time.

New namespace creates one before it holds anything, nesting as deep as you like: misp/ips under feeds creates the whole path. An empty namespace is a real namespace — it is snapshotted, it survives a restart, and sweeps do not reclaim it, since only namespaces a sweep empties are litter.

Add values records one value or a pasted list of them, optionally with tags, a TTL and the time they were seen. They are counted towards consensus exactly as a /w/ write would be; nothing added here is a second class of sighting. Writing to a namespace that does not exist creates it, as it does everywhere else.

Export STIX downloads the namespace being browsed as a STIX 2.1 bundle; see Exporting.

Clicking a value shows what the database knows about it: its tags, which can be edited there and are what the STIX export reads; a histogram of when it was seen, built from the hourly statistics already kept; and a force-directed graph of every namespace holding that value — the point of consensus made visible. Colour is the top-level namespace, shape says whether a node is the value, a folder or a namespace, and size is how often the value was seen there. Folders on the way down are drawn too, so namespaces sharing a path cluster together. Click a node to browse to it.

Finding those namespaces is arranged to be cheap: _all already knows how many namespaces hold the value, which gives the search something to stop at, namespaces already in memory are searched first, and evicted shards are read back only if that target has not been reached by then.

Access is two-layered. The admin grant is what reaches the interface at all; ordinary read grants then decide which namespaces are visible inside it, and write grants decide what may be created or added to. In the example above, feeds-only signs in but sees only feeds/* — everything else answers 404, the same as a namespace that does not exist, so browsing cannot be used to enumerate what is out of reach — and, having no write grant, it cannot create a namespace or add a value anywhere. The relationship graph obeys the same rule: it draws only namespaces the key may read, while the consensus figure beside it still counts every namespace, so a scoped key can tell it is not seeing all of them without being told their names.

An admin key is required even when authenticate = false. Turning authentication off is a decision about the sighting API; it should not hand the management interface to anyone who can reach the port.

The configuration view is read-only: settings are read from the file at startup, so changing them means editing the file and restarting. The interface reports what the server is actually doing rather than pretending to edit it.

Charts use Apache ECharts, vendored into the binary rather than loaded from a CDN so the interface works on a host with no internet access. See assets/README.md.

Importing

ZeroMQ

SightingDB can subscribe to a ZeroMQ publisher and record what it hears. The usual source is MISP, whose publisher sends <topic> <json> frames:

[zmq]
endpoint = "tcp://misp.example.com:50000"
topics = ["misp_json_attribute", "misp_json"]
format = "misp"
require_to_ids = true

[zmq.types]
ip-src = "misp/ips"
domain = "misp/domains"
md5 = "misp/hashes"

MISP's own tags come across as they are — tlp:amber means the same thing here — alongside misp-type:, misp-category: and misp-event:, and the MISP type is translated to a stix-type: where there is a one-to-one mapping, so the STIX export can build a pattern without knowing anything about MISP. See Tags.

Attributes are read from misp_json_attribute, and from whole events on misp_json including attributes nested inside objects. Only mapped types are ingested unless default_namespace is set, MISP's own timestamps are preserved, and require_to_ids=true limits ingest to attributes MISP flagged as actionable. A publisher that goes away is retried rather than being fatal.

format=native instead reads {"items":[{"namespace":..,"value":..}]}, for publishers that speak SightingDB directly. Note that in this mode the publisher chooses its own namespaces, so only subscribe to a source you trust — the _config tree is refused, but nothing else is.

This uses a native Rust ZeroMQ implementation, so the release binaries stay self-contained; it interoperates with libzmq publishers like MISP's.

STIX 2.1

$ sightingdb -c /etc/sightingdb/sightingdb.toml --import-stix bundles/

Reads one file or every .json in a directory, then exits. Three kinds of object are understood:

  • observed-datanumber_observed observations between first_observed and last_observed, following object_refs (and the deprecated embedded objects).
  • sighting — its count and first_seen/last_seen, resolving sighting_of_ref and observed_data_refs.
  • indicator — the literal values in its STIX pattern.

Counts and windows survive the import: an observed-data seen 12 times between two instants becomes a value with count=12 whose first_seen and last_seen bracket that window. A file object yields one sighting per hash. A bundle that fails to parse is reported and skipped so the rest of the import continues.

What the bundle says about a value is kept as tags: the observable type, the indicator's id and indicator_types, TLP markings (by reference to the well-known ids as well as by definition), confidence, the identity that published it and the identities in where_sighted_refs, the name, and valid_until. That is what lets the export put the value back on the wire as STIX without inventing the parts a bare value cannot hold.

Tags

A sighting on its own is <namespace, value, count, first_seen, last_seen>. That is enough to answer "how often, and when" and nothing else — it does not say what the value is, who saw it, or how it may be shared. Tags carry that, and are what makes the STIX export able to produce something a consumer can act on.

A tag set is a comma-separated list, each entry either a bare label or key:value:

stix-type:ipv4-addr, tlp:amber, confidence:80, identity:Beta Cyber Intelligence Company

Comma is the separator because the interesting values contain spaces, so a value can contain anything except a comma — colons included, which is what a URL or an RFC 3339 timestamp needs. A key may repeat; indicator-type below does. Whitespace around entries is trimmed.

Tags arrive three ways: the importers write what the source said (see Importing), tags= on a write adds to them, and the management interface edits them by hand. Writes merge, so two feeds each contribute what they know; only the management interface's tag box replaces a set, which is how a wrong tag comes off.

Vocabulary

These are the keys the STIX export understands. Anything else is kept and ignored, so your own conventions cost nothing.

Tag What it does
stix-type:<type> The observable type, and so the pattern: ipv4-addr, domain-name, url, email-addr, mutex, windows-registry-key, or file.<ALGORITHM> for a hash. Without it the type is taken from the [stix.types] mapping for the namespace, and failing that from the shape of the value.
stix-id:indicator--<uuid> Reuse this indicator id instead of minting one. Written by the STIX importer, so a value that arrived as STIX goes back out under the id its publisher gave it.
indicator-type:<value> Adds to indicator_types. Repeatable. The STIX vocabulary is malicious-activity, anomalous-activity, benign, compromised, attribution, unknown, ...
tlp:<white|green|amber|red> Marks the indicator and the sighting with the matching TLP marking definition, which is included in the bundle.
confidence:<0-100> STIX confidence on both objects. Out-of-range values are ignored.
identity:<name> Who saw it: becomes an identity object referenced from where_sighted_refs. Repeatable. Without one, the sighting is attributed to the publishing identity.
name:<text> Indicator name.
description:<text> Indicator description.
valid-until:<rfc3339 or unix seconds> Indicator valid_until. Otherwise a TTL supplies one, counted from the last sighting exactly as the database counts it.

The importers also write tags that the export does not read but a person might want: misp-type:, misp-category:, misp-event:, and MISP's own tags as they were published.

Tags are visible wherever a value is: in /r and /rs responses, in the DNS TXT answer, and in the management interface.

Exporting

STIX 2.1

$ curl -k -H 'Authorization: changeme' https://localhost:9999/stix/feeds/misp/ips

One namespace becomes a STIX 2.1 bundle shaped after the OASIS "Sighting of an Indicator" example: for each value an indicator carrying the pattern and a sighting pointing at it with the count and the observation window, plus the identity objects they refer to and any TLP markings used.

{
  "type": "bundle",
  "id": "bundle--...",
  "objects": [
    {"type": "identity", "id": "identity--...", "name": "SightingDB",
     "identity_class": "system", ...},
    {"type": "indicator", "id": "indicator--...",
     "pattern": "[ipv4-addr:value = '198.51.100.7']", "pattern_type": "stix",
     "indicator_types": ["malicious-activity"], "confidence": 80,
     "valid_from": "2020-09-13T12:26:40.000Z", ...},
    {"type": "sighting", "id": "sighting--...", "count": 12,
     "first_seen": "2020-09-13T12:26:40.000Z",
     "last_seen": "2020-09-14T09:03:11.000Z",
     "sighting_of_ref": "indicator--...",
     "where_sighted_refs": ["identity--..."],
     "x_sightingdb_namespace": "feeds/misp/ips", ...}
  ]
}

The export is a read, so it answers to the same key and the same permissions as /r. The management interface's Export STIX button downloads the bundle for the namespace being browsed, by calling the same automation endpoint below — so what the button gives you and what a script gets cannot drift apart.

For automation

$ curl -k -X POST https://localhost:9999/_api/stix \
    -H 'Authorization: changeme' -H 'Content-Type: application/json' \
    -d '{"namespaces": ["feeds/misp/ips", "feeds/otx/ips"], "q": "10.0.", "limit": 5000}'

POST /_api/stix is the same export for a script: a namespace is a path, so POST saves encoding it into a URL, and several can be gathered into one bundle.

Field
namespaces The namespaces to export.
namespace Shorthand for one, so a one-liner stays a one-liner.
q Substring filter over values, as when browsing.
limit Values read per namespace: 10,000 by default, 100,000 at most.

Every namespace is authorized on its own, exactly as a bulk read is: naming one the key may not read refuses the whole request with 403 rather than quietly returning the half it is allowed. _config is refused outright. As everywhere else on the data API, authenticate = false means there is no ACL to consult — the switch that opens /r opens this too.

Because ids are deterministic, gathering namespaces is worth doing: a value in two of them has one indicator between them and a sighting each.

X-SightingDB-Exported: 3
X-SightingDB-Skipped: 0
X-SightingDB-Truncated: false
X-SightingDB-Missing: feeds/nope

A namespace that does not exist is named in X-SightingDB-Missing and the rest still come back; if none of them exist the answer is 404.

Ids are deterministic. Every id is a UUIDv5 derived from a SightingDB namespace UUID and the thing it names, which has two consequences worth relying on: exporting the same data twice produces the same bundle byte for byte, and the same value in two namespaces produces one indicator with a sighting each — so a consumer merging both bundles sees one indicator sighted twice rather than two indicators. A stix-id: tag overrides the minted id.

Who the bundle is published as comes from the configuration:

[stix]
identity = "Alpha Threat Analysis Org."
identity_class = "organization"

The default is SightingDB with class system — a database reporting what it saw. That identity is the created_by_ref of everything in the bundle, and the where_sighted_refs of any sighting whose value carries no identity: tag.

A value with no observable type is skipped, because a STIX indicator is a pattern and there is no pattern without a type. The response says how many that was, rather than leaving it to be noticed:

X-SightingDB-Exported: 412
X-SightingDB-Skipped: 3
X-SightingDB-Truncated: false

Tag those values with stix-type:, or map the namespace in [stix.types] so the whole namespace has a type. limit= caps how many values one export reads (10,000 by default, 100,000 at most); X-SightingDB-Truncated says when the namespace held more.

Round trip

Importing a bundle and exporting it again preserves what both formats can hold: the importer writes the observable type, the indicator id, its indicator_types, markings, confidence, the identities and the validity window as tags, and the exporter reads them back. See Tags.

Counts survive too. A bundle that pairs an indicator with a sighting of it — which is what this export produces — is read as one observation of the sighting's count, not as the sighting plus the indicator again. An indicator nothing points at is still an observation of its own.

Access control

API keys and what each may reach are declared in an [acl] section:

[acl]
admin     = "rw, admin"
analyst   = "r"
feed-misp = "rw:feeds/misp"
mixed     = "r, w:staging"

Each entry is <apikey> = <grant>[, <grant>...]. A grant is r, w or rw, optionally scoped with :<namespace prefix>; without a prefix it covers every namespace. A key's grants are unioned, and anything not granted is denied.

Prefixes match whole path segments, so rw:feeds/misp covers feeds/misp and feeds/misp/ips but not feeds/misp-internal or feeds.

A refusal is always 403 with the same body whether the key is unknown or merely out of scope, so that probing cannot tell valid keys from invalid ones.

-k <key> still overrides everything with a single full-access key, replacing the built-in changeme.

Keys are stored in the configuration in the clear. Keep that file readable only by the user the daemon runs as, and serve over TLS.

Upgrading

Older versions kept API keys in the database and gave every key full access to everything. If the configuration has no [acl] section, keys restored from a snapshot keep exactly that access, so upgrading does not lock out a running deployment — the daemon logs a warning telling you to scope them. Adding an [acl] section makes it authoritative, and the keys in the snapshot are then ignored.

Persistence

The database is written to <dbdir>/sightingdb.json every snapshot_interval seconds and once more on a clean shutdown. Snapshots are written to a temporary file and renamed into place, so a crash mid-write leaves the previous snapshot intact rather than a truncated one; at most snapshot_interval seconds of writes are at risk.

A snapshot that exists but cannot be parsed is a fatal startup error rather than a silent fresh start, since starting empty would look like total data loss and the next save would make it real.

API keys are not in the snapshot: they come from the configuration, so permissions are reviewable and can live in version control.

Keeping it in memory, or not

Storage is one file per top-level namespace — a shard — so feeds/misp/ips and feeds/otx/domains live in feeds, and a shard is paged in and out as a unit. Which is why the settings below belong to the shard and cover everything under it: there is no finer setting because there is no finer eviction.

[storage]
default_tier = "hot"
warm_idle = 3600
tiers_file = "tiers.toml"

[storage.tiers]
archive = "cold"
feeds = { tier = "warm", warm_idle = 86400 }
staging = { warm_idle = 300 }
Tier
hot Never evicted.
warm Written out and dropped once untouched for warm_idle seconds.
cold Dropped at the next sweep once idle.

warm_idle is how long "untouched" means, and an entry may set it for one shard rather than taking the global one — a feed worth keeping for a day and a staging tree worth keeping for five minutes are both warm, on different windows. An entry may also set the window alone, leaving the tier to default_tier.

Evicted data is not gone: the shard is read back when it is next used, so cold costs one load per burst of activity rather than one per operation.

Changing it while it runs. Both halves are editable from the management interface — a tier control and, for a warm shard, the number of seconds beside it — and over HTTP for automation:

$ curl -k -X POST https://localhost:9999/_api/tier \
    -H 'Authorization: changeme' -H 'Content-Type: application/json' \
    -d '{"namespace": "feeds/misp/ips", "tier": "warm", "warm_idle": 86400}'
{"shard":"feeds","tier":"warm","warm_idle":86400,"own_tier":true,"own_warm_idle":true,
 "effect":"'feeds' and everything under it is dropped after 86400s untouched"}

Name any namespace and the setting lands on its shard, which the reply says out loud: a change made from a row deep in a tree is a change to everything beside it. Either field takes "default" to stop overriding and go back to [storage], and a change is written to tiers_file so it survives a restart. It needs write access to the namespace, and a configured tiers_file — without one the tiers are whatever the configuration says and cannot be changed here.

Containers and Kubernetes

$ make            # what every target does
$ make deploy     # into the cluster kubectl already points at
$ make dev        # into a kind cluster this creates for the purpose

Both build a container image from the source in your working tree, install the Helm chart, wait for the pod and then write a sighting through it to prove it works. The difference is the cluster:

  • make deploy uses whatever kubectl config current-context names — Docker Desktop, Rancher Desktop, minikube, k3d, or a kind cluster you made yourself. It hands the image over the way that cluster expects: kind load, k3d image import, minikube image load, or — for current Docker Desktop, whose node is a container of its own rather than a user of this machine's image store — docker save piped into the node's containerd. make load does only that step.
  • make dev creates a kind cluster named sightingdb first, and make teardown deletes it and everything in it.

Then make port-forward and make admin-key get you into the management interface, and make uninstall removes the release.

These targets refuse to touch a cluster that is not local. They install, delete and write data, so they check the context against a list of local ones (docker-desktop, rancher-desktop, minikube, colima, kind-*, k3d-*, k3s-*) and stop if it is anything else — a kubectl config use-context away from production should not be one keystroke away from make deploy. The context is resolved once and passed explicitly to every helm and kubectl call, so nothing can be redirected midway. ALLOW_ANY_CONTEXT=1 overrides it deliberately, and CONTEXT=<name> picks one without switching your current context.

A cluster that is not local — one that has to pull the image — needs it in a registry it can reach:

$ make image-push IMAGE=registry.example.com/sightingdb TAG=0.5.6
$ helm upgrade --install sightingdb ./helm/sightingdb \
    --set image.repository=registry.example.com/sightingdb --set image.tag=0.5.6

Docker

$ docker build -f docker/Dockerfile -t sightingdb:dev .
$ docker run --rm -p 9999:9999 -v sightingdb:/var/lib/sightingdb \
    -e SIGHTINGDB_APIKEY=$(openssl rand -hex 20) sightingdb:dev

SIGHTINGDB_APIKEY replaces the built-in default key. The daemon reads the variable itself rather than the entrypoint turning it into -k, so the key does not appear in ps. For more than one key, or for keys with scoped grants, mount an acl_file — see Authentication.

The image builds this working tree — not a clone of the repository — in a builder stage and ships the binary on debian-slim. Mount a volume at /var/lib/sightingdb: without one the database lives only as long as the container. TLS is off in the baked-in configuration, because a certificate built into an image is the same certificate for everyone who pulls it; terminate TLS in front of it, or mount a key and certificate and set ssl, ssl_cert and ssl_key.

It never runs as root. The image creates a sightingdb user and group at uid/gid 10001 and starts the daemon as that user, the same way the systemd unit does with User=sightingdb. SightingDB has no privilege-dropping code and needs none: nothing it opens requires root, so there is no window where it is root and nothing to get wrong in the dropping. The one exception is a port below 1024 — the DNS listener on 53 — and that is a capability rather than a reason to start as root:

$ docker run --cap-add NET_BIND_SERVICE ...        # or publish 53:5353

Two consequences worth knowing. A bind mount from the host arrives owned by whoever owns it on the host, so it has to be writable by uid 10001 (chown 10001:10001 ./data) — a named volume inherits the image's ownership and needs nothing. And because the data directory is owned by group 0 and is group-writable, the image also works where the uid is assigned rather than chosen, as on OpenShift.

Helm

The chart is in helm/sightingdb, with its own README. Every option in etc/sightingdb.toml has a value, and the configuration file is rendered from them:

helm install sightingdb ./helm/sightingdb \
  --namespace sightingdb --create-namespace \
  --set image.repository=ghcr.io/you/sightingdb --set image.tag=0.5.5

Worth knowing before you deploy it:

  • One pod. SightingDB holds its data in memory and snapshots it to one directory, so a second replica would be a second, unrelated database — the chart is a StatefulSet of one and has no replicaCount. Scale by giving the pod more memory.

  • The admin key lives in a Secret. acl.keys renders an acl.toml into <release>-acl, alongside an admin-key entry holding the first key with the admin grant — make admin-key, or:

      kubectl -n sightingdb get secret sightingdb-acl -o jsonpath='{.data.admin-key}' | base64 -d
    

    Leave acl.keys empty and one is generated on install and kept across upgrades, so no known key is ever shipped.

  • Keys are seeded, not managed. An init container copies that acl.toml onto the data volume, because the management interface rewrites the file and a mounted Secret is read-only. Keys created in the interface therefore live on the volume and survive upgrades; they are not written back into the Secret.

  • Namespaces can be created up front. bootstrap.namespaces creates them through the management API after install and upgrade, so a deployment starts with the structure its writers and ACL prefixes assume rather than with nothing until the first write.

  • /health is the probe. It needs no API key whatever authenticate is set to, and reports the version, uptime and how many shards are in memory. There is no separate readiness path: the snapshot is restored before the listener is bound, so an answer at all means the database is up.

Tests

cargo test

tests/ also holds Python scripts that exercise a running server; they require the SightingDB Python client library.