-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
There are security fixes inside.
- Loading branch information
Showing
10 changed files
with
135 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
commit 7340f67b9860ea0531c1450e5aa261c50f67165d | ||
Author: Paul Eggert <[email protected]> | ||
Date: Sat Oct 29 21:04:40 2016 -0700 | ||
|
||
When extracting, skip ".." members | ||
|
||
* NEWS: Document this. | ||
* src/extract.c (extract_archive): Skip members whose names | ||
contain "..". | ||
|
||
diff --git a/src/extract.c b/src/extract.c | ||
index f982433..7904148 100644 | ||
--- a/src/extract.c | ||
+++ b/src/extract.c | ||
@@ -1629,12 +1629,20 @@ extract_archive (void) | ||
{ | ||
char typeflag; | ||
tar_extractor_t fun; | ||
+ bool skip_dotdot_name; | ||
|
||
fatal_exit_hook = extract_finish; | ||
|
||
set_next_block_after (current_header); | ||
|
||
+ skip_dotdot_name = (!absolute_names_option | ||
+ && contains_dot_dot (current_stat_info.orig_file_name)); | ||
+ if (skip_dotdot_name) | ||
+ ERROR ((0, 0, _("%s: Member name contains '..'"), | ||
+ quotearg_colon (current_stat_info.orig_file_name))); | ||
+ | ||
if (!current_stat_info.file_name[0] | ||
+ || skip_dotdot_name | ||
|| (interactive_option | ||
&& !confirm ("extract", current_stat_info.file_name))) | ||
{ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters