This is a security-hardened fork of github.com/burrowers/garble with significant enhancements to obfuscation and anti-analysis capabilities. See docs/SECURITY.md for a comprehensive overview of the security architecture and threat model.
Install from this repository:
go install github.com/AeonDave/garble@latestOr clone and build locally:
git clone https://github.com/AeonDave/garble
cd garble
go install ./...Note: This fork uses github.com/AeonDave/garble as its module path.
Obfuscate Go code by wrapping the Go toolchain. Requires Go 1.25 or later.
garble build [build flags] [packages]
The tool also supports garble test to run tests with obfuscated code,
garble run to obfuscate and execute simple programs,
and garble reverse to de-obfuscate text such as stack traces.
Run garble -h to see all available commands and flags.
- Install:
go install github.com/AeonDave/garble@latest - Obfuscate your binary:
garble build ./cmd/myapp - Make builds reproducible: provide both a seed and a build nonce
- Example:
garble -seed=Z3JhZmY build ./cmd/myapp - Set
GARBLE_BUILD_NONCEto a fixed base64 value for identical outputs across runs
- Example:
See docs/FEATURE_TOGGLES.md for a complete flag and environment reference.
# Simple obfuscation with random seed
garble -seed=random build ./cmd/myappWhat this does:
- Obfuscates all package names, function names, and type names
- Generates a random seed (printed to stderr for reproducibility)
- Automatically applies
-trimpath,-ldflags="-w -s", and build ID stripping
# Maximum security with literal encryption and control-flow obfuscation
garble -seed=random -literals -controlflow=auto build ./cmd/myappWhat this adds:
- ✅ Literal encryption: All string/numeric literals encrypted with ASCON-128
- ✅ Control-flow obfuscation: Jump tables and dead code injection (safe mode)
- ✅
-ldflags=-Xprotection: Injected variables (API keys, versions) are encrypted
Use when:
- Protecting API keys, credentials, or sensitive strings
- Preventing static analysis and decompilation
- Distributing commercial/proprietary software
# Smallest possible binary (15% smaller)
garble -seed=random -tiny build ./cmd/myappTrade-offs:
- ✅ Strips all panic handlers, runtime positions, and extra metadata
⚠️ Stack traces become useless (no file/line info)- ❌
garble reversecannot recover original names
Use when:
- Binary size is critical (embedded systems, mobile apps)
- Runtime debugging is not needed
- Distribution channels have size limits
# Keep ability to de-obfuscate stack traces
garble -seed=myDevSeed -reversible build ./cmd/myapp
# Later, de-obfuscate a crash dump:
garble -seed=myDevSeed reverse ./cmd/myapp < crash.logWhat -reversible does:
- Embeds original names in a reflection map
- Enables
garble reverseto restore stack traces ⚠️ Weakens security (original names are in the binary)
Use when:
- Testing obfuscated builds in staging
- Need readable panic output during development
- Never use in production (defeats obfuscation purpose)
# Fixed seed + nonce for identical binaries
GARBLE_BUILD_NONCE=a1b2c3d4e5f6g7h8 garble \
-seed=myFixedSeed123 \
-literals \
-controlflow=auto \
build ./cmd/myappWhy this matters:
- Same source + same seed/nonce = byte-identical binary
- Enables binary verification and supply chain security
- Required for deterministic builds in CI pipelines
Use when:
- Auditing builds (checksums must match)
- Distributing signed binaries
- Compliance requirements for reproducible builds
# Only obfuscate internal packages, leave public API readable
GOGARBLE='./internal/...' garble -seed=random -literals build ./cmd/myappUse when:
- Building libraries with public APIs
- Debugging customer-reported issues (public symbols help)
- Protecting core logic while keeping interfaces clean
You do not need to specify these flags manually:
| What | How Garble Handles It |
|---|---|
| Path stripping | Automatically adds -trimpath (extended with temp dir handling) |
| Debug info | Forces -ldflags="-w" at link time (strips DWARF) |
| Symbol table | Forces -ldflags="-s" at link time (strips symbols) |
| Build ID | Automatically removes with -buildid="" |
| Go version | Replaces runtime.Version() with "unknown" |
| VCS metadata | Adds -buildvcs=false (no git commit info) |
See docs/FEATURE_TOGGLES.md for implementation details.
Produce a binary that works as well as a regular build, but that has as little information about the original source code as possible.
The tool is designed to be:
- Coupled with
cmd/go, to support modules and build caching - Deterministic and reproducible, given the same initial source code
- Reversible given the original source, to de-obfuscate panic stack traces
The tool wraps calls to the Go compiler and linker to transform the Go build, in order to:
- Replace as many useful identifiers as possible with short base64 hashes
- Replace package paths with short base64 hashes
- Replace filenames and position information with short base64 hashes
- Remove all build and module information
- Strip debugging information and symbol tables (automatically via
-ldflags="-w -s") - Obfuscate literals, if the
-literalsflag is given - Remove extra information, if the
-tinyflag is given - Apply control-flow obfuscation, if
-controlflowis enabled
By default, the tool obfuscates all the packages being built.
You can manually specify which packages to obfuscate via GOGARBLE,
a comma-separated list of glob patterns matching package path prefixes.
This format is borrowed from GOPRIVATE; see go help private.
Note that commands like garble build will use the go version found in your
$PATH. To use different versions of Go, you can
install them
and set up $PATH with them. For example, for Go 1.17.1:
$ go install golang.org/dl/go1.17.1@latest
$ go1.17.1 download
$ PATH=$(go1.17.1 env GOROOT)/bin:${PATH} garble buildA common question is why a code obfuscator is needed for Go, a compiled language. Go binaries include a surprising amount of information about the original source; even with debug information and symbol tables stripped, many names and positions remain in place for the sake of traces, reflection, and debugging.
Some use cases for Go require sharing a Go binary with the end user. If the source code for the binary is private or requires a purchase, its obfuscation can help discourage reverse engineering.
A similar use case is a Go library whose source is private or purchased. Since Go libraries cannot be imported in binary form, and Go plugins have their shortcomings, sharing obfuscated source code becomes an option. See #369.
Obfuscation can also help with aspects entirely unrelated to licensing.
For example, the -tiny flag can make binaries 15% smaller,
similar to the common practice in Android to reduce app sizes.
Obfuscation has also helped some open source developers work around
anti-virus scans incorrectly treating Go binaries as malware.
-literals– Encrypts string and numeric literals using ASCON-128 or multi-layer obfuscation. Essential when protecting API keys, credentials, or sensitive strings.-controlflow(off,directives,auto,all) – Adds control-flow obfuscation with jump tables and dead code. Useautofor safe automatic detection.-tiny– Strips file/line metadata, panic handlers, and runtime positions for 15% smaller binaries. Trade-off: stack traces become useless.-reversible– Embeds original names to enablegarble reversefor de-obfuscating stack traces.⚠️ Weakens security—only use in development.-seed– Provides entropy for name hashing and encryption. Use-seed=randomfor per-build uniqueness, or a fixed value for reproducibility.GARBLE_BUILD_NONCE– Deterministic 32-byte nonce (base64). Required for reproducible builds with fixed seeds.GOGARBLE– Limits obfuscation to specific packages (glob patterns). Example:GOGARBLE='./internal/...'to protect only internal code.-no-cache-encrypt– Disables ASCON-128 cache encryption. By default Garble encrypts cache entries and, when no seed is supplied, derives a per-build key from the build nonce.
Important: Garble automatically applies -trimpath, -ldflags="-w -s", and build ID stripping, so you don't need to specify these manually.
The full matrix of switches, defaults, and automatic flags is documented in docs/FEATURE_TOGGLES.md.
Using the -literals flag causes literal expressions such as strings to be
replaced with more complex expressions that resolve to the same value at run time.
This feature is opt-in, as it can cause slow-downs depending on the input code and size of literals.
Garble uses multiple obfuscation strategies for defense-in-depth:
- ASCON-128 authenticated encryption with inline decryption code (used frequently)
- Reversible simple obfuscator for small and performance-sensitive cases
- Compile-time constant rewriting: eligible string constants are downgraded to package-scoped vars so they can flow through the same literal obfuscators
Notes and limits
- String constants that must remain compile-time values (array lengths,
iotamath,caselabels, etc.) are preserved to keep the program valid and may stay in plaintext. - Strings injected via
-ldflags=-Xare fully protected: the flag is sanitized at parse time, and the value is rehydrated as an obfuscated init-time assignment (ASCON-128 or multi-layer simple obfuscation).
Dive into the full design (HKDF key derivation, obfuscator selection, and external key mixing) in docs/LITERAL_ENCRYPTION.md.
Example - Protecting API Keys:
# Traditional build - API key visible in binary
go build -ldflags="-X main.apiKey=sk_live_ABC123"
strings binary | grep sk_live # ❌ Found in plaintext!
# Garble build - API key encrypted
garble -literals build -ldflags="-X main.apiKey=sk_live_ABC123"
strings binary | grep sk_live # ✅ Not found - encrypted!
# Runtime still works: the key is decrypted during init()The -reversible flag controls whether original identifier names are embedded for tooling.
- Default (no
-reversible): reversibility metadata is omitted, and the reflection name map stays empty. This avoids leaking original names in the binary. - With
-reversible: the reflection mapping is populated to enablegarble reverseand improve debugging. This is an explicit security trade‑off.
Recommendation
- Leave
-reversibleoff for production builds. - Enable it in development/staging when you need to de‑obfuscate stack traces with
garble reverse.
With the -tiny flag, even more information is stripped from the Go binary.
Position information is removed entirely, rather than being obfuscated.
Runtime code which prints panics, fatal errors, and trace/debug info is removed.
Many symbol names are also omitted from binary sections at link time.
All in all, this can make binaries about 15% smaller.
With this flag, no panics or fatal runtime errors will ever be printed, but they
can still be handled internally with recover as normal. In addition, the
GODEBUG environmental variable will be ignored.
Note that this flag can make debugging crashes harder, as a panic will simply
exit the entire program without printing a stack trace, and source code
positions and many names are removed.
Similarly, garble reverse is generally not useful in this mode.
See: docs/CONTROLFLOW.md
Recent releases focus on raising the bar for reverse engineers while keeping the tooling practical:
- Fresh names every build – Garble mixes your seed with a per-build nonce, so identical sources still produce different symbol hashes unless you fix both values.
- Encrypted literals when
-literalsis enabled – many string literals are protected with inline ASCON, raising the cost of static string scraping. - Optional reversibility – keep
-reversibleoff in production, enable it in staging to recover stack traces withgarble reverse. - Hardened cache – when a seed is present (and
-no-cache-encryptis not set), Garble encrypts its on-disk cache automatically.
Want the deep dive? See docs/LITERAL_ENCRYPTION.md for literal internals and docs/SECURITY.md for the broader threat model.
garble build should take about twice as long as go build, as it needs to
complete two builds. The original build, to be able to load and type-check the
input code, and then the obfuscated build.
Garble obfuscates one package at a time, mirroring how Go compiles one package
at a time. This allows Garble to fully support Go's build cache; incremental
garble build calls should only re-build and re-obfuscate modified code.
Note that the first call to garble build may be comparatively slow,
as it has to obfuscate each package for the first time. This is akin to clearing
GOCACHE with go clean -cache and running a go build from scratch.
Garble also makes use of its own cache to reuse work, akin to Go's GOCACHE.
It defaults to a directory under your user's cache directory,
such as ~/.cache/garble, and can be placed elsewhere by setting GARBLE_CACHE.
Just like Go, garble builds are deterministic and reproducible in nature.
This has significant benefits, such as caching builds and being able to use
garble reverse to de-obfuscate stack traces.
By default, garble will obfuscate each package in a unique way, which will change if its build input changes: the version of garble, the version of Go, the package's source code, or any build parameter such as GOOS or -tags. This is a reasonable default since guessing those inputs is very hard.
You can use the -seed flag to provide your own obfuscation randomness seed.
Reusing the same seed can help produce the same code obfuscation,
which can help when debugging or reproducing problems.
Regularly rotating the seed can also help against reverse-engineering in the long run,
as otherwise one can look at changes in how Go's standard library is obfuscated
to guess when the Go or garble versions were changed across a series of builds.
To always use a different seed for each build, use -seed=random.
Note that extra care should be taken when using custom seeds:
if a -seed value used in a build is lost, garble reverse will not work.
In addition to the seed, garble derives a build nonce which is mixed into every obfuscated name.
The nonce is printed when -seed=random is used and can be provided explicitly via the
GARBLE_BUILD_NONCE environment variable. For reproducible builds – and for garble reverse
to succeed – make sure to preserve both the seed and the nonce that were used for the original build.
If either value is lost, the obfuscation cannot be undone.
For teams who deliberately do not want reversal to be possible, avoid recording those values. Without the corresponding seed and nonce, the resulting binaries are effectively non-reversible.
Most of these can improve with time and effort. The purpose of this section is to document the current shortcomings of this tool.
-
Exported methods are never obfuscated at the moment, since they could be required by interfaces. This area is a work in progress; see #3.
-
Aside from
GOGARBLEto select patterns of packages to obfuscate, there is no supported way to exclude obfuscating a selection of files or packages. More often than not, a user would want to do this to work around a bug; please file the bug instead. -
Go programs are initialized one package at a time, where imported packages are always initialized before their importers, and otherwise they are initialized in the lexical order of their import paths. Since garble obfuscates import paths, this lexical order may change arbitrarily.
-
Go plugins are not currently supported; see #87.
-
Garble requires
gitto patch the linker. That can be avoided once go-gitdiff supports non-strict patches. -
APIs like
runtime.GOROOTandruntime/debug.ReadBuildInfowill not work in obfuscated binaries. This can affect loading timezones, for example.
We welcome new contributors. If you would like to contribute, see CONTRIBUTING.md as a starting point.