diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-10-08 03:23:28 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-10-08 08:59:45 +0200 |
commit | 0807d59d4d04dc3199b7b479808ee9693bb36119 (patch) | |
tree | 5430c2d6006e177ffeb21b2441318fbe00fdbd51 /source/kde | |
parent | 0e0679dee7c2f114f3531eb31cbfacc9414d30bd (diff) | |
download | current-0807d59d4d04dc3199b7b479808ee9693bb36119.tar.gz |
Fri Oct 8 03:23:28 UTC 202120211008032328
n/httpd-2.4.51-x86_64-1.txz: Upgraded.
SECURITY: CVE-2021-42013: Path Traversal and Remote Code
Execution in Apache HTTP Server 2.4.49 and 2.4.50 (incomplete
fix of CVE-2021-41773) (cve.mitre.org)
It was found that the fix for CVE-2021-41773 in Apache HTTP
Server 2.4.50 was insufficient. An attacker could use a path
traversal attack to map URLs to files outside the directories
configured by Alias-like directives.
If files outside of these directories are not protected by the
usual default configuration "require all denied", these requests
can succeed. If CGI scripts are also enabled for these aliased
pathes, this could allow for remote code execution.
This issue only affects Apache 2.4.49 and Apache 2.4.50 and not
earlier versions.
Credits: Reported by Juan Escobar from Dreamlab Technologies,
Fernando MuA+-oz from NULL Life CTF Team, and Shungo Kumasaka
For more information, see:
https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-42013
(* Security fix *)
Diffstat (limited to 'source/kde')
-rw-r--r-- | source/kde/kde/build/kio | 2 | ||||
-rw-r--r-- | source/kde/kde/patch/kio.patch | 2 | ||||
-rw-r--r-- | source/kde/kde/patch/kio/kio.allow.change.panel.launcher.icons.diff | 10 |
3 files changed, 13 insertions, 1 deletions
diff --git a/source/kde/kde/build/kio b/source/kde/kde/build/kio index 0cfbf088..00750edc 100644 --- a/source/kde/kde/build/kio +++ b/source/kde/kde/build/kio @@ -1 +1 @@ -2 +3 diff --git a/source/kde/kde/patch/kio.patch b/source/kde/kde/patch/kio.patch new file mode 100644 index 00000000..7a91249d --- /dev/null +++ b/source/kde/kde/patch/kio.patch @@ -0,0 +1,2 @@ +# Allow changing panel launcher icons: +cat $CWD/patch/kio/kio.allow.change.panel.launcher.icons.diff | patch -p1 --verbose || { touch ${SLACK_KDE_BUILD_DIR}/${PKGNAME}.failed ; continue ; } diff --git a/source/kde/kde/patch/kio/kio.allow.change.panel.launcher.icons.diff b/source/kde/kde/patch/kio/kio.allow.change.panel.launcher.icons.diff new file mode 100644 index 00000000..ccd0c680 --- /dev/null +++ b/source/kde/kde/patch/kio/kio.allow.change.panel.launcher.icons.diff @@ -0,0 +1,10 @@ +--- ./src/widgets/kpropertiesdialog.cpp.orig 2021-09-05 14:40:56.000000000 -0500 ++++ ./src/widgets/kpropertiesdialog.cpp 2021-10-07 13:51:57.301053426 -0500 +@@ -1227,6 +1227,7 @@ + Q_ASSERT(ro); // false isn't supported + if (ro && d->m_ui->fileNameLabel->isHidden()) { + Q_ASSERT(!d->m_bFromTemplate); ++ disconnect(d->m_ui->fileNameLineEdit, &QLineEdit::textChanged, this, &KFilePropsPlugin::nameFileChanged); + d->m_ui->fileNameLineEdit->setText(QString()); + d->m_ui->fileNameLineEdit->hide(); + |