From 308bc3c54fbdfd18aa0f8611f8f34691a441f65c Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 4 Sep 2010 17:00:58 +0200 Subject: [PATCH] A more secure way to change the password with sudo. --- src/aute_smbldap.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/aute_smbldap.c b/src/aute_smbldap.c index 29710c6..9dd1dee 100644 --- a/src/aute_smbldap.c +++ b/src/aute_smbldap.c @@ -325,7 +325,8 @@ static gchar g_warning ("Errore durante il cambio della password: impossibile ottenere l'host."); return user_dn; } - host_ssh = parts[3]; g_message("HOST SSH: %s",host_ssh); + host_ssh = parts[3]; + /*g_message("HOST SSH: %s",host_ssh);*/ if (ssh_options_set (session, SSH_OPTIONS_HOST, host_ssh) < 0) { ssh_disconnect (session); @@ -371,8 +372,8 @@ static gchar return user_dn; } - gchar *command = g_strdup_printf ("echo -e \\\"%s\\n\\\" | sudo -S -s \"echo -e \\\"%s\\n%s\\\" | /usr/sbin/smbldap-passwd \\\"%s\\\"\"", password, password_nuova, password_nuova, utente); - g_message ("COMMAND: %s", command); + gchar *command = g_strdup_printf ("echo -e \"%s\\n\" | sudo -k -S echo -e \"%s\\\\n%s\\\\n\" | sudo /usr/sbin/smbldap-passwd \"%s\"", password, password_nuova, password_nuova, utente); + /*g_message ("COMMAND: %s", command);*/ rc = channel_request_exec (channel, command); if (rc < 0) { @@ -389,7 +390,7 @@ static gchar rc = channel_read (channel, buf, sizeof (buf), 0); if (rc > 0) { - fwrite (buf, 1, rc, stdout); + /*fwrite (buf, 1, rc, stdout);*/ } } } while (rc > 0); -- 2.49.0