Ver Fonte

Disallow .git entries in trees, like C git.

Jelmer Vernooij há 7 anos atrás
pai
commit
c03c63e63d
2 ficheiros alterados com 2 adições e 1 exclusões
  1. 1 1
      dulwich/objects.py
  2. 1 0
      dulwich/tests/test_objects.py

+ 1 - 1
dulwich/objects.py

@@ -1014,7 +1014,7 @@ class Tree(ShaFile):
         for name, mode, sha in parse_tree(b''.join(self._chunked_text),
                                           True):
             check_hexsha(sha, 'invalid sha %s' % sha)
-            if b'/' in name or name in (b'', b'.', b'..'):
+            if b'/' in name or name in (b'', b'.', b'..', b'.git'):
                 raise ObjectFormatException('invalid name %s' % name)
 
             if mode not in allowed_modes:

+ 1 - 0
dulwich/tests/test_objects.py

@@ -887,6 +887,7 @@ class TreeTests(ShaFileCheckTests):
         self.assertCheckFails(t, b'100644 .\0' + sha)
         self.assertCheckFails(t, b'100644 a/a\0' + sha)
         self.assertCheckFails(t, b'100644 ..\0' + sha)
+        self.assertCheckFails(t, b'100644 .git\0' + sha)
 
         # modes
         self.assertCheckSucceeds(t, b'100644 a\0' + sha)