Skip to content

Commit

Permalink
LUGG-1222 Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
jrearick committed Jan 20, 2021
2 parents 3e63ea7 + eb2d499 commit ab0f85a
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Drupal 7.78, 2021-01-19
-----------------------
- Fixed security issues:
- SA-CORE-2021-001

Drupal 7.77, 2020-12-03
-----------------------
- Hotfix for schema.prefixed tables
Expand Down
5 changes: 5 additions & 0 deletions LUGGAGE_CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ How to read this changelog:

The LUGG- prefix refers to JIRA issue numbers; the # prefix refers to GitHub issue numbers.

Luggage 3.6.18, 2021-01-20
Drupal 7.78, 2021-01-20
-------------------------
- LUGG-1222 - Drupal 7.78 SA-CORE-2021-001

Luggage 3.6.17, 2020-12-23
Drupal 7.77, 2020-12-03
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion LUGGAGE_VERSION.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php

$version = "3.6.17";
$version = "3.6.18";
2 changes: 1 addition & 1 deletion includes/bootstrap.inc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
/**
* The current system version.
*/
define('VERSION', '7.77');
define('VERSION', '7.78');

/**
* Core API compatibility.
Expand Down
8 changes: 8 additions & 0 deletions modules/system/system.tar.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2178,6 +2178,14 @@ class Archive_Tar
}
}
} elseif ($v_header['typeflag'] == "2") {
if (strpos(realpath(dirname($v_header['link'])), realpath($p_path)) !== 0) {
$this->_error(
'Out-of-path file extraction {'
. $v_header['filename'] . ' --> ' .
$v_header['link'] . '}'
);
return false;
}
if (!$p_symlinks) {
$this->_warning('Symbolic links are not allowed. '
. 'Unable to extract {'
Expand Down

0 comments on commit ab0f85a

Please sign in to comment.