diff --git a/pandora_server/ChangeLog b/pandora_server/ChangeLog index b2b15c3f82..e33bc8435f 100644 --- a/pandora_server/ChangeLog +++ b/pandora_server/ChangeLog @@ -1,3 +1,10 @@ +2012-10-23 Dario Rodriguez + + * util/recon_scripts/snmpdevices.pl: Fixed an error in snmpdevices.pl + which has a double safe_input. + + MERGED FROM 4.0.2 + 2012-10-10 Junichi Satoh * lib/PandoraFMS/Core.pm: Fixed bug: periodic (monthly and weekly) diff --git a/pandora_server/util/recon_scripts/snmpdevices.pl b/pandora_server/util/recon_scripts/snmpdevices.pl index a86eab5309..918790e440 100755 --- a/pandora_server/util/recon_scripts/snmpdevices.pl +++ b/pandora_server/util/recon_scripts/snmpdevices.pl @@ -107,8 +107,9 @@ sub process_module_snmp ($$$$$$$$$){ # id_modulo = 2 for snmp modules $parameters{'id_modulo'} = 2; - my $module_id = get_agent_module_id($dbh, $parameters{'nombre'}, $parameters{'id_agente'}); - + #get_agent_module_id uses safe_input for module name so don't pass this variable using safe input!!! + my $module_id = get_agent_module_id($dbh, $module_name, $parameters{'id_agente'}); + if($module_id == -1) { pandora_create_module_from_hash ($conf, \%parameters, $dbh); }