├── .gitignore ├── .vscode └── launch.json ├── Makefile ├── README.md ├── assets └── logo.png ├── cmd └── sshman │ └── main.go ├── config └── sshman.json ├── go.mod ├── go.sum ├── internal ├── cli │ └── cli.go ├── database │ ├── database.go │ ├── repository.go │ └── setup.go └── profiles │ ├── decryptProfile.go │ ├── profileHelpers.go │ ├── profileService.go │ └── uiHelpers.go └── pkg ├── config └── config.go ├── helpers └── helpers.go └── ssh ├── shell.go └── ssh.go /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | *.csv 3 | dist/ 4 | -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/assets/logo.png -------------------------------------------------------------------------------- /cmd/sshman/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/cmd/sshman/main.go -------------------------------------------------------------------------------- /config/sshman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/config/sshman.json -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/cli/cli.go -------------------------------------------------------------------------------- /internal/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/database/database.go -------------------------------------------------------------------------------- /internal/database/repository.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/database/repository.go -------------------------------------------------------------------------------- /internal/database/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/database/setup.go -------------------------------------------------------------------------------- /internal/profiles/decryptProfile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/profiles/decryptProfile.go -------------------------------------------------------------------------------- /internal/profiles/profileHelpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/profiles/profileHelpers.go -------------------------------------------------------------------------------- /internal/profiles/profileService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/profiles/profileService.go -------------------------------------------------------------------------------- /internal/profiles/uiHelpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/internal/profiles/uiHelpers.go -------------------------------------------------------------------------------- /pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/pkg/config/config.go -------------------------------------------------------------------------------- /pkg/helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/pkg/helpers/helpers.go -------------------------------------------------------------------------------- /pkg/ssh/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/pkg/ssh/shell.go -------------------------------------------------------------------------------- /pkg/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeunge/sshman/HEAD/pkg/ssh/ssh.go --------------------------------------------------------------------------------