mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Check for path permissions before opening file in the CLI file reader
This commit is contained in:
parent
965de29772
commit
b30fad4a49
@ -638,8 +638,6 @@ bool CommandLineInterface::processInput()
|
|||||||
ReadFile::Callback fileReader = [this](string const& _path)
|
ReadFile::Callback fileReader = [this](string const& _path)
|
||||||
{
|
{
|
||||||
auto path = boost::filesystem::path(_path);
|
auto path = boost::filesystem::path(_path);
|
||||||
if (!boost::filesystem::exists(path))
|
|
||||||
return ReadFile::Result{false, "File not found."};
|
|
||||||
auto canonicalPath = boost::filesystem::canonical(path);
|
auto canonicalPath = boost::filesystem::canonical(path);
|
||||||
bool isAllowed = false;
|
bool isAllowed = false;
|
||||||
for (auto const& allowedDir: m_allowedDirectories)
|
for (auto const& allowedDir: m_allowedDirectories)
|
||||||
@ -656,6 +654,8 @@ bool CommandLineInterface::processInput()
|
|||||||
}
|
}
|
||||||
if (!isAllowed)
|
if (!isAllowed)
|
||||||
return ReadFile::Result{false, "File outside of allowed directories."};
|
return ReadFile::Result{false, "File outside of allowed directories."};
|
||||||
|
else if (!boost::filesystem::exists(path))
|
||||||
|
return ReadFile::Result{false, "File not found."};
|
||||||
else if (!boost::filesystem::is_regular_file(canonicalPath))
|
else if (!boost::filesystem::is_regular_file(canonicalPath))
|
||||||
return ReadFile::Result{false, "Not a valid file."};
|
return ReadFile::Result{false, "Not a valid file."};
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user