Skip to content

Instantly share code, notes, and snippets.

@jermdw
Created January 25, 2018 03:41
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jermdw/4dd16bceef8d032acda81907511e9099 to your computer and use it in GitHub Desktop.
Save jermdw/4dd16bceef8d032acda81907511e9099 to your computer and use it in GitHub Desktop.
Install SIFT Workstation Tools
#!/usr/bin/env bash
# Install SIFT Workstation Tools - tested to work on Ubuntu 16.04
# j3rmbadger
# Snag the binaries - https://github.com/sans-dfir/sift-cli
wget https://github.com/sans-dfir/sift-cli/releases/download/v1.5.1/sift-cli-linux
wget https://github.com/sans-dfir/sift-cli/releases/download/v1.5.1/sift-cli-linux.sha256.asc1
# Validate signature file
gpg --keyserver pgp.mit.edu --recv-keys 22598A94
gpg --verify sift-cli-linux.sha256.asc
sudo mv sift-cli-linux /usr/local/bin/sift
sudo chmod 755 /usr/local/bin/sift
# Install SIFT
sift install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment