Skip to content

Commit

Permalink
Merge pull request #468 from BishopFox/stage
Browse files Browse the repository at this point in the history
Disable garble's -tiny option
  • Loading branch information
moloch-- committed Jul 13, 2021
2 parents a3af100 + ac3e29a commit 5bcfa4c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion server/gogo/go.go
Expand Up @@ -137,7 +137,8 @@ func GarbleCmd(config GoConfig, cwd string, command []string) ([]byte, error) {
}
garbleBinPath := path.Join(config.GOROOT, "bin", "garble")
seed := fmt.Sprintf("-seed=%s", seed())
command = append([]string{"-literals", "-tiny", seed}, command...)
// command = append([]string{"-literals", "-tiny", seed}, command...)
command = append([]string{"-literals", seed}, command...)
cmd := exec.Command(garbleBinPath, command...)
cmd.Dir = cwd
cmd.Env = []string{
Expand Down

0 comments on commit 5bcfa4c

Please sign in to comment.