https://github.com/purwandi/jamesbond
Sample go application using obfuscate
https://github.com/purwandi/jamesbond
go obfuscate
Last synced: over 1 year ago
JSON representation
Sample go application using obfuscate
- Host: GitHub
- URL: https://github.com/purwandi/jamesbond
- Owner: purwandi
- License: mit
- Created: 2024-01-18T13:15:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-18T13:26:14.000Z (over 2 years ago)
- Last Synced: 2025-02-04T19:17:05.618Z (over 1 year ago)
- Topics: go, obfuscate
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# James Bond
Sample application wrapper go using obfuscate binary.
## Purpose
When you need to run application that must consume super secret but don't want use
secret provider like vault.
- The `cmeder` folder consist simple go exec command logic that consist the secret, when
build pipeline run we obfuscate this program.
- The `rest` folder consist app that you want run and consume secret from `cmder`
## Dependencies
We are using garble to obfuscate wrapper binary
```
go install mvdan.cc/garble@latest
```
## Build
To build this sample apps, just using make command
```
make builder
```
## Run
Just run command below:
```
make run
```