restricting access


 
Thread Tools Search this Thread
Operating Systems Solaris restricting access
# 1  
Old 08-09-2004
restricting access

Hi All,

I'm on Solaris 8, I need to provide Read-only access to a user to 2 directories only.
Using rsh (restricted shell) as the user's login shell, I can restrict the user's access to a certain directory only, but how can I set in such a way that the user can access only the 2 directories mentioned.
Need your expert advice... thanks in advance.


Cheers,
~Minaz
# 2  
Old 08-10-2004
Hello,

Not sure to understand, what is the man pages of the restricted shell you mention?
# 3  
Old 08-10-2004
Using rsh (Restricted Shell ) I can restrict a user to only one directory..i.e. the user cannot change directory

userid:x:5012:1: Description:/logs/log7:/usr/lib/rsh

$ echo $SHELL
/usr/lib/rsh
$ cd
cd: restricted


but,
Is there a way by which you can provide access to a user to only two directories & not just one.

Hope I'm clear
# 4  
Old 08-11-2004
I can't find a nice way to do it... so here is an odd way (tested on solaris box, it works).

You have to create 3 user accounts per "real world" user, eg:

user1:x:200:200:comment:/:/usr/local/bin/my_way
dummy1:x:201:200:comment:/tmp/1:/usr/lib/rsh
dummy2:x:202:200:comment:/tmp/2:/usr/lib/rsh

Dummy1 and dummy2 homes dir are the two directories you are interested with and there default shell is the restricted sh.
User1 shell default is not a shell but a script that could look likes

#!/bin/ksh -p
IFS="
"
print Where do you want to go today?
select path in /tmp/1 /tmp/2 exit; do
[[ ${path} = "exit" ]] && exit
exec su - dummy$REPLY
done

So the user1 is in fact the dummy user that allow someone logged as user1 to switch or to /tmp/1 or /tmp/2

To me the big drawback of this is the fact that depending the directory the user is the uid change. Moreover you have to type users passwd each time you switch (If you implement this "horrible" thing I would suggest you to also implement sudoers capabilties).

Also, perhaps someone off the "Shell Programming and Scripting" forum could help you in case your stuff is possible using rsh or rksh

good luck!
# 5  
Old 08-12-2004
Thanks for your opinion.

~Minaz
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

Restricting commands & access

Dear all, I am administering a DC environment of over 100+ Solaris servers used by various teams including Databases. Every user created on the node belonging to databases is assigned group staff(10) . I want that all users belonging to staff should NOT be able to execute certain system... (6 Replies)
Discussion started by: Junaid Subhani
6 Replies

2. UNIX for Dummies Questions & Answers

Restricting SFTP access

Hello, I am using MySecureShell to chroot all sftp accesses. The problem that I have is that my boss does not want root to be able to use sftp. Root should still be able to ssh. Any ideas? (2 Replies)
Discussion started by: mojoman
2 Replies

3. Solaris

Restricting CPU Core Access

Hi all. I've had a quick look around but cant see anything exactly matching my requirements. I have a new T2000 running S10. Im looking to restrict the no. cores that a S10 non-global zone can use to 1 only. The box is single CPU but 8core. I want to do this to save on some software... (4 Replies)
Discussion started by: boneyard
4 Replies

4. Solaris

Restricting FTP access for a particular directory

Dear All, I have created a user called "x" who is allowed only to FTP and it is working fine. Here my problem is, I want to give access to a particular directory say for eg:- /dump/test directory. I don't find any option in the useradd command to restrict access to this particular directory only... (1 Reply)
Discussion started by: Vijayakumarpc
1 Replies

5. UNIX for Advanced & Expert Users

Restricting access to code

Hi All, I am facing a problem, regarding code security on a server. We have configured a server which contains our code (ear present in jboss/server/xyz/deploy) in it, and need to bind the code to the server itself so that no one can take the code out of the. the problem is that the password of... (3 Replies)
Discussion started by: akshay61286
3 Replies

6. Solaris

restricting access to a server

We want to secure access to a server by restricting the number of users who can login to it. Our users are NIS users. Only few of them can telnet/ssh this server. Do you have any idea on how to implement that? thanks. (1 Reply)
Discussion started by: melanie_pfefer
1 Replies

7. UNIX for Advanced & Expert Users

restricting root access

I'm the admin in a shop in which my developers have and use the root account, all UNIX newbies. I've been unable to convince management myself that this is an unacceptable practice. I've looked in a couple books I have and can't find any chapters, discussions, etc that make the argument that... (2 Replies)
Discussion started by: keith.m
2 Replies

8. UNIX for Dummies Questions & Answers

Restricting access to a machine by IP Address

I have a need to allow only certain IP addresses to access a machine running solaris 9. I am not sure how this can be accomplished. Thanks in advance for your help. Patch (2 Replies)
Discussion started by: patch
2 Replies

9. UNIX for Dummies Questions & Answers

Restricting access

I need to create a user that only has access to 1 directory (e.g. /vol/mita/test). The user needs to be able to rsh into that directory to run a script. The user should not be able to navigate to any other directories above /vol/mita/test. Any help would be appreciated! (4 Replies)
Discussion started by: ngagne
4 Replies

10. Cybersecurity

restricting access...

restricted access... Hi I need to restrict users shell access to only $HOME under /home for each user. I don't want them getting out of their own directories. From what I understand chroot is something I could use, but I want to avoid this since it involves creating symbolic links to a number... (9 Replies)
Discussion started by: alwayslearningunix
9 Replies
Login or Register to Ask a Question