diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-16 13:37:37 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-16 13:38:23 +0900 |
commit | 920cbdb3ed92bca1e8586db61035373e5bd8a0d7 (patch) | |
tree | 830ab8f71f8fced86e6d77fe4e62273fa8fad206 | |
parent | 202d2abe73b942cfea3a2fb9b6cf9d3a13bd1fe8 (diff) | |
download | tdebase-920cbdb3ed92bca1e8586db61035373e5bd8a0d7.tar.gz tdebase-920cbdb3ed92bca1e8586db61035373e5bd8a0d7.zip |
Security: remove support for in KRun which could have allowed execution of malicious code. This is similar to issue TDE/tdelibs#45 for .desktop files.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 2948d1cdf79e47b1c71b5565baae4178c8c1de39)
-rw-r--r-- | konqueror/konq_mainwindow.cc | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/konqueror/konq_mainwindow.cc b/konqueror/konq_mainwindow.cc index 4b8efaaf9..ff9d797cb 100644 --- a/konqueror/konq_mainwindow.cc +++ b/konqueror/konq_mainwindow.cc @@ -490,26 +490,7 @@ void KonqMainWindow::openURL( KonqView *_view, const KURL &_url, while( nDollarPos != -1 && nDollarPos+1 < static_cast<int>(aValue.length())) { // there is at least one $ - if( (aValue)[nDollarPos+1] == '(' ) { - uint nEndPos = nDollarPos+1; - // the next character is no $ - while ( (nEndPos <= aValue.length()) && (aValue[nEndPos]!=')') ) - nEndPos++; - nEndPos++; - TQString cmd = aValue.mid( nDollarPos+2, nEndPos-nDollarPos-3 ); - - TQString result; - FILE *fs = popen(TQFile::encodeName(cmd).data(), "r"); - if (fs) - { - { - TQTextStream ts(fs, IO_ReadOnly); - result = ts.read().stripWhiteSpace(); - } - pclose(fs); - } - aValue.replace( nDollarPos, nEndPos-nDollarPos, result ); - } else if( (aValue)[nDollarPos+1] != '$' ) { + if( (aValue)[nDollarPos+1] != '$' ) { uint nEndPos = nDollarPos+1; // the next character is no $ TQString aVarName; |