1202 lines
41 KiB
PHP
1202 lines
41 KiB
PHP
<?php
|
|
/**
|
|
* External Tools view Class.
|
|
*
|
|
* @category Class
|
|
* @package Pandora FMS
|
|
* @subpackage Setup
|
|
* @version 1.0.0
|
|
* @license See below
|
|
*
|
|
* ______ ___ _______ _______ ________
|
|
* | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __|
|
|
* | __/| _ | | _ || _ | _| _ | | ___| |__ |
|
|
* |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______|
|
|
*
|
|
* ============================================================================
|
|
* Copyright (c) 2005-2023 Pandora FMS
|
|
* Please see https://pandorafms.com/community/ for full contribution list
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation for version 2.
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
* ============================================================================
|
|
*/
|
|
|
|
// Get global data.
|
|
global $config;
|
|
|
|
// Necessary classes for extends.
|
|
require_once $config['homedir'].'/include/class/HTML.class.php';
|
|
|
|
/**
|
|
* External Tools class
|
|
*/
|
|
class ExternalTools extends HTML
|
|
{
|
|
|
|
/**
|
|
* Origin
|
|
*
|
|
* @var string
|
|
*/
|
|
public $origin;
|
|
|
|
/**
|
|
* PathCustomComm
|
|
*
|
|
* @var string
|
|
*/
|
|
public $pathCustomComm;
|
|
|
|
/**
|
|
* PathDig
|
|
*
|
|
* @var string
|
|
*/
|
|
public $pathDig;
|
|
|
|
/**
|
|
* PathNmap
|
|
*
|
|
* @var string
|
|
*/
|
|
public $pathNmap;
|
|
|
|
/**
|
|
* PathPing
|
|
*
|
|
* @var string
|
|
*/
|
|
public $pathPing;
|
|
|
|
/**
|
|
* PathSnmpget
|
|
*
|
|
* @var string
|
|
*/
|
|
public $pathSnmpget;
|
|
|
|
/**
|
|
* PathTraceroute
|
|
*
|
|
* @var string
|
|
*/
|
|
public $pathTraceroute;
|
|
|
|
/**
|
|
* UpdatePaths
|
|
*
|
|
* @var string
|
|
*/
|
|
public $updatePaths;
|
|
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param string $origin Origin of the request.
|
|
*/
|
|
public function __construct(string $origin)
|
|
{
|
|
global $config;
|
|
|
|
// Check if the user can access here.
|
|
check_login();
|
|
// Setting the origin.
|
|
$this->origin = $origin;
|
|
|
|
if ($this->origin === 'agent') {
|
|
if (check_acl($config['id_user'], 0, 'AR') === false) {
|
|
db_pandora_audit(
|
|
AUDIT_LOG_ACL_VIOLATION,
|
|
'Trying to access Agent Management'
|
|
);
|
|
include 'general/noaccess.php';
|
|
return;
|
|
}
|
|
|
|
// Capture needed parameter for agent form.
|
|
$this->id_agente = (int) get_parameter('id_agente');
|
|
$this->operation = (int) get_parameter('operation');
|
|
$this->community = (string) get_parameter('community', 'public');
|
|
$this->ip = (string) get_parameter('select_ips');
|
|
$this->snmp_version = (string) get_parameter('select_version');
|
|
} else if ($this->origin === 'setup') {
|
|
if (check_acl($config['id_user'], 0, 'PM') === false) {
|
|
db_pandora_audit(
|
|
AUDIT_LOG_ACL_VIOLATION,
|
|
'Trying to access Profile Management'
|
|
);
|
|
include 'general/noaccess.php';
|
|
return;
|
|
}
|
|
|
|
// Capture needed parameters for setup form.
|
|
$this->updatePaths = (bool) get_parameter('update_paths', 0);
|
|
|
|
// Capture paths.
|
|
$this->pathTraceroute = (string) get_parameter('traceroute_path');
|
|
$this->pathPing = (string) get_parameter('ping_path');
|
|
$this->pathNmap = (string) get_parameter('nmap_path');
|
|
$this->pathDig = (string) get_parameter('dig_path');
|
|
$this->pathSnmpget = (string) get_parameter('snmpget_path');
|
|
|
|
// Capture custom commands.
|
|
$this->pathCustomComm = [];
|
|
foreach ($_REQUEST as $customKey => $customValue) {
|
|
if ((bool) preg_match('/command_custom_/', $customKey) === true) {
|
|
$temporaryCustomCommandId = explode('_', $customKey);
|
|
$customCommandId = $temporaryCustomCommandId[2];
|
|
// Define array for host the command/parameters pair data.
|
|
$this->pathCustomComm[$customValue] = [];
|
|
// Ensure the information.
|
|
$this->pathCustomComm[$customValue]['command_custom'] = (string) get_parameter(
|
|
'command_custom_'.$customCommandId
|
|
);
|
|
$this->pathCustomComm[$customValue]['params_custom'] = (string) get_parameter(
|
|
'params_custom_'.$customCommandId
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Run action.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function run()
|
|
{
|
|
if ($this->origin === 'agent') {
|
|
// Print tool form.
|
|
$this->agentExternalToolsForm();
|
|
} else if ($this->origin === 'setup') {
|
|
// Print setup form.
|
|
$this->setupExternalToolsForm();
|
|
}
|
|
|
|
// Anyway, load JS.
|
|
$this->loadJS();
|
|
}
|
|
|
|
|
|
/**
|
|
* Print the form for setup the external tools.
|
|
*
|
|
* @return void
|
|
*/
|
|
private function setupExternalToolsForm()
|
|
{
|
|
global $config;
|
|
|
|
$i = 0;
|
|
$sounds = $this->getSounds();
|
|
|
|
if ($this->updatePaths === true) {
|
|
$external_tools_config = [];
|
|
$external_tools_config['traceroute_path'] = $this->pathTraceroute;
|
|
$external_tools_config['ping_path'] = $this->pathPing;
|
|
$external_tools_config['nmap_path'] = $this->pathNmap;
|
|
$external_tools_config['dig_path'] = $this->pathDig;
|
|
$external_tools_config['snmpget_path'] = $this->pathSnmpget;
|
|
|
|
$otherParameters = [];
|
|
$otherParameters['sound_alert'] = (string) get_parameter('sound_alert');
|
|
$otherParameters['sound_critical'] = (string) get_parameter('sound_critical');
|
|
$otherParameters['sound_warning'] = (string) get_parameter('sound_warning');
|
|
$otherParameters['graphviz_bin_dir'] = (string) get_parameter('graphviz_bin_dir');
|
|
|
|
if (empty($this->pathCustomComm) === false) {
|
|
$external_tools_config['custom_commands'] = $this->pathCustomComm;
|
|
}
|
|
|
|
foreach ($otherParameters as $keyParam => $valueParam) {
|
|
$result = config_update_value($keyParam, $valueParam);
|
|
|
|
if ($result === false) {
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ($result === true) {
|
|
$result = config_update_value(
|
|
'external_tools_config',
|
|
io_safe_input(
|
|
json_encode($external_tools_config)
|
|
)
|
|
);
|
|
}
|
|
|
|
ui_print_result_message(
|
|
($result),
|
|
__('Changes successfully saved.'),
|
|
__('Changes not saved.')
|
|
);
|
|
} else {
|
|
if (isset($config['external_tools_config']) === true) {
|
|
$external_tools_config = json_decode(
|
|
io_safe_output(
|
|
$config['external_tools_config']
|
|
),
|
|
true
|
|
);
|
|
// Setting paths.
|
|
$this->pathTraceroute = $external_tools_config['traceroute_path'];
|
|
$this->pathPing = $external_tools_config['ping_path'];
|
|
$this->pathNmap = $external_tools_config['nmap_path'];
|
|
$this->pathDig = $external_tools_config['dig_path'];
|
|
$this->pathSnmpget = $external_tools_config['snmpget_path'];
|
|
$this->pathCustomComm = ($external_tools_config['custom_commands'] ?? ['a' => 'a']);
|
|
}
|
|
}
|
|
|
|
html_print_div(['id' => 'layer_sound_alert']);
|
|
html_print_div(['id' => 'layer_sound_critical']);
|
|
html_print_div(['id' => 'layer_sound_warning']);
|
|
// Make the table for show the form.
|
|
$table = new stdClass();
|
|
$table->width = '100%';
|
|
$table->class = 'filter-table-adv';
|
|
$table->id = 'commandsTable';
|
|
|
|
$table->data = [];
|
|
|
|
$table->data[$i][] = html_print_label_input_block(
|
|
__('Sound for Alert fired'),
|
|
html_print_div(
|
|
[
|
|
'class' => '',
|
|
'content' => html_print_select(
|
|
$sounds,
|
|
'sound_alert',
|
|
$config['sound_alert'],
|
|
'replaySound(\'alert\');',
|
|
'',
|
|
'',
|
|
true
|
|
).html_print_anchor(
|
|
[
|
|
'href' => 'javascript:toggleButton(\'alert\')',
|
|
'content' => html_print_image(
|
|
'images/change-active.svg',
|
|
true,
|
|
[
|
|
'id' => 'button_sound_alert',
|
|
'style' => 'vertical-align: middle; margin-left: 10px',
|
|
'width' => '16',
|
|
'title' => __('Play sound'),
|
|
'class' => 'invert_filter',
|
|
]
|
|
),
|
|
],
|
|
true
|
|
),
|
|
],
|
|
true
|
|
),
|
|
);
|
|
|
|
$table->data[$i++][] = html_print_label_input_block(
|
|
__('Sound for Monitor critical'),
|
|
html_print_div(
|
|
[
|
|
'class' => '',
|
|
'content' => html_print_select(
|
|
$sounds,
|
|
'sound_critical',
|
|
$config['sound_critical'],
|
|
'replaySound(\'critical\');',
|
|
'',
|
|
'',
|
|
true
|
|
).html_print_anchor(
|
|
[
|
|
'href' => 'javascript:toggleButton(\'critical\')',
|
|
'content' => html_print_image(
|
|
'images/change-active.svg',
|
|
true,
|
|
[
|
|
'id' => 'button_sound_critical',
|
|
'style' => 'vertical-align: middle; margin-left: 10px',
|
|
'width' => '16',
|
|
'title' => __('Play sound'),
|
|
'class' => 'invert_filter',
|
|
]
|
|
),
|
|
],
|
|
true
|
|
),
|
|
],
|
|
true
|
|
),
|
|
);
|
|
|
|
$table->data[$i++][] = html_print_label_input_block(
|
|
__('Sound for Monitor warning'),
|
|
html_print_div(
|
|
[
|
|
'class' => '',
|
|
'content' => html_print_select(
|
|
$sounds,
|
|
'sound_warning',
|
|
$config['sound_warning'],
|
|
'replaySound(\'warning\');',
|
|
'',
|
|
'',
|
|
true
|
|
).html_print_anchor(
|
|
[
|
|
'href' => 'javascript:toggleButton(\'warning\')',
|
|
'content' => html_print_image(
|
|
'images/change-active.svg',
|
|
true,
|
|
[
|
|
'id' => 'button_sound_warning',
|
|
'style' => 'vertical-align: middle; margin-left: 10px',
|
|
'width' => '16',
|
|
'title' => __('Play sound'),
|
|
'class' => 'invert_filter',
|
|
]
|
|
),
|
|
],
|
|
true
|
|
),
|
|
],
|
|
true
|
|
),
|
|
);
|
|
|
|
$table->data[$i][] = html_print_label_input_block(
|
|
__('Custom graphviz directory'),
|
|
html_print_input_text(
|
|
'graphviz_bin_dir',
|
|
$config['graphviz_bin_dir'],
|
|
'',
|
|
25,
|
|
255,
|
|
true
|
|
)
|
|
);
|
|
|
|
$table->data[$i++][] = html_print_label_input_block(
|
|
__('Snmpget path'),
|
|
html_print_input_text('snmpget_path', $this->pathSnmpget, '', 40, 255, true)
|
|
);
|
|
|
|
$table->data[$i][] = html_print_label_input_block(
|
|
__('Traceroute path'),
|
|
html_print_input_text('traceroute_path', $this->pathTraceroute, '', 40, 255, true)
|
|
);
|
|
$table->data[$i++][] = html_print_label_input_block(
|
|
__('Ping path'),
|
|
html_print_input_text('ping_path', $this->pathPing, '', 40, 255, true)
|
|
);
|
|
|
|
$table->data[$i][] = html_print_label_input_block(
|
|
__('Nmap path'),
|
|
html_print_input_text('nmap_path', $this->pathNmap, '', 40, 255, true)
|
|
);
|
|
$table->data[$i++][] = html_print_label_input_block(
|
|
__('Dig path'),
|
|
html_print_input_text('dig_path', $this->pathDig, '', 40, 255, true)
|
|
);
|
|
|
|
$table->data[$i][0] = html_print_div(
|
|
[
|
|
'class' => 'title_custom_commands bolder float-left',
|
|
'content' => '<label>'.__('Custom commands').'</label>',
|
|
],
|
|
true
|
|
);
|
|
$table->data[$i++][0] .= html_print_div(
|
|
[
|
|
'id' => 'add_button_custom_command',
|
|
'content' => html_print_image(
|
|
'images/plus@svg.svg',
|
|
true,
|
|
[
|
|
'title' => __('Add new custom command'),
|
|
'onclick' => 'manageCommandLines(event)',
|
|
'id' => 'img_add_button_custom_command',
|
|
'class' => 'main_menu_icon invert_filter',
|
|
|
|
]
|
|
),
|
|
],
|
|
true
|
|
);
|
|
|
|
$table->data[$i][0] = '<div><label>'.__('Command').'</label></div>';
|
|
$table->data[$i++][1] = '<div style="flex-direction: row;justify-content: flex-start;"><label>'.__('Parameters').'</label>'.ui_print_help_tip(__('Adding `_address_` macro will use agent\'s IP when perform the execution'), true, '', false, 'margin-top: 2px').'</div>';
|
|
|
|
$y = 1;
|
|
$iRow = $i;
|
|
|
|
if (empty($this->pathCustomComm) === true) {
|
|
$table->rowid[$iRow] = 'custom_row_'.$y;
|
|
|
|
$table->data[$iRow][0] = $this->customCommandPair('command', $y);
|
|
$table->data[$iRow][1] = $this->customCommandPair('params', $y);
|
|
$table->data[$iRow][2] = $this->customCommandPair('delete', $y);
|
|
} else {
|
|
foreach ($this->pathCustomComm as $command) {
|
|
// Fill the fields.
|
|
$customCommand = ($command['command_custom'] ?? '');
|
|
$customParams = ($command['params_custom'] ?? '');
|
|
// Attach the fields.
|
|
$table->rowid[$iRow] = 'custom_row_'.$y;
|
|
$table->data[$iRow][0] = $this->customCommandPair('command', $y, $customCommand);
|
|
$table->data[$iRow][1] = $this->customCommandPair('params', $y, $customParams);
|
|
$table->data[$iRow][2] = $this->customCommandPair('delete', $y);
|
|
// Add another command.
|
|
$y++;
|
|
$iRow++;
|
|
}
|
|
}
|
|
|
|
$form = '<form class="max_floating_element_size" id="form_setup" method="POST" >';
|
|
$form .= '<fieldset>';
|
|
$form .= '<legend>'.__('Options').'</legend>';
|
|
$form .= html_print_input_hidden('update_paths', 1, true);
|
|
$form .= html_print_table($table, true);
|
|
$form .= '</fieldset>';
|
|
$form .= '</form>';
|
|
|
|
html_print_action_buttons(
|
|
html_print_submit_button(
|
|
__('Update'),
|
|
'update_button',
|
|
false,
|
|
[
|
|
'icon' => 'update',
|
|
'form' => 'form_setup',
|
|
],
|
|
true
|
|
)
|
|
);
|
|
|
|
echo $form;
|
|
}
|
|
|
|
|
|
/**
|
|
* Prints the custom command fields.
|
|
*
|
|
* @param string $type Type of field.
|
|
* @param integer $index Control index.
|
|
* @param string $value Value of this field.
|
|
*
|
|
* @return string
|
|
*/
|
|
private function customCommandPair($type, $index=0, $value='')
|
|
{
|
|
$output = '';
|
|
|
|
switch ($type) {
|
|
case 'command':
|
|
case 'params':
|
|
$output = html_print_input_text(
|
|
$type.'_custom_'.$index,
|
|
$value,
|
|
'',
|
|
40,
|
|
255,
|
|
true
|
|
);
|
|
break;
|
|
|
|
case 'delete':
|
|
$output = html_print_div(
|
|
[
|
|
'id' => 'delete_button_custom_'.$index,
|
|
'content' => html_print_image(
|
|
'images/delete.svg',
|
|
true,
|
|
[
|
|
'title' => __('Delete this custom command'),
|
|
'onclick' => 'manageCommandLines(event)',
|
|
'id' => 'img_delete_button_custom_'.$index,
|
|
'class' => 'main_menu_icon invert_filter',
|
|
]
|
|
),
|
|
],
|
|
true
|
|
);
|
|
break;
|
|
|
|
default:
|
|
// Do none.
|
|
break;
|
|
}
|
|
|
|
return $output;
|
|
}
|
|
|
|
|
|
/**
|
|
* Print the form for use the external tools.
|
|
*
|
|
* @return void
|
|
*/
|
|
private function agentExternalToolsForm()
|
|
{
|
|
global $config;
|
|
|
|
$principal_ip = db_get_sql(
|
|
sprintf(
|
|
'SELECT direccion FROM tagente WHERE id_agente = %d',
|
|
$this->id_agente
|
|
)
|
|
);
|
|
|
|
$list_address = db_get_all_rows_sql(
|
|
sprintf(
|
|
'SELECT id_a FROM taddress_agent WHERE id_agent = %d',
|
|
$this->id_agente
|
|
)
|
|
);
|
|
foreach ($list_address as $address) {
|
|
$ids[] = join(',', $address);
|
|
}
|
|
|
|
// Must be an a IP at least for work.
|
|
if (empty($ids) === true) {
|
|
ui_print_message(__('The agent doesn`t have an IP yet'), 'error', true);
|
|
return;
|
|
}
|
|
|
|
$ips = db_get_all_rows_sql(
|
|
sprintf(
|
|
'SELECT ip FROM taddress WHERE id_a IN (%s)',
|
|
join(',', $ids)
|
|
)
|
|
);
|
|
|
|
// Make the data for show in table.
|
|
$ipsSelect = array_reduce(
|
|
$ips,
|
|
function ($carry, $item) {
|
|
$carry[$item['ip']] = $item['ip'];
|
|
return $carry;
|
|
}
|
|
);
|
|
|
|
// Get the list of available commands.
|
|
$commandList = [
|
|
COMMAND_TRACEROUTE => __('Traceroute'),
|
|
COMMAND_PING => __('Ping host & Latency'),
|
|
COMMAND_SNMP => __('SNMP Interface status'),
|
|
COMMAND_NMAP => __('Basic TCP Port Scan'),
|
|
COMMAND_DIGWHOIS => __('DiG/Whois Lookup'),
|
|
];
|
|
|
|
// Adding custom commands.
|
|
$tempCustomCommandsList = json_decode(io_safe_output($config['external_tools_config']), true);
|
|
$customCommandsList = $tempCustomCommandsList['custom_commands'];
|
|
|
|
foreach ($customCommandsList as $customCommandKey => $customCommandValue) {
|
|
$commandList[$customCommandKey] = $customCommandKey;
|
|
}
|
|
|
|
// Form table.
|
|
$table = new StdClass();
|
|
$table->class = 'fixed_filter_bar filter-table-adv pdd_15px';
|
|
$table->id = 'externalToolTable';
|
|
$table->size[0] = '25%';
|
|
$table->size[1] = '25%';
|
|
$table->size[2] = '25%';
|
|
$table->size[3] = '25%';
|
|
$table->colspan = [];
|
|
$table->colspan[1][0] = 4;
|
|
// $table->cellclass[0][2] = 'snmpcolumn';
|
|
// $table->cellclass[0][2] = 'snmpcolumn';
|
|
// $table->cellclass[0][3] = 'snmpcolumn';
|
|
// $table->cellclass[0][3] = 'snmpcolumn';
|
|
$table->data = [];
|
|
|
|
$table->data[0][0] = html_print_label_input_block(
|
|
__('Operation'),
|
|
html_print_select(
|
|
$commandList,
|
|
'operation',
|
|
$this->operation,
|
|
'mostrarColumns(this.value)',
|
|
__('Please select'),
|
|
0,
|
|
true,
|
|
false,
|
|
true,
|
|
'w100p',
|
|
false,
|
|
'width: 100%;'
|
|
)
|
|
);
|
|
|
|
$table->data[0][1] = html_print_label_input_block(
|
|
__('IP Adress'),
|
|
html_print_select(
|
|
$ipsSelect,
|
|
'select_ips',
|
|
$principal_ip,
|
|
'',
|
|
'',
|
|
0,
|
|
true,
|
|
false,
|
|
true,
|
|
'w100p',
|
|
false,
|
|
'width: 100%;'
|
|
)
|
|
);
|
|
|
|
$table->data[0][2] = html_print_label_input_block(
|
|
__('SNMP Version'),
|
|
html_print_select(
|
|
[
|
|
'1' => 'v1',
|
|
'2c' => 'v2c',
|
|
],
|
|
'select_version',
|
|
$this->snmp_version,
|
|
'',
|
|
'',
|
|
0,
|
|
true,
|
|
false,
|
|
true,
|
|
'w100p',
|
|
false,
|
|
'width: 100%;'
|
|
),
|
|
['div_class' => 'snmpcolumn']
|
|
);
|
|
|
|
$table->data[0][3] = html_print_label_input_block(
|
|
__('SNMP Community'),
|
|
html_print_input_text(
|
|
'community',
|
|
$this->community,
|
|
'',
|
|
50,
|
|
255,
|
|
true,
|
|
false,
|
|
false,
|
|
'',
|
|
'w100p'
|
|
),
|
|
['div_class' => 'snmpcolumn']
|
|
);
|
|
|
|
$table->data[1][0] = html_print_submit_button(
|
|
__('Execute'),
|
|
'submit',
|
|
false,
|
|
[
|
|
'icon' => 'cog',
|
|
'mode' => 'mini',
|
|
'class' => 'float-right mrgn_right_10px',
|
|
],
|
|
true
|
|
);
|
|
|
|
// Output string.
|
|
$output = '';
|
|
$output .= '<form name="actionbox" method="post">';
|
|
$output .= html_print_table($table, true);
|
|
$output .= '</form>';
|
|
|
|
html_print_div(
|
|
[
|
|
'class' => '',
|
|
'style' => 'width: 100%',
|
|
'content' => $output,
|
|
]
|
|
);
|
|
|
|
if ($this->operation !== 0) {
|
|
// Execute form.
|
|
echo $this->externalToolsExecution($this->operation, $this->ip, $this->community, $this->snmp_version);
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
* Searchs for command.
|
|
*
|
|
* @param string $command Command.
|
|
*
|
|
* @return string Path.
|
|
*/
|
|
private function whereIsTheCommand(string $command)
|
|
{
|
|
global $config;
|
|
|
|
if (isset($config['external_tools_config']) === true) {
|
|
$external_tools_config = json_decode(io_safe_output($config['external_tools_config']), true);
|
|
$traceroute_path = $external_tools_config['traceroute_path'];
|
|
$ping_path = $external_tools_config['ping_path'];
|
|
$nmap_path = $external_tools_config['nmap_path'];
|
|
$dig_path = $external_tools_config['dig_path'];
|
|
$snmpget_path = $external_tools_config['snmpget_path'];
|
|
|
|
switch ($command) {
|
|
case 'traceroute':
|
|
if (empty($traceroute_path) === false) {
|
|
return $traceroute_path;
|
|
}
|
|
break;
|
|
|
|
case 'ping':
|
|
if (empty($ping_path) === false) {
|
|
return $ping_path;
|
|
}
|
|
break;
|
|
|
|
case 'nmap':
|
|
if (empty($nmap_path) === false) {
|
|
return $nmap_path;
|
|
}
|
|
break;
|
|
|
|
case 'dig':
|
|
if (empty($dig_path) === false) {
|
|
return $dig_path;
|
|
}
|
|
break;
|
|
|
|
case 'snmpget':
|
|
if (empty($snmpget_path) === false) {
|
|
return $snmpget_path;
|
|
}
|
|
break;
|
|
|
|
case 'whois':
|
|
if (empty($snmpget_path) === false) {
|
|
return $snmpget_path;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
return null;
|
|
}
|
|
}
|
|
|
|
ob_start();
|
|
system('whereis '.$command);
|
|
$output = ob_get_clean();
|
|
$result = explode(':', $output);
|
|
$result = trim($result[1]);
|
|
|
|
if (empty($result) === true) {
|
|
return null;
|
|
}
|
|
|
|
$result = explode(' ', $result);
|
|
$fullpath = trim($result[0]);
|
|
|
|
if (file_exists($fullpath) === false) {
|
|
return null;
|
|
}
|
|
|
|
return $fullpath;
|
|
}
|
|
|
|
|
|
/**
|
|
* Create the output for show.
|
|
*
|
|
* @param string $command Command for execute.
|
|
* @param string $caption Description of the execution.
|
|
*
|
|
* @return void
|
|
*/
|
|
private function performExecution(string $command='', string $caption='')
|
|
{
|
|
$output = '<div class="white_box max_floating_element_size no_border">';
|
|
|
|
try {
|
|
// If caption is not added, don't show anything.
|
|
if (empty($caption) === false) {
|
|
$output .= sprintf('<h3 class="external_tools_title">%s</h3>', $caption);
|
|
}
|
|
|
|
$output .= '<pre class="external_tools_output">';
|
|
|
|
// Only perform an execution if command is passed. Avoid errors.
|
|
if (empty($command) === false) {
|
|
$resultCode = 0;
|
|
ob_start();
|
|
system(io_safe_output($command), $resultCode);
|
|
$output .= ob_get_clean();
|
|
} else {
|
|
$output .= __('Command not response');
|
|
}
|
|
|
|
$output .= '</pre></div>';
|
|
|
|
if ($resultCode !== 0) {
|
|
throw new Exception(
|
|
sprintf(
|
|
'%s %s',
|
|
__('The command failed and obtained the return code:'),
|
|
$resultCode
|
|
),
|
|
1
|
|
);
|
|
}
|
|
} catch (\Throwable $th) {
|
|
$output = sprintf(
|
|
'%s %s',
|
|
$th->getMessage(),
|
|
__('Something went wrong while perform the execution. Please check the configuration.')
|
|
);
|
|
}
|
|
|
|
echo $output;
|
|
}
|
|
|
|
|
|
/**
|
|
* Execute external tools action.
|
|
*
|
|
* @param mixed $operation Operation.
|
|
* @param string $ip Ip.
|
|
* @param string $community Community.
|
|
* @param string $snmp_version SNMP version.
|
|
*
|
|
* @return string String formed result of execution.
|
|
*/
|
|
public function externalToolsExecution($operation, string $ip, string $community, string $snmp_version)
|
|
{
|
|
$output = '';
|
|
|
|
echo '<div class="white_box max_floating_element_size no_border pdd_15px">';
|
|
|
|
if (validate_address($ip) === false) {
|
|
$output .= ui_print_error_message(
|
|
__('The ip or dns name entered cannot be resolved'),
|
|
'',
|
|
true
|
|
);
|
|
} else {
|
|
if ((int) $operation === COMMAND_SNMP) {
|
|
$snmp_obj = [
|
|
'ip_target' => $ip,
|
|
'snmp_version' => $snmp_version,
|
|
'snmp_community' => $community,
|
|
'format' => '-Oqn',
|
|
];
|
|
|
|
echo '<h3 class="external_tools_title">'.__('SNMP information for ').$ip.'</h3>';
|
|
|
|
$snmp_obj['base_oid'] = '.1.3.6.1.2.1.1.3.0';
|
|
$result = get_h_snmpwalk($snmp_obj);
|
|
if (empty($result) === true) {
|
|
ui_print_error_message(__('Target unreachable.'));
|
|
return null;
|
|
} else {
|
|
echo '<h4>'.__('Uptime').'</h4>';
|
|
echo '<pre>';
|
|
echo array_pop($result);
|
|
echo '</pre>';
|
|
}
|
|
|
|
$snmp_obj['base_oid'] = '.1.3.6.1.2.1.1.1.0';
|
|
$result = get_h_snmpwalk($snmp_obj);
|
|
if (empty($result) === true) {
|
|
ui_print_error_message(__('Target unreachable.'));
|
|
return null;
|
|
} else {
|
|
echo '<h4>'.__('Device info').'</h4>';
|
|
echo '<pre>';
|
|
echo array_pop($result);
|
|
echo '</pre>';
|
|
}
|
|
|
|
echo '<h4>Interface Information</h4>';
|
|
|
|
$table = new StdClass();
|
|
$table->class = 'databox';
|
|
$table->head = [];
|
|
$table->head[] = __('Interface');
|
|
$table->head[] = __('Status');
|
|
|
|
$i = 0;
|
|
|
|
$base_oid = '.1.3.6.1.2.1.2.2.1';
|
|
$idx_oids = '.1';
|
|
$names_oids = '.2';
|
|
$status_oids = '.8';
|
|
|
|
$snmp_obj['base_oid'] = $base_oid.$idx_oids;
|
|
$idx = get_h_snmpwalk($snmp_obj);
|
|
|
|
$snmp_obj['base_oid'] = $base_oid.$names_oids;
|
|
$names = get_h_snmpwalk($snmp_obj);
|
|
|
|
$snmp_obj['base_oid'] = $base_oid.$status_oids;
|
|
$statuses = get_h_snmpwalk($snmp_obj);
|
|
|
|
foreach ($idx as $k => $v) {
|
|
$index = str_replace($base_oid.$idx_oids, '', $k);
|
|
$name = $names[$base_oid.$names_oids.$index];
|
|
|
|
$status = $statuses[$base_oid.$status_oids.$index];
|
|
|
|
$table->data[$i][0] = $name;
|
|
$table->data[$i++][1] = $status;
|
|
}
|
|
|
|
html_print_table($table);
|
|
} else if ((int) $operation === COMMAND_DIGWHOIS) {
|
|
echo '<h3 class="external_tools_title">'.__('Domain and IP information for ').$ip.'</h3>';
|
|
|
|
// Dig execution.
|
|
$dig = $this->whereIsTheCommand('dig');
|
|
if (empty($dig) === true) {
|
|
ui_print_error_message(__('Dig executable does not exist.'));
|
|
} else {
|
|
$dig .= ' '.$ip;
|
|
$this->performExecution($dig);
|
|
}
|
|
|
|
// Whois execution.
|
|
$whois = $this->whereIsTheCommand('whois');
|
|
if (empty($whois) === true) {
|
|
ui_print_error_message(__('Whois executable does not exist.'));
|
|
} else {
|
|
$whois .= ' '.$ip;
|
|
$this->performExecution($whois);
|
|
}
|
|
|
|
return;
|
|
} else {
|
|
switch ($operation) {
|
|
case COMMAND_TRACEROUTE:
|
|
$command = $this->whereIsTheCommand('traceroute');
|
|
if (empty($command) === true) {
|
|
ui_print_error_message(__('Traceroute executable does not exist.'));
|
|
return;
|
|
} else {
|
|
$stringCommand = __('Traceroute to %s', $ip);
|
|
$executeCommand = sprintf('%s %s', $command, $ip);
|
|
}
|
|
break;
|
|
|
|
case COMMAND_PING:
|
|
$command = $this->whereIsTheCommand('ping');
|
|
if (empty($command) === true) {
|
|
ui_print_error_message(__('Ping executable does not exist.'));
|
|
return;
|
|
} else {
|
|
$stringCommand = __('Ping to %s', $ip);
|
|
$executeCommand = sprintf('%s -c 5 %s', $command, $ip);
|
|
}
|
|
break;
|
|
|
|
case COMMAND_NMAP:
|
|
$command = $this->whereIsTheCommand('nmap');
|
|
if (empty($command) === true) {
|
|
ui_print_error_message(__('Nmap executable does not exist.'));
|
|
return;
|
|
} else {
|
|
$stringCommand = __('Basic TCP Scan on %s', $ip);
|
|
$executeCommand = sprintf('%s -F %s', $command, $ip);
|
|
}
|
|
break;
|
|
|
|
default:
|
|
global $config;
|
|
|
|
$tempCustomCommandsList = json_decode(io_safe_output($config['external_tools_config']), true);
|
|
$customCommandsList = $tempCustomCommandsList['custom_commands'];
|
|
// If the selected operation exists or not.
|
|
if (isset($customCommandsList[$operation]) === true) {
|
|
// Setting custom commands.
|
|
$customCommand = $customCommandsList[$operation]['command_custom'];
|
|
$customParams = $customCommandsList[$operation]['params_custom'];
|
|
// If '_address_' macro is setted, attach to execution.
|
|
if ((bool) preg_match('/_address_/', $customParams) === true) {
|
|
$customParams = preg_replace('/_address_/', $ip, $customParams);
|
|
$stringCommand = __('Performing %s execution on %s', $customCommand, $ip);
|
|
} else {
|
|
$stringCommand = __('Performing %s execution', $customCommand);
|
|
}
|
|
|
|
$executeCommand = sprintf('%s %s', $customCommand, $customParams);
|
|
} else {
|
|
// Nothing to do.
|
|
$stringCommand = '';
|
|
$executeCommand = '';
|
|
}
|
|
break;
|
|
}
|
|
|
|
$this->performExecution($executeCommand, $stringCommand);
|
|
}
|
|
}
|
|
|
|
echo '</div>';
|
|
return $output;
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Return sounds path.
|
|
*
|
|
* @return string Path.
|
|
*/
|
|
private function getSounds()
|
|
{
|
|
global $config;
|
|
|
|
$return = [];
|
|
|
|
$files = scandir($config['homedir'].'/include/sounds');
|
|
|
|
foreach ($files as $file) {
|
|
if (strstr($file, 'wav') !== false) {
|
|
$return['include/sounds/'.$file] = $file;
|
|
}
|
|
}
|
|
|
|
return $return;
|
|
}
|
|
|
|
|
|
/**
|
|
* Load the JS and attach
|
|
*
|
|
* @return string Formed script string.
|
|
*/
|
|
private function loadJS()
|
|
{
|
|
$str = '';
|
|
ob_start();
|
|
?>
|
|
<script type='text/javascript'>
|
|
$(document).ready(function(){
|
|
let custom_command = $('#add_button_custom_command');
|
|
|
|
mostrarColumns($('#operation :selected').val());
|
|
});
|
|
|
|
// Manage network component oid field generation.
|
|
function manageCommandLines(event) {
|
|
let buttonId = event.target.id;
|
|
let parentId = event.target.parentElement.id;
|
|
let action = parentId.split('_');
|
|
action = action[0];
|
|
|
|
if (action === 'add') {
|
|
let fieldLines = $("tr[id*=custom_row_]").length;
|
|
let fieldLinesAdded = fieldLines + 1;
|
|
|
|
// Ensure the first erase button is clickable
|
|
$("#img_delete_button_custom_1")
|
|
.attr("style", "opacity: 1;")
|
|
.addClass("clickable");
|
|
|
|
$("#custom_row_" + fieldLines).after(
|
|
$("#custom_row_" + fieldLines)
|
|
.clone()
|
|
.attr("id", 'custom_row_'+fieldLinesAdded)
|
|
);
|
|
let rowCommand = Array.from($("#custom_row_"+fieldLinesAdded).children());
|
|
|
|
rowCommand.forEach(function(value, index){
|
|
let thisId = $(value).attr("id");
|
|
let separatedId = thisId.split("-");
|
|
let fieldLinesAddedForNewId = parseInt(separatedId[1]) + 1;
|
|
let thisNewId = separatedId[0] + "-" + fieldLinesAddedForNewId + "-" + separatedId[2];
|
|
// Assignation of new Id for this cell
|
|
$(value).attr("id", thisNewId);
|
|
|
|
// Children text fields.
|
|
if (parseInt(separatedId[2]) === 0) {
|
|
$("#text-command_custom_"+fieldLines, "#"+thisNewId)
|
|
.attr("name", "command_custom_"+fieldLinesAdded)
|
|
.attr("id", "text-command_custom_"+fieldLinesAdded)
|
|
.val('');
|
|
} else if (parseInt(separatedId[2]) === 1) {
|
|
$("#text-params_custom_"+fieldLines, "#"+thisNewId)
|
|
.attr("id", "text-params_custom_"+fieldLinesAdded)
|
|
.attr("name", "params_custom_"+fieldLinesAdded)
|
|
.val('');
|
|
} else if (parseInt(separatedId[2]) === 2) {
|
|
$("#img_delete_button_custom_"+fieldLines, "#"+thisNewId)
|
|
.attr("id", "img_delete_button_custom_"+fieldLinesAdded);
|
|
}
|
|
});
|
|
|
|
} else if (action === 'delete') {
|
|
let buttonIdDivided = buttonId.split("_");
|
|
let lineNumber = buttonIdDivided[buttonIdDivided.length-1];
|
|
let lineCount = parseInt($("tr[id*=custom_row_]").length);
|
|
|
|
if (parseInt(lineNumber) >= 1 && lineCount > 1) {
|
|
$("#custom_row_" + lineNumber).remove();
|
|
} else if (lineCount === 1) {
|
|
$("#custom_row_" + lineNumber).find('input').each(function() {
|
|
$(this).val('');
|
|
});
|
|
}
|
|
|
|
if (lineCount === 1) {
|
|
$("[id*=img_delete_button_custom_]")
|
|
.attr("style", "opacity: 0.5;")
|
|
.removeClass("clickable");
|
|
}
|
|
}
|
|
}
|
|
|
|
function mostrarColumns(value) {
|
|
if (parseInt(value) === 3) {
|
|
$('.snmpcolumn').show();
|
|
}
|
|
else {
|
|
$('.snmpcolumn').hide();
|
|
}
|
|
}
|
|
|
|
function toggleButton(type) {
|
|
if ($("#button_sound_" + type).attr('src') == 'images/control_pause_col.png') {
|
|
$("#button_sound_" + type).attr('src', 'images/control_play_col.png');
|
|
$('#layer_sound_' + type).html("");
|
|
}
|
|
else {
|
|
$("#button_sound_" + type).attr('src', 'images/control_pause_col.png');
|
|
$('#layer_sound_' + type).html("<audio src='" + $("#sound_" + type).val() + "' autoplay='true' hidden='true' loop='true'>");
|
|
}
|
|
}
|
|
|
|
function replaySound(type) {
|
|
if ($("#button_sound_" + type).attr('src') == 'images/control_pause_col.png') {
|
|
$('#layer_sound_' + type).html("");
|
|
$('#layer_sound_' + type).html("<audio src='" + $("#sound_" + type).val() + "' autoplay='true' hidden='true' loop='true'>");
|
|
}
|
|
}
|
|
</script>
|
|
<?php
|
|
// Get the JS script.
|
|
$str = ob_get_clean();
|
|
// Return the loaded JS.
|
|
echo $str;
|
|
return $str;
|
|
}
|
|
|
|
|
|
}
|