Skip to content

Commit 7918fcc

Browse files
committed
Add test
1 parent 3c51865 commit 7918fcc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

test/test_repo.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1180,3 +1180,29 @@ def test_do_not_strip_newline_in_stdout(self, rw_dir):
11801180
r.git.add(Git.polish_url(fp))
11811181
r.git.commit(message="init")
11821182
self.assertEqual(r.git.show("HEAD:hello.txt", strip_newline_in_stdout=False), "hello\n")
1183+
1184+
@with_rw_repo("HEAD")
1185+
def test_clone_command_injection(self, rw_repo):
1186+
tmp_dir = pathlib.Path(tempfile.mkdtemp())
1187+
unexpected_file = tmp_dir / "pwn"
1188+
assert not unexpected_file.exists()
1189+
1190+
payload = f"--upload-pack=touch {unexpected_file}"
1191+
rw_repo.clone(payload)
1192+
1193+
assert not unexpected_file.exists()
1194+
# A repo was cloned with the payload as name
1195+
assert pathlib.Path(payload).exists()
1196+
1197+
@with_rw_repo("HEAD")
1198+
def test_clone_from_command_injection(self, rw_repo):
1199+
tmp_dir = pathlib.Path(tempfile.mkdtemp())
1200+
temp_repo = Repo.init(tmp_dir / "repo")
1201+
unexpected_file = tmp_dir / "pwn"
1202+
1203+
assert not unexpected_file.exists()
1204+
payload = f"--upload-pack=touch {unexpected_file}"
1205+
with self.assertRaises(GitCommandError):
1206+
rw_repo.clone_from(payload, temp_repo.common_dir)
1207+
1208+
assert not unexpected_file.exists()

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy