Skip to content

🔨 My personal forensics tools 🔧

Notifications You must be signed in to change notification settings

cookiengineer/forensics-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cookie Engineer's Forensics Tools

This is my mono repository containing my personal forensics tools that I need when I'm investigating an incident. They are something like a better bashrc, implemented in Go, without any kind of warranty to work at all.

The tools folder is separated by use-case. Each of the tools' root folder contains a README.md explaining the purpose of the forensics tools inside them. Make sure to read them carefully.

The toolchain folder contains one entry point:

  • The build.go which builds all binaries and a separate install-forensics-tools program.

Tools / Features

Building

The build.go script builds all tool binaries and a separate install-forensics-tools program that can be deployed to another machine and executed there to install all the contained binaries.

# Build all tools and the installer
cd /path/to/forensics-tools/toolchain;
go run build.go;

Alternatively, you can also simply use go install on any of the tools in an isolated capacity:

cd /path/to/forensics-tools;

cd /tools/npm;
go install ./cmds/npm-dl;

Installation

# Build the installer which contains all tool binaries
cd /path/to/forensics-tools/toolchain;
go run build.go;

# Install all binaries to /usr/local/bin
cd /path/to/forensics-tools/build;
export PREFIX="/usr/local"; sudo install-forensics-tools;

License

GPL3

About

🔨 My personal forensics tools 🔧

Resources

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published