This project contains a cli tool for encrypting/decrypting and bruteforcing files.
-b string
File to bruteforce
-c string
Characters for bruteforcing
-d string
File to decrypt
-e string
File to encrypt
-l int
Max password length for brute force
-o string
File to save decrypted content into
-p string
Password to encrypt/decrypt file\
To compile: run go build main.go
(You can specify the "-o output_filename" flag to name the executable differently or simply rename it using mv
)
Install the go way: go install main.go
to install compile and install the binary to your GOBIN directory (usually this is $HOME/go/bin)
Install the bash way: install <executable_name> /usr/local/bin
(make sure /usr/local/bin is in your $PATH or simply change it to a directory that is in your path)