mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-25 14:04:23 +00:00
Optimize symbolic links checking
This commit is contained in:
parent
e06e1d9911
commit
ee38124db7
@ -157,8 +157,10 @@ void WebApplication::sendWebUIFile()
|
|||||||
if (!Utils::Fs::isRegularFile(localPath))
|
if (!Utils::Fs::isRegularFile(localPath))
|
||||||
throw InternalServerErrorHTTPError(tr("Unacceptable file type, only regular file is allowed."));
|
throw InternalServerErrorHTTPError(tr("Unacceptable file type, only regular file is allowed."));
|
||||||
|
|
||||||
QFileInfo fileInfo {localPath.data()};
|
const QString rootFolder = m_rootFolder.data();
|
||||||
while (Path(fileInfo.filePath()) != m_rootFolder)
|
|
||||||
|
QFileInfo fileInfo {localPath.parentPath().data()};
|
||||||
|
while (fileInfo.path() != rootFolder)
|
||||||
{
|
{
|
||||||
if (fileInfo.isSymLink())
|
if (fileInfo.isSymLink())
|
||||||
throw InternalServerErrorHTTPError(tr("Symlinks inside alternative UI folder are forbidden."));
|
throw InternalServerErrorHTTPError(tr("Symlinks inside alternative UI folder are forbidden."));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user