Skip to content

AeonDave/garble

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

garble hardened

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.

Installation

Install from this repository:

go install github.com/AeonDave/garble@latest

Or 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.

Overview

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.

Quick start

  1. Install: go install github.com/AeonDave/garble@latest
  2. Obfuscate your binary: garble build ./cmd/myapp
  3. Make builds reproducible: provide both a seed and a build nonce
    • Example: garble -seed=Z3JhZmY build ./cmd/myapp
    • Set GARBLE_BUILD_NONCE to a fixed base64 value for identical outputs across runs

See docs/FEATURE_TOGGLES.md for a complete flag and environment reference.

Recommended usage

Basic Obfuscation (Quick Start)

# Simple obfuscation with random seed
garble -seed=random build ./cmd/myapp

What 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

Production Hardening (Recommended)

# Maximum security with literal encryption and control-flow obfuscation
garble -seed=random -literals -controlflow=auto build ./cmd/myapp

What this adds:

  • Literal encryption: All string/numeric literals encrypted with ASCON-128
  • Control-flow obfuscation: Jump tables and dead code injection (safe mode)
  • -ldflags=-X protection: 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

Minimal Binary Size

# Smallest possible binary (15% smaller)
garble -seed=random -tiny build ./cmd/myapp

Trade-offs:

  • ✅ Strips all panic handlers, runtime positions, and extra metadata
  • ⚠️ Stack traces become useless (no file/line info)
  • garble reverse cannot recover original names

Use when:

  • Binary size is critical (embedded systems, mobile apps)
  • Runtime debugging is not needed
  • Distribution channels have size limits

Development/Debugging Mode

# 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.log

What -reversible does:

  • Embeds original names in a reflection map
  • Enables garble reverse to 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)

Reproducible CI/CD Builds

# Fixed seed + nonce for identical binaries
GARBLE_BUILD_NONCE=a1b2c3d4e5f6g7h8 garble \
  -seed=myFixedSeed123 \
  -literals \
  -controlflow=auto \
  build ./cmd/myapp

Why 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

Selective Package Obfuscation

# Only obfuscate internal packages, leave public API readable
GOGARBLE='./internal/...' garble -seed=random -literals build ./cmd/myapp

Use when:

  • Building libraries with public APIs
  • Debugging customer-reported issues (public symbols help)
  • Protecting core logic while keeping interfaces clean

What Garble Does Automatically

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.

Purpose

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

Mechanism

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 -literals flag is given
  • Remove extra information, if the -tiny flag is given
  • Apply control-flow obfuscation, if -controlflow is 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 build

Use cases

A 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.

Key flags and environment knobs

  • -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. Use auto for 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 enable garble reverse for de-obfuscating stack traces. ⚠️ Weakens security—only use in development.
  • -seed – Provides entropy for name hashing and encryption. Use -seed=random for 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.

Literal obfuscation

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, iota math, case labels, etc.) are preserved to keep the program valid and may stay in plaintext.
  • Strings injected via -ldflags=-X are 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()

Reversible obfuscation

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 enable garble reverse and improve debugging. This is an explicit security trade‑off.

Recommendation

  • Leave -reversible off for production builds.
  • Enable it in development/staging when you need to de‑obfuscate stack traces with garble reverse.

Tiny mode

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.

Control flow obfuscation

See: docs/CONTROLFLOW.md

Security snapshot

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 -literals is enabled – many string literals are protected with inline ASCON, raising the cost of static string scraping.
  • Optional reversibility – keep -reversible off in production, enable it in staging to recover stack traces with garble reverse.
  • Hardened cache – when a seed is present (and -no-cache-encrypt is 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.

Speed

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.

Determinism and seeds

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.

Caveats

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 GOGARBLE to 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 git to patch the linker. That can be avoided once go-gitdiff supports non-strict patches.

  • APIs like runtime.GOROOT and runtime/debug.ReadBuildInfo will not work in obfuscated binaries. This can affect loading timezones, for example.

Contributing

We welcome new contributors. If you would like to contribute, see CONTRIBUTING.md as a starting point.

About

Obfuscate Go builds

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Languages

  • Go 99.3%
  • Shell 0.7%