Last active
May 19, 2022 22:17
-
-
Save dzampino/0da8528ede5e4db1a035fd44c55130dd to your computer and use it in GitHub Desktop.
Install SIFT workstation on REMnux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # curl -sSL https://gist.github.com/dzampino/0da8528ede5e4db1a035fd44c55130dd/raw/20e761650a7bed4a78978c5f3fe7e3ba8311b45c/sift-install.sh | bash | |
| # https://www.sans.org/blog/how-to-install-sift-workstation-and-remnux-on-the-same-forensics-system/ | |
| # https://github.com/teamdfir/sift-cli | |
| mkdir sift | |
| cd sift | |
| wget https://github.com/teamdfir/sift-cli/releases/download/v1.14.0-rc1/sift-cli-linux | |
| wget https://github.com/teamdfir/sift-cli/releases/download/v1.14.0-rc1/sift-cli-linux.sig | |
| wget https://github.com/teamdfir/sift-cli/releases/download/v1.14.0-rc1/sift-cli.pub | |
| wget https://github.com/sigstore/cosign/releases/download/v1.8.0/cosign_1.8.0_amd64.deb | |
| wget https://github.com/sigstore/cosign/releases/download/v1.8.0/cosign_1.8.0_amd64.deb-keyless.pem | |
| wget https://github.com/sigstore/cosign/releases/download/v1.8.0/cosign_1.8.0_amd64.deb-keyless.sig | |
| sudo dpkg -i cosign_1.8.0_arm64.deb | |
| cosign verify-blob --key sift-cli.pub --signature sift-cli-linux.sig sift-cli-linux | |
| sudo mv sift-cli-linux /usr/local/bin/sift | |
| chmod 755 /usr/local/bin/sift | |
| cd ../ | |
| rm -rf sift/ | |
| sudo sift install --mode=packages-only |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment