Your shell history: synced, queryable, and in context
Go to file
David Dworken 924da95533
Merge pull request #1 from ddworken/dependabot/go_modules/github.com/sigstore/cosign-1.10.1
Bump github.com/sigstore/cosign from 1.7.2 to 1.10.1
2022-09-01 23:54:23 -07:00
.github Use a version rather than a commit hash 2022-09-01 23:34:23 -07:00
backend Update landing pages 2022-06-04 23:29:13 -07:00
client Better timestamp stripping 2022-09-01 23:22:53 -07:00
scripts Fix URL now that we only have one tag per release 2022-05-28 10:18:51 -07:00
shared Add basic support for stripping out HISTTIMEFORMAT prefixes 2022-06-12 21:28:19 -07:00
.dockerignore Website landing page, install instructions, update command, status command, set up postgres, and fixing broken tests 2022-03-29 21:56:28 -07:00
.errcheck_excludes.txt pre-commit + stricter formatting + pre-commit fixes 2022-04-07 21:40:22 -07:00
.gitignore moved client/client.go to hishtory.go to support slsa l3 border 2022-04-08 21:17:11 -07:00
.pre-commit-config.yaml Manually vendor the slsa_verifier lib so we can make tweaks to it 2022-06-04 21:21:49 -07:00
.slsa-goreleaser-darwin-amd64.yml Fix template variables 2022-05-27 23:35:51 -07:00
.slsa-goreleaser-darwin-arm64.yml Fix template variables 2022-05-27 23:35:51 -07:00
.slsa-goreleaser-linux-amd64.yml Fix template variables 2022-05-27 23:35:51 -07:00
go.mod Bump github.com/sigstore/cosign from 1.7.2 to 1.10.1 2022-08-10 18:51:08 +00:00
go.sum Bump github.com/sigstore/cosign from 1.7.2 to 1.10.1 2022-08-10 18:51:08 +00:00
hishtory.go Add help command 2022-06-05 18:26:02 -07:00
Makefile Update make release command for new release system 2022-06-04 20:35:01 -07:00
README.md Update landing pages 2022-06-04 23:29:13 -07:00
VERSION Release v0.111 2022-09-01 23:34:30 -07:00

hishtory: Better Shell Hishtory

hishtory is a better shell history. It stores your shell history in context (what directory you ran the command it, whether it succeeded or failed, how long it took, etc). This is all stored in a local SQLite DB and e2e encrypted while synced to local SQLite DBs running on all your other computers. All of this is easily queryable via the hishtory CLI. This means from your laptop, you can easily find that complex bash pipeline you wrote on your server, and see the context in which you ran it.

hishtory is written in Go and uses AES-GCM for end-to-end encrypting your hishtory entries while syncing them. The binary is reproducibly built and SLSA Level 3 to make it easy to verify you're getting the code contained in this repository.

Getting Started

To install hishtory on your first machine:

curl https://hishtory.dev/install.py | python3 -

At this point, hishtory is already persisting your shell history. Give it a try with hishtory query and see below for more details on the advanced query features.

Then to install hishtory on your other computers, you need your secret key. Get this by running hishtory status. Once you have it, you follow similar steps to install hishtory on your other computers:

curl https://hishtory.dev/install.py | python3 -
hishtory init $YOUR_HISHTORY_SECRET

Now if you run hishtory query on first computer, you can automatically see the commands you've run on all your other computers!

Features

Querying

hishtory query is the main interface for searching through your shell history. See some below annotated queries:

Command Explanation
hishtory query psql Find all commands containing psql
hishtory query psql db.example.com Find all commands containing psql and db.example.com
hishtory query docker hostname:my-server Find all commands containing docker that were run on the computer with hostname my-server
hishtory query nano user:root Find all commands containing nano that were run as root
hishtory query exit_code:127 Find all commands that exited with code 127
hishtory query service before:2022-02-01 Find all commands containing service run before February 1st 2022
hishtory query service after:2022-02-01 Find all commands containing service run after February 1st 2022

For true power users, you can query via SQL via sqlite3 ~/.hishtory/.hishtory.db.

In addition, hishtory export dumps all commands to stdout separated by a single line. This can be useful for certain advanced use cases.

Enable/Disable

If you want to temporarily turn on/off hishtory recording, you can do so via hishtory disable (to turn off recording) and hishtory enable (to turn on recording). You can check whether or not hishtory is enabled via hishtory status.

Updating

To update hishtory to the latest version, just run hishtory update to transparently download and apply the latest update.

Multi-Shell Support

hishtory supports zsh and bash. If you'd like support for another shell (e.g. fish), please open an issue!

Design

The hishtory CLI is written in Go. It hooks into the shell in order to track information about all commands that are run (specifically in bash this is done via trap DEBUG and overriding $PROMPT_COMMAND). It takes this data and saves it in a local SQLite DB managed via GORM. When the user runs hishtory query, a SQL query is run to find matching entries in the local SQLite DB.

Syncing Design

When hishtory is installed, it generates a random secret key. Computers that share a history share this secret key (which is manually copied by the user). It deterministically generates three additional secrets from the secret key:

  1. UserId = HMAC(SecretKey, "user_id")
  2. DeviceId = HMAC(SecretKey, "device_id")
  3. EncryptionKey = HMAC(SecretKey, "encryption_key")

At installation time, hishtory registers itself with the backend which stores the tuple (UserId, DeviceId) which represents a one-to-many relationship between user and devices. In addition, it creates a DumpRequest specific that a new device was created and it needs a copy of the existing bash history.

When a command is run:

  1. hishtory encrypts (via AES-GCM with EncryptionKey) the command (and all the metadata) and sends it to the backend along with the UserId to persist it for. The backend retrieves a list of all associated DeviceIds and stores a copy of the encrypted blob for each device associated with that user. Once a given device has read an encrypted blob, that entry can be deleted in order to save space (in essence this is a per-device queue, but implemented on top of postgres because this is small scale and I already am running a postgres instance).
  2. hishtory checks for any pending DumpRequests, and if there are any sends a complete (encrypted) copy of the local SQLite DB to be shared with the requesting device.

When the user runs hishtory query, it retrieves all unread blobs from the backend, decrypts them, and adds them to the local SQLite DB.

Security

Hishtory is designed to ensure that the backend cannot read your shell history. This is achieved by:

  1. Encrypting history entries with a secret key that the backend never sees
  2. Using SLSA to support secure updates that guarantee that you're running the code contained in this repo

If you find any security issues in hishtory, please reach out to david@daviddworken.com.