Skip to content

Commit 268c11c

Browse files
authored
escape user provide string to git (#483)
1 parent 975961f commit 268c11c

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

get_git.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ func (g *GitGetter) clone(ctx context.Context, dst, sshKeyFile string, u *url.UR
200200
args = append(args, "--depth", strconv.Itoa(depth))
201201
args = append(args, "--branch", ref)
202202
}
203-
args = append(args, u.String(), dst)
203+
args = append(args, "--", u.String(), dst)
204204

205205
cmd := exec.CommandContext(ctx, "git", args...)
206206
setupGitEnv(cmd, sshKeyFile)
@@ -289,7 +289,7 @@ func findDefaultBranch(ctx context.Context, dst string) string {
289289
// default branch. "master" is returned if no HEAD symref exists.
290290
func findRemoteDefaultBranch(ctx context.Context, u *url.URL) string {
291291
var stdoutbuf bytes.Buffer
292-
cmd := exec.CommandContext(ctx, "git", "ls-remote", "--symref", u.String(), "HEAD")
292+
cmd := exec.CommandContext(ctx, "git", "ls-remote", "--symref", "--", u.String(), "HEAD")
293293
cmd.Stdout = &stdoutbuf
294294
err := cmd.Run()
295295
matches := lsRemoteSymRefRegexp.FindStringSubmatch(stdoutbuf.String())

get_git_test.go

+30
Original file line numberDiff line numberDiff line change
@@ -836,6 +836,36 @@ func TestGitGetter_subdirectory(t *testing.T) {
836836
}
837837
}
838838

839+
func TestGitGetter_BadRemoteUrl(t *testing.T) {
840+
841+
if !testHasGit {
842+
t.Log("git not found, skipping")
843+
t.Skip()
844+
}
845+
846+
g := new(GitGetter)
847+
dst := tempDir(t)
848+
849+
// try an option that exists
850+
badUrl := "--no-refs"
851+
852+
u, err := url.Parse(badUrl)
853+
if err != nil {
854+
t.Fatal(err)
855+
}
856+
857+
err = g.Get(dst, u)
858+
if err == nil {
859+
t.Fatalf("get succeeded; want error")
860+
}
861+
862+
got := err.Error()
863+
want := `repository '--no-refs' does not exist`
864+
if !strings.Contains(got, want) {
865+
t.Fatalf("wrong error\ngot: %s\nwant: %q", got, want)
866+
}
867+
}
868+
839869
// gitRepo is a helper struct which controls a single temp git repo.
840870
type gitRepo struct {
841871
t *testing.T

0 commit comments

Comments
 (0)