Plugin sync
This commit is contained in:
parent
841842da59
commit
b701b2be32
|
@ -26,6 +26,9 @@
|
|||
* ============================================================================
|
||||
*/
|
||||
|
||||
use PandoraFMS\Enterprise\Metaconsole\Synchronizer;
|
||||
use PandoraFMS\Tools\Files;
|
||||
|
||||
// Load global vars.
|
||||
global $config;
|
||||
|
||||
|
@ -115,401 +118,449 @@ echo $output;
|
|||
$zip = null;
|
||||
$upload = false;
|
||||
if (isset($_FILES['plugin_upload']) === true) {
|
||||
$config['plugin_store'] = $config['attachment_store'].'/plugin';
|
||||
$basepath = $config['attachment_store'].'/plugin';
|
||||
|
||||
$name_file = $_FILES['plugin_upload']['name'];
|
||||
$filename = $_FILES['plugin_upload']['name'];
|
||||
$uploaded_filename = $_FILES['plugin_upload']['tmp_name'];
|
||||
|
||||
$zip = zip_open($_FILES['plugin_upload']['tmp_name']);
|
||||
$upload = true;
|
||||
$tmp_path = Files::tempdirnam(
|
||||
$config['attachment_store'].'/downloads/',
|
||||
'plugin_uploaded_'
|
||||
);
|
||||
if ($tmp_path === false) {
|
||||
$error = __('Failed to create temporary directory');
|
||||
}
|
||||
} else {
|
||||
$error = '';
|
||||
}
|
||||
|
||||
if (isset($zip) === true && empty($zip) === false) {
|
||||
while ($zip_entry = zip_read($zip)) {
|
||||
if (zip_entry_open($zip, $zip_entry, 'r')) {
|
||||
if (zip_entry_name($zip_entry) == 'plugin_definition.ini') {
|
||||
$basepath = $config['attachment_store'];
|
||||
} else {
|
||||
$basepath = $config['plugin_store'];
|
||||
if ($error === null) {
|
||||
if (Files::unzip($uploaded_filename, $tmp_path) === true) {
|
||||
// Successfully extracted to tmp directory.
|
||||
// Grant execution over all files found.
|
||||
Files::chmod($tmp_path, 0755);
|
||||
|
||||
// Operate.
|
||||
$ini_array = parse_ini_file($tmp_path.'/plugin_definition.ini', true);
|
||||
// Clean plugin_definition.ini file.
|
||||
unlink($tmp_path.'/plugin_definition.ini');
|
||||
|
||||
// Parse with sections.
|
||||
if ($ini_array === false) {
|
||||
$error = __('Cannot load INI file');
|
||||
} else {
|
||||
// Relocate files to target destination.
|
||||
Files::move($tmp_path.'/*', $basepath.'/', true);
|
||||
|
||||
// Extract information.
|
||||
$version = preg_replace('/.*[.]/', '', $filename);
|
||||
$exec_path = $basepath.'/'.$ini_array['plugin_definition']['filename'];
|
||||
$file_exec_path = $exec_path;
|
||||
|
||||
if (isset($ini_array['plugin_definition']['execution_command']) === true
|
||||
&& empty($ini_array['plugin_definition']['execution_command']) === false
|
||||
) {
|
||||
$exec_path = $ini_array['plugin_definition']['execution_command'];
|
||||
$exec_path .= ' '.$basepath.'/';
|
||||
$exec_path .= $ini_array['plugin_definition']['filename'];
|
||||
}
|
||||
|
||||
$filename = $basepath.'/'.zip_entry_name($zip_entry);
|
||||
$fp = fopen($filename, 'w');
|
||||
$buf = zip_entry_read($zip_entry, zip_entry_filesize($zip_entry));
|
||||
fwrite($fp, $buf);
|
||||
fclose($fp);
|
||||
chmod($filename, 0755);
|
||||
zip_entry_close($zip_entry);
|
||||
}
|
||||
}
|
||||
if (isset($ini_array['plugin_definition']['execution_postcommand']) === true
|
||||
&& empty($ini_array['plugin_definition']['execution_postcommand']) === false
|
||||
) {
|
||||
$exec_path .= ' '.$ini_array['plugin_definition']['execution_postcommand'];
|
||||
}
|
||||
|
||||
zip_close($zip);
|
||||
}
|
||||
|
||||
if ($upload === true) {
|
||||
$ini_array = parse_ini_file($config['attachment_store'].'/plugin_definition.ini', true);
|
||||
// Parse with sections.
|
||||
if ($ini_array === false) {
|
||||
ui_print_error_message(__('Cannot load INI file'));
|
||||
} else {
|
||||
$version = preg_replace('/.*[.]/', '', $name_file);
|
||||
|
||||
$exec_path = $config['plugin_store'].'/'.$ini_array['plugin_definition']['filename'];
|
||||
|
||||
$file_exec_path = $exec_path;
|
||||
|
||||
if (isset($ini_array['plugin_definition']['execution_command']) === true
|
||||
&& empty($ini_array['plugin_definition']['execution_command']) === false
|
||||
) {
|
||||
$exec_path = $ini_array['plugin_definition']['execution_command'];
|
||||
$exec_path .= ' '.$config['plugin_store'].'/';
|
||||
$exec_path .= $ini_array['plugin_definition']['filename'];
|
||||
}
|
||||
|
||||
if (isset($ini_array['plugin_definition']['execution_postcommand']) === true
|
||||
&& empty($ini_array['plugin_definition']['execution_postcommand']) === false
|
||||
) {
|
||||
$exec_path .= ' '.$ini_array['plugin_definition']['execution_postcommand'];
|
||||
}
|
||||
|
||||
if (file_exists($file_exec_path) === false) {
|
||||
ui_print_error_message(__('Plugin exec not found. Aborting!'));
|
||||
unlink($config['attachment_store'].'/plugin_definition.ini');
|
||||
} else {
|
||||
// Verify if a plugin with the same name is already registered.
|
||||
$sql = sprintf(
|
||||
'SELECT COUNT(*)
|
||||
FROM tplugin
|
||||
WHERE name = "%s"',
|
||||
io_safe_input($ini_array['plugin_definition']['name'])
|
||||
);
|
||||
$result = db_get_sql($sql);
|
||||
|
||||
if ($result > 0) {
|
||||
ui_print_error_message(__('Plugin already registered. Aborting!'));
|
||||
if (file_exists($file_exec_path) === false) {
|
||||
$error = __('Plugin exec not found. Aborting!');
|
||||
unlink($config['attachment_store'].'/plugin_definition.ini');
|
||||
} else {
|
||||
$values = [
|
||||
'name' => io_safe_input($ini_array['plugin_definition']['name']),
|
||||
'description' => io_safe_input($ini_array['plugin_definition']['description']),
|
||||
'max_timeout' => $ini_array['plugin_definition']['timeout'],
|
||||
'execute' => io_safe_input($exec_path),
|
||||
'net_dst_opt' => $ini_array['plugin_definition']['ip_opt'],
|
||||
'net_port_opt' => $ini_array['plugin_definition']['port_opt'],
|
||||
'user_opt' => $ini_array['plugin_definition']['user_opt'],
|
||||
'pass_opt' => $ini_array['plugin_definition']['pass_opt'],
|
||||
'parameters' => $ini_array['plugin_definition']['parameters'],
|
||||
'plugin_type' => $ini_array['plugin_definition']['plugin_type'],
|
||||
];
|
||||
// Verify if a plugin with the same name is already registered.
|
||||
$sql = sprintf(
|
||||
'SELECT COUNT(*) FROM tplugin WHERE name = "%s"',
|
||||
io_safe_input($ini_array['plugin_definition']['name'])
|
||||
);
|
||||
$result = db_get_sql($sql);
|
||||
|
||||
switch ($version) {
|
||||
case 'pspz':
|
||||
// Fixed the static parameters
|
||||
// for
|
||||
// the dinamic parameters of pandoras 5.
|
||||
$total_macros = 0;
|
||||
$macros = [];
|
||||
|
||||
if (isset($values['parameters']) === false) {
|
||||
$values['parameters'] = '';
|
||||
}
|
||||
|
||||
if (empty($values['net_dst_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Target IP from net';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['net_dst_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['ip_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Target IP';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['ip_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['net_port_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Port from net';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['net_port_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['port_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Port';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['port_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['user_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Username';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['user_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['pass_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Password';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['pass_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
// A last parameter is defined always to
|
||||
// add the old "Plug-in parameters" in the
|
||||
// side of the module.
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Plug-in Parameters';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= ' _field'.$total_macros.'_';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
break;
|
||||
|
||||
case 'pspz2':
|
||||
// Fill the macros field.
|
||||
$total_macros = $ini_array['plugin_definition']['total_macros_provided'];
|
||||
|
||||
$macros = [];
|
||||
for ($it_macros = 1; $it_macros <= $total_macros; $it_macros++) {
|
||||
$label = 'macro_'.$it_macros;
|
||||
|
||||
$macro = [];
|
||||
|
||||
$macro['macro'] = '_field'.$it_macros.'_';
|
||||
$macro['hide'] = $ini_array[$label]['hide'];
|
||||
$macro['desc'] = io_safe_input(
|
||||
$ini_array[$label]['description']
|
||||
);
|
||||
$macro['help'] = io_safe_input(
|
||||
$ini_array[$label]['help']
|
||||
);
|
||||
$macro['value'] = io_safe_input(
|
||||
$ini_array[$label]['value']
|
||||
);
|
||||
|
||||
$macros[(string) $it_macros] = $macro;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
// Not possible.
|
||||
break;
|
||||
}
|
||||
|
||||
if (empty($macros) === false) {
|
||||
$values['macros'] = json_encode($macros);
|
||||
}
|
||||
|
||||
$create_id = db_process_sql_insert('tplugin', $values);
|
||||
|
||||
if (empty($create_id) === true) {
|
||||
ui_print_error_message(
|
||||
__('Plug-in Remote Registered unsuccessfull')
|
||||
);
|
||||
ui_print_info_message(
|
||||
__('Please check the syntax of file "plugin_definition.ini"')
|
||||
);
|
||||
if ($result > 0) {
|
||||
$error = __('Plugin already registered. Aborting!');
|
||||
unlink($config['attachment_store'].'/plugin_definition.ini');
|
||||
} else {
|
||||
for ($ax = 1; $ax <= $ini_array['plugin_definition']['total_modules_provided']; $ax++) {
|
||||
$label = 'module'.$ax;
|
||||
$values = [
|
||||
'name' => io_safe_input($ini_array['plugin_definition']['name']),
|
||||
'description' => io_safe_input($ini_array['plugin_definition']['description']),
|
||||
'max_timeout' => $ini_array['plugin_definition']['timeout'],
|
||||
'execute' => io_safe_input($exec_path),
|
||||
'net_dst_opt' => $ini_array['plugin_definition']['ip_opt'],
|
||||
'net_port_opt' => $ini_array['plugin_definition']['port_opt'],
|
||||
'user_opt' => $ini_array['plugin_definition']['user_opt'],
|
||||
'pass_opt' => $ini_array['plugin_definition']['pass_opt'],
|
||||
'parameters' => $ini_array['plugin_definition']['parameters'],
|
||||
'plugin_type' => $ini_array['plugin_definition']['plugin_type'],
|
||||
];
|
||||
|
||||
$plugin_user = '';
|
||||
if (isset($ini_array[$label]['plugin_user']) === true) {
|
||||
$plugin_user = $ini_array[$label]['plugin_user'];
|
||||
}
|
||||
switch ($version) {
|
||||
case 'pspz':
|
||||
// Fixed the static parameters
|
||||
// for
|
||||
// the dinamic parameters of pandoras 5.
|
||||
$total_macros = 0;
|
||||
$macros = [];
|
||||
|
||||
$plugin_pass = '';
|
||||
if (isset($ini_array[$label]['plugin_pass']) === true) {
|
||||
$plugin_pass = $ini_array[$label]['plugin_pass'];
|
||||
}
|
||||
if (isset($values['parameters']) === false) {
|
||||
$values['parameters'] = '';
|
||||
}
|
||||
|
||||
$plugin_parameter = '';
|
||||
if (isset($ini_array[$label]['plugin_parameter']) === true) {
|
||||
$plugin_parameter = $ini_array[$label]['plugin_parameter'];
|
||||
}
|
||||
if (empty($values['net_dst_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$unit = '';
|
||||
if (isset($ini_array[$label]['unit']) === true) {
|
||||
$unit = $ini_array[$label]['unit'];
|
||||
}
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Target IP from net';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values = [
|
||||
'name' => io_safe_input($ini_array[$label]['name']),
|
||||
'description' => io_safe_input($ini_array[$label]['description']),
|
||||
'id_group' => $ini_array[$label]['id_group'],
|
||||
'type' => $ini_array[$label]['type'],
|
||||
'max' => ($ini_array[$label]['max'] ?? ''),
|
||||
'min' => ($ini_array[$label]['min'] ?? ''),
|
||||
'module_interval' => ($ini_array[$label]['module_interval'] ?? ''),
|
||||
'id_module_group' => $ini_array[$label]['id_module_group'],
|
||||
'id_modulo' => $ini_array[$label]['id_modulo'],
|
||||
'plugin_user' => io_safe_input($plugin_user),
|
||||
'plugin_pass' => io_safe_input($plugin_pass),
|
||||
'plugin_parameter' => io_safe_input($plugin_parameter),
|
||||
'unit' => io_safe_input($unit),
|
||||
'max_timeout' => ($ini_array[$label]['max_timeout'] ?? ''),
|
||||
'history_data' => ($ini_array[$label]['history_data'] ?? ''),
|
||||
'dynamic_interval' => ($ini_array[$label]['dynamic_interval'] ?? ''),
|
||||
'dynamic_min' => ($ini_array[$label]['dynamic_min'] ?? ''),
|
||||
'dynamic_max' => ($ini_array[$label]['dynamic_max'] ?? ''),
|
||||
'dynamic_two_tailed' => ($ini_array[$label]['dynamic_two_tailed'] ?? ''),
|
||||
'min_warning' => ($ini_array[$label]['min_warning'] ?? ''),
|
||||
'max_warning' => ($ini_array[$label]['max_warning'] ?? ''),
|
||||
'str_warning' => ($ini_array[$label]['str_warning'] ?? ''),
|
||||
'min_critical' => ($ini_array[$label]['min_critical'] ?? ''),
|
||||
'max_critical' => ($ini_array[$label]['max_critical'] ?? ''),
|
||||
'str_critical' => ($ini_array[$label]['str_critical'] ?? ''),
|
||||
'min_ff_event' => ($ini_array[$label]['min_ff_event'] ?? ''),
|
||||
'tcp_port' => ($ini_array[$label]['tcp_port'] ?? ''),
|
||||
'id_plugin' => $create_id,
|
||||
];
|
||||
$values['parameters'] .= $values['net_dst_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros_component = $macros;
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
switch ($version) {
|
||||
case 'pspz':
|
||||
// Fixed the static parameters
|
||||
// for
|
||||
// the dinamic parameters of pandoras 5.
|
||||
foreach ($macros_component as $key => $macro) {
|
||||
if ($macro['desc'] === 'Target IP from net') {
|
||||
if (empty($values['ip_target']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['ip_target']
|
||||
);
|
||||
if (empty($values['ip_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Target IP';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['ip_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['net_port_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Port from net';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['net_port_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['port_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Port';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['port_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['user_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Username';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['user_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
if (empty($values['pass_opt']) === false) {
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Password';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= $values['pass_opt'].' _field'.$total_macros.'_ ';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
}
|
||||
|
||||
// A last parameter is defined always to
|
||||
// add the old "Plug-in parameters" in the
|
||||
// side of the module.
|
||||
$total_macros++;
|
||||
|
||||
$macro = [];
|
||||
$macro['macro'] = '_field'.$total_macros.'_';
|
||||
$macro['desc'] = 'Plug-in Parameters';
|
||||
$macro['help'] = '';
|
||||
$macro['value'] = '';
|
||||
|
||||
$values['parameters'] .= ' _field'.$total_macros.'_';
|
||||
|
||||
$macros[(string) $total_macros] = $macro;
|
||||
break;
|
||||
|
||||
case 'pspz2':
|
||||
// Fill the macros field.
|
||||
$total_macros = $ini_array['plugin_definition']['total_macros_provided'];
|
||||
|
||||
$macros = [];
|
||||
for ($it_macros = 1; $it_macros <= $total_macros; $it_macros++) {
|
||||
$label = 'macro_'.$it_macros;
|
||||
|
||||
$macro = [];
|
||||
|
||||
$macro['macro'] = '_field'.$it_macros.'_';
|
||||
$macro['hide'] = $ini_array[$label]['hide'];
|
||||
$macro['desc'] = io_safe_input(
|
||||
$ini_array[$label]['description']
|
||||
);
|
||||
$macro['help'] = io_safe_input(
|
||||
$ini_array[$label]['help']
|
||||
);
|
||||
$macro['value'] = io_safe_input(
|
||||
$ini_array[$label]['value']
|
||||
);
|
||||
|
||||
$macros[(string) $it_macros] = $macro;
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
// Not possible.
|
||||
break;
|
||||
}
|
||||
|
||||
if (empty($macros) === false) {
|
||||
$values['macros'] = json_encode($macros);
|
||||
}
|
||||
|
||||
$create_id = db_process_sql_insert('tplugin', $values);
|
||||
|
||||
if (empty($create_id) === true) {
|
||||
ui_print_error_message(
|
||||
__('Plug-in Remote Registered unsuccessfull')
|
||||
);
|
||||
ui_print_info_message(
|
||||
__('Please check the syntax of file "plugin_definition.ini"')
|
||||
);
|
||||
} else {
|
||||
for ($ax = 1; $ax <= $ini_array['plugin_definition']['total_modules_provided']; $ax++) {
|
||||
$label = 'module'.$ax;
|
||||
|
||||
$plugin_user = '';
|
||||
if (isset($ini_array[$label]['plugin_user']) === true) {
|
||||
$plugin_user = $ini_array[$label]['plugin_user'];
|
||||
}
|
||||
|
||||
$plugin_pass = '';
|
||||
if (isset($ini_array[$label]['plugin_pass']) === true) {
|
||||
$plugin_pass = $ini_array[$label]['plugin_pass'];
|
||||
}
|
||||
|
||||
$plugin_parameter = '';
|
||||
if (isset($ini_array[$label]['plugin_parameter']) === true) {
|
||||
$plugin_parameter = $ini_array[$label]['plugin_parameter'];
|
||||
}
|
||||
|
||||
$unit = '';
|
||||
if (isset($ini_array[$label]['unit']) === true) {
|
||||
$unit = $ini_array[$label]['unit'];
|
||||
}
|
||||
|
||||
$values = [
|
||||
'name' => io_safe_input($ini_array[$label]['name']),
|
||||
'description' => io_safe_input($ini_array[$label]['description']),
|
||||
'id_group' => $ini_array[$label]['id_group'],
|
||||
'type' => $ini_array[$label]['type'],
|
||||
'max' => ($ini_array[$label]['max'] ?? ''),
|
||||
'min' => ($ini_array[$label]['min'] ?? ''),
|
||||
'module_interval' => ($ini_array[$label]['module_interval'] ?? ''),
|
||||
'id_module_group' => $ini_array[$label]['id_module_group'],
|
||||
'id_modulo' => $ini_array[$label]['id_modulo'],
|
||||
'plugin_user' => io_safe_input($plugin_user),
|
||||
'plugin_pass' => io_safe_input($plugin_pass),
|
||||
'plugin_parameter' => io_safe_input($plugin_parameter),
|
||||
'unit' => io_safe_input($unit),
|
||||
'max_timeout' => ($ini_array[$label]['max_timeout'] ?? ''),
|
||||
'history_data' => ($ini_array[$label]['history_data'] ?? ''),
|
||||
'dynamic_interval' => ($ini_array[$label]['dynamic_interval'] ?? ''),
|
||||
'dynamic_min' => ($ini_array[$label]['dynamic_min'] ?? ''),
|
||||
'dynamic_max' => ($ini_array[$label]['dynamic_max'] ?? ''),
|
||||
'dynamic_two_tailed' => ($ini_array[$label]['dynamic_two_tailed'] ?? ''),
|
||||
'min_warning' => ($ini_array[$label]['min_warning'] ?? ''),
|
||||
'max_warning' => ($ini_array[$label]['max_warning'] ?? ''),
|
||||
'str_warning' => ($ini_array[$label]['str_warning'] ?? ''),
|
||||
'min_critical' => ($ini_array[$label]['min_critical'] ?? ''),
|
||||
'max_critical' => ($ini_array[$label]['max_critical'] ?? ''),
|
||||
'str_critical' => ($ini_array[$label]['str_critical'] ?? ''),
|
||||
'min_ff_event' => ($ini_array[$label]['min_ff_event'] ?? ''),
|
||||
'tcp_port' => ($ini_array[$label]['tcp_port'] ?? ''),
|
||||
'id_plugin' => $create_id,
|
||||
];
|
||||
|
||||
$macros_component = $macros;
|
||||
|
||||
switch ($version) {
|
||||
case 'pspz':
|
||||
// Fixed the static parameters
|
||||
// for
|
||||
// the dinamic parameters of pandoras 5.
|
||||
foreach ($macros_component as $key => $macro) {
|
||||
if ($macro['desc'] === 'Target IP from net') {
|
||||
if (empty($values['ip_target']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['ip_target']
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
if ($macro['desc'] === 'Target IP') {
|
||||
if (empty($values['ip_target']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['ip_target']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Port from net') {
|
||||
if (empty($values['tcp_port']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['tcp_port']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Port') {
|
||||
if (empty($values['tcp_port']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['tcp_port']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Username') {
|
||||
if (empty($values['plugin_user']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['plugin_user']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Password') {
|
||||
if (empty($values['plugin_pass']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['plugin_pass']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Plug-in Parameters') {
|
||||
if (empty($values['plugin_parameter']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['plugin_parameter']
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
||||
if ($macro['desc'] === 'Target IP') {
|
||||
if (empty($values['ip_target']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['ip_target']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Port from net') {
|
||||
if (empty($values['tcp_port']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['tcp_port']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Port') {
|
||||
if (empty($values['tcp_port']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['tcp_port']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Username') {
|
||||
if (empty($values['plugin_user']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['plugin_user']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Password') {
|
||||
if (empty($values['plugin_pass']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['plugin_pass']
|
||||
);
|
||||
}
|
||||
} else if ($macro['desc'] === 'Plug-in Parameters') {
|
||||
if (empty($values['plugin_parameter']) === false) {
|
||||
$macros_component[$key]['value'] = io_safe_input(
|
||||
$values['plugin_parameter']
|
||||
);
|
||||
case 'pspz2':
|
||||
if ($total_macros > 0) {
|
||||
for ($it_macros = 1; $it_macros <= $total_macros; $it_macros++) {
|
||||
$macro = 'macro_'.$it_macros.'_value';
|
||||
|
||||
// Set the value or use the default.
|
||||
if (isset($ini_array[$label][$macro]) === true) {
|
||||
$macros_component[(string) $it_macros]['value'] = io_safe_input(
|
||||
$ini_array[$label][$macro]
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
break;
|
||||
|
||||
case 'pspz2':
|
||||
if ($total_macros > 0) {
|
||||
for ($it_macros = 1; $it_macros <= $total_macros; $it_macros++) {
|
||||
$macro = 'macro_'.$it_macros.'_value';
|
||||
default:
|
||||
// Not possible.
|
||||
break;
|
||||
}
|
||||
|
||||
// Set the value or use the default.
|
||||
if (isset($ini_array[$label][$macro]) === true) {
|
||||
$macros_component[(string) $it_macros]['value'] = io_safe_input(
|
||||
$ini_array[$label][$macro]
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
break;
|
||||
if (empty($macros_component) === false) {
|
||||
$values['macros'] = json_encode($macros_component);
|
||||
}
|
||||
|
||||
default:
|
||||
// Not possible.
|
||||
break;
|
||||
db_process_sql_insert('tnetwork_component', $values);
|
||||
|
||||
ui_print_success_message(
|
||||
__('Module plugin registered').' : '.$ini_array[$label]['name']
|
||||
);
|
||||
}
|
||||
|
||||
if (empty($macros_component) === false) {
|
||||
$values['macros'] = json_encode($macros_component);
|
||||
}
|
||||
|
||||
db_process_sql_insert('tnetwork_component', $values);
|
||||
|
||||
ui_print_success_message(
|
||||
__('Module plugin registered').' : '.$ini_array[$label]['name']
|
||||
__('Plugin').' '.$ini_array['plugin_definition']['name'].' '.__('Registered successfully')
|
||||
);
|
||||
}
|
||||
|
||||
ui_print_success_message(
|
||||
__('Plugin').' '.$ini_array['plugin_definition']['name'].' '.__('Registered successfully')
|
||||
);
|
||||
unlink($config['attachment_store'].'/plugin_definition.ini');
|
||||
}
|
||||
|
||||
unlink($config['attachment_store'].'/plugin_definition.ini');
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// Clean.
|
||||
Files::rmrf($tmp_path);
|
||||
} else {
|
||||
$error = __('Unable to uncompress uploaded file');
|
||||
}
|
||||
}
|
||||
|
||||
if (file_exists($uploaded_filename) === true) {
|
||||
if (is_metaconsole() === true && is_management_allowed() === true) {
|
||||
// Keep uploaded file to be transferred to nodes.
|
||||
if (is_dir($config['attachment_store'].'/downloads/') === false) {
|
||||
mkdir($config['attachment_store'].'/downloads/');
|
||||
}
|
||||
|
||||
$keep = move_uploaded_file(
|
||||
$uploaded_filename,
|
||||
$config['attachment_store'].'/downloads/'.$filename
|
||||
);
|
||||
|
||||
if ($keep === false) {
|
||||
$error = __(
|
||||
'Cannot move uploaded file to %s.',
|
||||
$config['attachment_store'].'/downloads/'
|
||||
);
|
||||
}
|
||||
} else {
|
||||
// Clean temporary files.
|
||||
unlink($uploaded_filename);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if ($error !== null && $error !== '') {
|
||||
ui_print_error_message($error);
|
||||
} else if (is_management_allowed() === true && is_metaconsole() === true) {
|
||||
$attachment = '/'.str_replace(
|
||||
$config['homedir'],
|
||||
'',
|
||||
$config['attachment_store']
|
||||
);
|
||||
|
||||
$sc = new Synchronizer();
|
||||
$sc->queueOperation(
|
||||
Synchronizer::OPERATION_REFRESH_PLUGIN,
|
||||
ui_get_full_url(
|
||||
$attachment.'/downloads/'.$filename,
|
||||
false,
|
||||
false,
|
||||
false
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
if (is_metaconsole() === true) {
|
||||
enterprise_hook('close_meta_frame');
|
||||
}
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
* ============================================================================
|
||||
*/
|
||||
|
||||
|
||||
// Get global data.
|
||||
// Constants.
|
||||
define('MIME_UNKNOWN', 0);
|
||||
|
@ -120,6 +121,8 @@ if (function_exists('mime_content_type') === false) {
|
|||
|
||||
global $config;
|
||||
|
||||
require_once $config['homedir'].'/vendor/autoload.php';
|
||||
|
||||
|
||||
/**
|
||||
* Upload file.
|
||||
|
@ -197,38 +200,27 @@ function upload_file($upload_file_or_zip, $default_real_directory)
|
|||
|
||||
// Upload zip.
|
||||
if ($upload_zip === true) {
|
||||
if (isset($_FILES['file']) === true && empty($_FILES['file']['name']) === false) {
|
||||
$filename = $_FILES['file']['name'];
|
||||
$filesize = $_FILES['file']['size'];
|
||||
if (isset($_FILES['file']) === true
|
||||
&& empty($_FILES['file']['name']) === false
|
||||
) {
|
||||
$filename = $_FILES['file']['name'];
|
||||
$filesize = $_FILES['file']['size'];
|
||||
$filepath = $_FILES['file']['tmp_name'];
|
||||
$real_directory = filemanager_safe_directory((string) get_parameter('real_directory'));
|
||||
$directory = filemanager_safe_directory((string) get_parameter('directory'));
|
||||
|
||||
if (strpos($real_directory, $default_real_directory) !== 0) {
|
||||
// Perform security check to determine whether received upload directory is part of the default path for caller uploader and user is not trying to access an external path (avoid execution of PHP files in directories that are not explicitly controlled by corresponding .htaccess).
|
||||
// Perform security check to determine whether received upload
|
||||
// directory is part of the default path for caller uploader
|
||||
// and user is not trying to access an external path (avoid
|
||||
// execution of PHP files in directories that are not explicitly
|
||||
// controlled by corresponding .htaccess).
|
||||
ui_print_error_message(__('Security error'));
|
||||
} else {
|
||||
// Copy file to directory and change name.
|
||||
if (empty($directory) === true) {
|
||||
$nombre_archivo = $real_directory.'/'.$filename;
|
||||
if (PandoraFMS\Tools\Files::unzip($filepath, $real_directory) === false) {
|
||||
ui_print_error_message(__('No he podido descomprimir tu archivo de mierda'));
|
||||
} else {
|
||||
$nombre_archivo = $homedir_filemanager.'/'.$directory.'/'.$filename;
|
||||
}
|
||||
|
||||
if (! @copy($_FILES['file']['tmp_name'], $nombre_archivo)) {
|
||||
ui_print_error_message(__('Attach error'));
|
||||
} else {
|
||||
// Delete temporal file.
|
||||
unlink($_FILES['file']['tmp_name']);
|
||||
|
||||
// Extract the zip file.
|
||||
$zip = new ZipArchive;
|
||||
$pathname = $homedir_filemanager.'/'.$directory.'/';
|
||||
|
||||
if ($zip->open($nombre_archivo) === true) {
|
||||
$zip->extractTo($pathname);
|
||||
unlink($nombre_archivo);
|
||||
}
|
||||
|
||||
ui_print_success_message(__('Upload correct'));
|
||||
$config['filemanager']['correct_upload_file'] = 1;
|
||||
}
|
||||
|
|
|
@ -194,4 +194,123 @@ class Files
|
|||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a temporary directory with unique name.
|
||||
*
|
||||
* @param string $directory The directory where the temporary filename will be created.
|
||||
* @param string $prefix The prefix of the generated temporary filename.
|
||||
* Windows use only the first three characters of prefix.
|
||||
*
|
||||
* @return string|false The new temporary filename, or false on failure.
|
||||
*/
|
||||
public static function tempdirnam(string $directory, string $prefix='')
|
||||
{
|
||||
$filename = tempnam($directory, $prefix);
|
||||
if ($filename === false) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (file_exists($filename) === true) {
|
||||
unlink($filename);
|
||||
mkdir($filename);
|
||||
if (is_dir($filename) === true && is_writable($filename) === true) {
|
||||
return $filename;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Apply permissions recursively on path.
|
||||
*
|
||||
* @param string $path Path to a file or directory.
|
||||
* @param integer $file_perms Permissions to be applied to files found.
|
||||
* @param integer $dir_perms Permissions to be applied to directories found.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public static function chmod(
|
||||
string $path,
|
||||
int $file_perms=0644,
|
||||
int $dir_perms=0755
|
||||
) {
|
||||
if (is_dir($path) === true) {
|
||||
// Permissions over directories.
|
||||
$dh = opendir($path);
|
||||
if ($dh === false) {
|
||||
return;
|
||||
}
|
||||
|
||||
while (false !== ($fh = readdir($dh))) {
|
||||
if (is_dir($fh) === true) {
|
||||
if ($fh === '.' || $fh === '..') {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Recursion: directory.
|
||||
self::chmod($path.'/'.$fh, $file_perms, $dir_perms);
|
||||
} else {
|
||||
// Recursion: file.
|
||||
self::chmod($path.'/'.$fh, $file_perms, $dir_perms);
|
||||
}
|
||||
}
|
||||
|
||||
closedir($dh);
|
||||
} else {
|
||||
// Permissions over files.
|
||||
chmod($path, $file_perms);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Move from source to destination
|
||||
*
|
||||
* @param string $source Source (directory or file).
|
||||
* @param string $destination Destination (directory).
|
||||
* @param boolean $content_only Moves only content if directories.
|
||||
*
|
||||
* @return boolean True if success False if not.
|
||||
*/
|
||||
public static function move(
|
||||
string $source,
|
||||
string $destination,
|
||||
bool $content_only=false
|
||||
):bool {
|
||||
if (is_dir($destination) === false
|
||||
|| is_writable($destination) === false
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (is_file($source) === true
|
||||
|| (is_dir($source) === true && $content_only === false)
|
||||
) {
|
||||
return rename($source, $destination.'/'.basename($source));
|
||||
}
|
||||
|
||||
// Dir, but content only.
|
||||
if (is_dir($source) !== true || $content_only !== true) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Get array of all source files.
|
||||
$files = scandir($source);
|
||||
// Identify directories.
|
||||
$source = $source.'/';
|
||||
$destination = $destination.'/';
|
||||
// Cycle through all source files.
|
||||
foreach ($files as $file) {
|
||||
if (in_array($file, ['.', '..']) === true) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// If we copied this successfully, mark it for deletion.
|
||||
rename($source.$file, $destination.$file);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue