6

Is there way to switch between user accounts using WinSCP?

When I am using PuTTY, I can use su command to switch users between different accounts.

For an example:

kitis@localhost$
kitis@localhost$ su abc
abc@localhost$

In the same way, when I am using WinSCP, is there a way for me to switch users while I have logged in to a server?

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
KItis
  • 5,476
  • 19
  • 64
  • 112

3 Answers3

8

There is a FAQ for this question on WinSCP site:
How do I change user after login (e.g. su root)?

You need to specify the sudo command in WinSCP session settings, as custom shell (if you are using SCP) or use sudo in custom SFTP server startup command (if you are using SFTP).

Though there are some limitations, notably that you need to configure sudo not to require a password.

See the link for details.

Martin Prikryl
  • 188,800
  • 56
  • 490
  • 992
1

No, it is impossible. When you want to switch user using SCP (WinSCP in your case) your need to relogin. You can't run any commands in SCP-session, just manage files; fnd SCP-protocol itself supports no mechanisms to change current users' id. You must use SSH if you want to have a possibility to change a user in a session.

Igor Chubin
  • 61,765
  • 13
  • 122
  • 144
  • 2
    This not really true. SCP protocol actually supports only transferring of files only, no "managing". On the other hand WinSCP is not really SCP client, so in fact it may allow using `su` command technically speaking (it does not though). And in fact, most people use WinSCP with SFTP, not SCP and that's a completely different story. – Martin Prikryl Mar 24 '14 at 12:57
1

If the user has sudo to another user via SSH. The same sudo to another user works via WinSCP following the below settings. In File Protocol select SCP, pass the hostname, username, and password/key and in advanced settings under SCP/Shell in Shell pass the value as /usr/bin/sudo -u username -i, click on ok and save the settings. Now in Winscp, the user is logged in as the username provided in SCP/Shell.