csg
csg ("Credential Storage with Go") - a tool to organize the storage of credentials found during a CTF or Pentest.
Check out my blog on csg
for more information.
Setup
Installation (Linux)
- With Go Installed
go install github.com/bin3xish477/csg@latest
- From Release Page
wget https://github.com/bin3xish477/csg/releases/download/v1.0/csg-linux-amd64.tar.gz
tar zxvf csg-linux-amd64.tar.gz
sudo install csg /usr/local/bin/
- From Source (requred Go to be installed)
git clone https://github.com/bin3xish477/csg.git
cd csg
go install
Bash Auto-Completion
Linux
csg completion bash > /etc/bash_completion.d/csg && source ~/.bashrc
MacOS
csg completion bash > /usr/local/etc/bash_completion.d/csg && source ~/.bashrc
Usage Examples
csg add -i 10.10.10.1 -a wordpress -u admin -p 'SuperSecurePassword'
csg get -u admin
csg update --id 1 -u john -a mailcube
csg delete -i 1
csg purge -t 10.10.10.1
csg export -f all-creds.csv