Improve name validation checks on local File references
This commit is contained in:
parent
779204b194
commit
84ab0156b4
|
@ -71,7 +71,7 @@ class GetfileAction extends Action
|
|||
$filename = $this->trimmed('filename');
|
||||
$path = null;
|
||||
|
||||
if ($filename) {
|
||||
if ($filename && File::validFilename($filename)) {
|
||||
$path = File::path($filename);
|
||||
}
|
||||
|
||||
|
|
|
@ -176,8 +176,22 @@ class File extends Memcached_DataObject
|
|||
return "$nickname-$datestamp-$random.$ext";
|
||||
}
|
||||
|
||||
/**
|
||||
* Validation for as-saved base filenames
|
||||
*/
|
||||
static function validFilename($filename)
|
||||
{
|
||||
return preg_match('^/[A-Za-z0-9._-]+$/', $filename);
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws ClientException on invalid filename
|
||||
*/
|
||||
static function path($filename)
|
||||
{
|
||||
if (!self::validFilename($filename)) {
|
||||
throw new ClientException("Invalid filename");
|
||||
}
|
||||
$dir = common_config('attachments', 'dir');
|
||||
|
||||
if ($dir[strlen($dir)-1] != '/') {
|
||||
|
@ -189,6 +203,9 @@ class File extends Memcached_DataObject
|
|||
|
||||
static function url($filename)
|
||||
{
|
||||
if (!self::validFilename($filename)) {
|
||||
throw new ClientException("Invalid filename");
|
||||
}
|
||||
if(common_config('site','private')) {
|
||||
|
||||
return common_local_url('getfile',
|
||||
|
|
Loading…
Reference in New Issue
Block a user