Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64
User : palandch ( 1163)
PHP Version : 7.1.33
Disable Function : NONE
Directory :  /home/palandch/www/core/model/modx/processors/system/filesys/folder/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/palandch/www/core/model/modx/processors/system/filesys/folder/create.php
<?php
/**
 * @package modx
 * @subpackage processors.system.filesys.folder
 */
if (!$modx->hasPermission('file_manager')) return $modx->error->failure($modx->lexicon('permission_denied'));

// prevent subdir hack
$scriptProperties['name'] = str_replace("..\\",'',str_replace("../",'',$scriptProperties['name']));

// validate name
if (!isset($scriptProperties['name']) || $scriptProperties['name'] == '')
	return $modx->error->failure($modx->lexicon('file_folder_err_ns_name'));

if (!is_dir($scriptProperties['path']))
	return $modx->error->failure($modx->lexicon('file_folder_err_invalid_path'));

// setup vars
$amode = !empty($modx->getOption('new_folder_permissions')) ? octdec($modx->getOption('new_folder_permissions')) : 0777;
$new_folder = $scriptProperties['path'].'/'.$scriptProperties['name'];

if (file_exists($new_folder))
	return $modx->error->failure($modx->lexicon('file_folder_err_ae'));


// create folder
if (!mkdirs($new_folder,$amode)) {
	return $modx->error->failure($modx->lexicon('file_folder_err_create'));
} else {
	if (!@chmod($new_folder,$amode)) {
		return $modx->error->failure($modx->lexicon('file_folder_err_chmod'));
	}
}


// recursive mkdir function
function mkdirs($strPath, $mode){
	if (is_dir($strPath)) return true;
	$pStrPath = dirname($strPath);
	if (!mkdirs($pStrPath, $mode)) return false;
	return @mkdir($strPath);
}

return $modx->error->success();

Spamworldpro Mini