summaryrefslogtreecommitdiffstats
path: root/netwerk/base
diff options
context:
space:
mode:
authorMoonchild <moonchild@palemoon.org>2020-07-29 01:21:13 +0000
committerMoonchild <moonchild@palemoon.org>2020-07-29 01:21:13 +0000
commit3b0123aa12675decc11332704997e29a819eb8ff (patch)
treefca56977877dae912f340f41ae12d828c7d17d68 /netwerk/base
parent08fb2f306856948ecc71974dd98c0a6d78df25aa (diff)
downloadUXP-3b0123aa12675decc11332704997e29a819eb8ff.tar
UXP-3b0123aa12675decc11332704997e29a819eb8ff.tar.gz
UXP-3b0123aa12675decc11332704997e29a819eb8ff.tar.lz
UXP-3b0123aa12675decc11332704997e29a819eb8ff.tar.xz
UXP-3b0123aa12675decc11332704997e29a819eb8ff.zip
[network/dom] Improve sanitization of download filenames.
Diffstat (limited to 'netwerk/base')
-rw-r--r--netwerk/base/nsBaseChannel.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/netwerk/base/nsBaseChannel.cpp b/netwerk/base/nsBaseChannel.cpp
index 2575fac04..51caa546e 100644
--- a/netwerk/base/nsBaseChannel.cpp
+++ b/netwerk/base/nsBaseChannel.cpp
@@ -579,6 +579,12 @@ NS_IMETHODIMP
nsBaseChannel::SetContentDispositionFilename(const nsAString &aContentDispositionFilename)
{
mContentDispositionFilename = new nsString(aContentDispositionFilename);
+
+ // For safety reasons ensure the filename doesn't contain null characters and
+ // replace them with underscores. We may later pass the extension to system
+ // MIME APIs that expect null terminated strings.
+ mContentDispositionFilename->ReplaceChar(char16_t(0), '_');
+
return NS_OK;
}