This is a idea for a security. Our employees shall have access to some commands on a linux server but not all. They shall e.g. have the possibility to access a log file (less logfile) or start different commands (shutdown.sh / run.sh).

Background information:

All employees access the server with the same user name: Our product runs with "normal" user permissions, no "installation" is needed. Just unzip it in your user dir and run it. We manage several servers where our application is "installed". On every machine there is a user johndoe. Our employees sometimes need access to the application on command line to access and check log files or to restart the application by hand. Only some people shall have full command line access.

We are using ppk authentication on the server.

It would be great if employee1 can only access the logfile and employee2 can also do X etc...

Solution: As a solution I'll use the command option as stated in the accepted answer. I'll make my own little shell script that will be the only file that can be executed for some employees. The script will offer several commands that can be executed, but no others. I'll use the following parameters in authorized_keys from as stated here:

command="/bin/myscript.sh",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty
ssh-dss AAAAB3....o9M9qz4xqGCqGXoJw= user@host

This is enough security for us. Thanks, community!

link|improve this question

46% accept rate
Is standard Linux ACL permission-based security not sufficient? What extra features do you need? – James Brady Dec 31 '08 at 9:52
@jamesbrady: No. All employees access the server with the same user name (also added to the question). So all users have the same rights. – Marcel Dec 31 '08 at 9:58
1  
That is an awful idea, Marcel. – Vinko Vrsalovic Dec 31 '08 at 10:02
@Vinko, @PEZ: I've added some background informations. Instead of saying "stupid idea" you could provide comments with value. What is in your opinion a better idea? – Marcel Dec 31 '08 at 11:28
1  
I still don't see any excuse on having multiple users share the same username. – Ubersoldat Dec 31 '08 at 11:38
show 1 more comment
feedback

6 Answers

up vote 7 down vote accepted

You can also restrict keys to permissible commands (in the authorized_keys file).

I.e. the user would not log in via ssh and then have a restricted set of commands but rather would only be allowed to execute those commands via ssh (e.g. "ssh somehost bin/showlogfile")

link|improve this answer
That looks interesting. Is it possible to define multiple commands? – Marcel Dec 31 '08 at 10:43
3  
This article gives you a few options for multiple commands using the authorized_keys file: linuxjournal.com/article/8257 – Bash Dec 31 '08 at 17:59
@rd834...: Thanks a lot. I think this gave me a "good" solution... (added to question). I'll accept this answer as "correct". – Marcel Jan 2 '09 at 9:53
1  
The O'Reilly SSH book has an excellent explanation of how to do this, including allowing multiple commands by setting up a script that looks at SSH_ORIGINAL_COMMAND environment variable. oreilly.com/catalog/sshtdg/chapter/ch08.html – Alex Dupuy Nov 11 '11 at 20:28
feedback

What you are looking for is called Restricted Shell. Bash provides such a mode in which users can only execute commands present in their home directories (and they cannot move to other directories), which might be good enough for you.

I've found this thread to be very illustrative, if a bit dated.

link|improve this answer
1  
What if the user does "!/bin/sh" or some such from the less prompt? – PEZ Dec 31 '08 at 11:02
2  
@Ubersoldat: Please grow up and tone down the aggression in all your posts. He was asking whether the restriction only applies to bash or child processes too (and to answer his question, it turns out it doesn't). – flussence Dec 31 '08 at 22:30
A major problem with restricted shell is that to secure it, you must use .profile or .bashrc to restrict the PATH, disable builtins, etc., but those files are only invoked for interactive shells. If a user uses ssh to run a remote command they are not invoked. This allows a user with ssh access to an account with SHELL=/bin/rbash to just do something like "ssh remotehost bash" to get a non-interactive but unrestricted shell. You need SSH forced commands as HD suggested, but this can protect against shell escapes as PEZ asked (once PATH is locked down - it includes /bin:/usr/bin by default). – Alex Dupuy Nov 11 '11 at 18:58
I take that back, bash will invoke .bashrc (not .profile) when running non-interactively under sshd; however, you have to make sure that you set PATH explicitly and disable builtins and aliases in .bashrc - changing to a subdirectory not in/above PATH or .ssh/ or .bashrc is also a good idea. Having any command that can write to arbitrary files will create a problem - these are not always obvious, e.g. sed 'w' command could be used to overwrite .bashrc and break out. A chroot jail will always be safer if you can use it, and ssh forced commands will be more restricted. – Alex Dupuy Nov 11 '11 at 20:17
feedback

You should acquire `rssh', the restricted shell

You can follow the restriction guides mentioned above, they're all rather self-explanatory, and simple to follow. Understand the terms `chroot jail', and how to effectively implement sshd/terminal configurations, and so on.

Being as most of your users access your terminals via sshd, you should also probably look into sshd_conifg, the SSH daemon configuration file, to apply certain restrictions via SSH. Be careful, however. Understand properly what you try to implement, for the ramifications of incorrect configurations are probably rather dire.

link|improve this answer
Note that pizzashack.org/rssh is an excellent (possibly the best) solution for the special case where you want to allow scp/sftp/rdist/rsync/cvs (and don't need access to anything outside a chroot jail) - however, it does not solve the general question of the original poster, who wanted users to be able to view log files and run certain run/shutdown scripts. – Alex Dupuy Nov 11 '11 at 18:45
feedback

Google is our friend. Among the first hits:

HTH

link|improve this answer
1  
chroot and jail are nice tools. But for my problem I don't think it is a solution. I don't want to hide other directories than the home dir, I want to restrict the access to files in the user home dir! – Marcel Jan 2 '09 at 10:00
feedback

You might want to look at setting up a jail. link text

link|improve this answer
feedback

Another way of looking at this is using POSIX ACLs, it needs to be supported by your file system, however you can have fine-grained tuning of all commands in linux the same way you have the same control on Windows (just without the nicer UI). link

Another thing to look into is PolicyKit.

You'll have to do quite a bit of googling to get everything working as this is definitely not a strength of Linux at the moment.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.