Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCM Base Distribution
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OCIO_ODEE_Web
WCM Base Distribution
Commits
5408ef43
Commit
5408ef43
authored
4 years ago
by
Chris Gross
Browse files
Options
Downloads
Patches
Plain Diff
Updated Drupal core to 7.75 per SA-CORE-2020-013
parent
df040393
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.txt
+5
-0
5 additions, 0 deletions
CHANGELOG.txt
includes/bootstrap.inc
+1
-1
1 addition, 1 deletion
includes/bootstrap.inc
modules/system/system.tar.inc
+4
-4
4 additions, 4 deletions
modules/system/system.tar.inc
profiles/wcm_base/CHANGELOG.txt
+4
-0
4 additions, 0 deletions
profiles/wcm_base/CHANGELOG.txt
with
14 additions
and
5 deletions
CHANGELOG.txt
+
5
−
0
View file @
5408ef43
Drupal 7.75, 2020-11-26
-----------------------
- Fixed security issues:
- SA-CORE-2020-013
Drupal 7.74, 2020-11-17
-----------------------
- Fixed security issues:
...
...
This diff is collapsed.
Click to expand it.
includes/bootstrap.inc
+
1
−
1
View file @
5408ef43
...
...
@@ -8,7 +8,7 @@
/**
* The current system version.
*/
define
(
'VERSION'
,
'7.7
4
'
);
define
(
'VERSION'
,
'7.7
5
'
);
/**
* Core API compatibility.
...
...
This diff is collapsed.
Click to expand it.
modules/system/system.tar.inc
+
4
−
4
View file @
5408ef43
...
...
@@ -1788,7 +1788,7 @@ class Archive_Tar
// ----- Extract the properties
$v_header
[
'filename'
]
=
rtrim
(
$v_data
[
'filename'
],
"
\0
"
);
if
(
$this
->
_
m
aliciousFilename
(
$v_header
[
'filename'
]))
{
if
(
$this
->
_
isM
aliciousFilename
(
$v_header
[
'filename'
]))
{
$this
->
_error
(
'Malicious .tar detected, file "'
.
$v_header
[
'filename'
]
.
'" will not install in desired directory tree'
...
...
@@ -1858,9 +1858,9 @@ class Archive_Tar
*
* @return bool
*/
private
function
_
m
aliciousFilename
(
$file
)
private
function
_
isM
aliciousFilename
(
$file
)
{
if
(
strpos
(
$file
,
'
phar
://'
)
=
==
0
)
{
if
(
strpos
(
$file
,
'://'
)
!
==
false
)
{
return
true
;
}
if
(
strpos
(
$file
,
'../'
)
!==
false
||
strpos
(
$file
,
'..\\'
)
!==
false
)
{
...
...
@@ -1896,7 +1896,7 @@ class Archive_Tar
$v_filename
=
rtrim
(
substr
(
$v_filename
,
0
,
$v_filesize
),
"
\0
"
);
$v_header
[
'filename'
]
=
$v_filename
;
if
(
$this
->
_
m
aliciousFilename
(
$v_filename
))
{
if
(
$this
->
_
isM
aliciousFilename
(
$v_filename
))
{
$this
->
_error
(
'Malicious .tar detected, file "'
.
$v_filename
.
'" will not install in desired directory tree'
...
...
This diff is collapsed.
Click to expand it.
profiles/wcm_base/CHANGELOG.txt
+
4
−
0
View file @
5408ef43
WCM Base 7.x-1.30, 2020-11-30
-----------------------------
- WCM Base: Updated Drupal core to 7.75 per SA-CORE-2020-013.
WCM Base 7.x-1.29, 2020-11-18
-----------------------------
- WCM Base: Updated Drupal core to 7.74 per SA-CORE-2020-012.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment