Fixed problems with password in WMI explorer when use specials characters. GitHub ticket: #60

This commit is contained in:
m-lopez-f 2016-09-05 08:54:01 +02:00
parent 455d7bad52
commit 15cf2b6f0b
1 changed files with 1 additions and 2 deletions

View File

@ -27,10 +27,9 @@ check_login ();
$ip_target = (string) get_parameter ('ip_target', $ipAgent); // Host
$plugin_user = (string) get_parameter ('plugin_user', 'Administrator'); // Username
$plugin_pass = get_parameter('plugin_pass', ''); // Password
$plugin_pass = io_safe_output(get_parameter('plugin_pass', '')); // Password
$tcp_send = (string) get_parameter ('tcp_send'); // Namespace
//See if id_agente is set (either POST or GET, otherwise -1
$id_agent = $idAgent;