Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
966dfac3
Kaydet (Commit)
966dfac3
authored
May 16, 2016
tarafından
Joffrey F
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge pull request #1065 from aanand/fix-dockerignore-path-traversal
Resolve path traversal in .dockerignore patterns
üst
8b416796
5ebf4b8e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
utils.py
docker/utils/utils.py
+3
-0
utils_test.py
tests/unit/utils_test.py
+8
-0
No files found.
docker/utils/utils.py
Dosyayı görüntüle @
966dfac3
...
...
@@ -199,6 +199,9 @@ def get_paths(root, exclude_patterns, include_patterns, has_exceptions=False):
def
match_path
(
path
,
pattern
):
pattern
=
pattern
.
rstrip
(
'/'
)
if
pattern
:
pattern
=
os
.
path
.
relpath
(
pattern
)
pattern_components
=
pattern
.
split
(
'/'
)
path_components
=
path
.
split
(
'/'
)[:
len
(
pattern_components
)]
return
fnmatch
(
'/'
.
join
(
path_components
),
pattern
)
...
...
tests/unit/utils_test.py
Dosyayı görüntüle @
966dfac3
...
...
@@ -802,6 +802,9 @@ class ExcludePathsTest(base.BaseTestCase):
def
test_single_filename
(
self
):
assert
self
.
exclude
([
'a.py'
])
==
self
.
all_paths
-
set
([
'a.py'
])
def
test_single_filename_leading_dot_slash
(
self
):
assert
self
.
exclude
([
'./a.py'
])
==
self
.
all_paths
-
set
([
'a.py'
])
# As odd as it sounds, a filename pattern with a trailing slash on the
# end *will* result in that file being excluded.
def
test_single_filename_trailing_slash
(
self
):
...
...
@@ -831,6 +834,11 @@ class ExcludePathsTest(base.BaseTestCase):
def
test_single_subdir_single_filename
(
self
):
assert
self
.
exclude
([
'foo/a.py'
])
==
self
.
all_paths
-
set
([
'foo/a.py'
])
def
test_single_subdir_with_path_traversal
(
self
):
assert
self
.
exclude
([
'foo/whoops/../a.py'
])
==
self
.
all_paths
-
set
([
'foo/a.py'
,
])
def
test_single_subdir_wildcard_filename
(
self
):
assert
self
.
exclude
([
'foo/*.py'
])
==
self
.
all_paths
-
set
([
'foo/a.py'
,
'foo/b.py'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment