Skip to content

MrMan1994/gocrypter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FileCryptoGolang

This project contains a cli tool for encrypting/decrypting and bruteforcing files.

Usage:

-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\

Compile and Install:

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)