Is there any linux software to monitor an incoming ssh session. At a previous job I was told that if you ever needed support from Red Hat for example you could have them SSH into your machine and you could watch what they were doing.
I'm in a similar situation where I want to ssh into my friends machine to help him out but I want him to be able to watch what I'm doing for educational purposes and to ensure I don't do anything malicious.
Any suggestions?
Thanks
GNU Screen has this ability, you could allow a specific shell user to only operate through screen.
https://www.linux.com/training-tutorials/using-screen-remote-interaction/
I think screen is what you're after, but if you don't want to sit there watching, and want to "video" a user's session, you can look at sudo shell.
If you set the user up with this as their shell, you can have a complete recording of everything that occurred, and you can the "replay" it back, and watch it when/if you need to.
The only possible downside to this is that the logs can grow very large, for example if they run a command like
find /
, you will have all that recorded too - so you'll probably have to pick which accounts to enable it for rather than doing it globally.As for allowing vendors login access, this is probably perfect, because you have a complete audit trail of everything they did, everything (even backspacing) is recorded and stored for replay.
log_output
is your recorder option for sudoers, andsudoreplay(8)
is your player.As per the
sudoers
man page:In sudoers file, you would put something like this:
Or for group-based logging
See http://www.gratisoft.us/sudo/sudoers.man.html for details.
For a similar thing: Live view of Linux shell commands executed by another user?
I use whowatch on my server.
You can use script command. Build a line in .login or .profile of the user whose ssh session you want to monitor. When he logs in a script / log is generated of his I/O which gives you commands run and the output of those commands. In real time you can just tail the script and watch what the user does in real time.
Unable to paste a link for your referrance but you can just google on the command " script " and you will get the referrances.
You can use kibitz. Quoting from the man page:
On Fedora, it's included in the expect package.
screen or tmux .
tmux sharing is a little easier.