Pls. help with sudoers file...


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Pls. help with sudoers file...
# 1  
Old 10-01-2013
Pls. help with sudoers file...

Hi,

I was asked to create sudoers file for operation team so they can sudo as another user and run few commands.

I have updated /etc/sudoers file.

Code:
 
User_Alias LEVEL1 = JamesF, dennisW, juanC, steveS,
 
Cmnd_Alias SU_PROD=/bin/su prod, /bin/su - prod
Cmnd_Alias SU_NYOP=/bin/su nyop, /bin/su - nyop
Cmnd_Alias SU_NEWSPROD=/bin/su newsprod, /bin/su - newsprod

LEVEL1 ALL= SU_PROD
LEVEL1 ALL= SU_NYOP
LEVEL1 ALL= SU_NEWSPROD

when I run the command, I get this error message.


Code:
 
sudo prod /bin/su prod
[No Valid Runas is Matched]
sudo: prod:command not found.
Check the path or specify path plus command.

# 2  
Old 10-01-2013
Try:

Code:
sudo /bin/su - prod

# 3  
Old 10-02-2013
Quote:
Originally Posted by samnyc
when I run the command, I get this error message.

Code:
 
[No Valid Runas is Matched]

This is because you didn't tell sudo as which user-ID the command should run. sudo is about allowing a (group of) user(s) to run a certain (group of) command(s) not under the own ID but another. You defined, which command(s) that should be:

Code:
Cmnd_Alias SU_PROD=/bin/su prod, /bin/su - prod

and which user(s) should be allowed to do that:

Code:
User_Alias LEVEL1 = JamesF, dennisW, juanC, steveS,

but here:

Code:
LEVEL1 ALL= SU_PROD

you missed to tell as which user-ID they should be allowed to do that. Obviously they are allowed to do this on their own anyway, because every user can issue a

Code:
su - otheruser

yes? So it seems that sudo is of little value, but that all changes when we issue the command as user "root". The kick is that user "root" - unlike other users - is not asked for a password when using su and this is what one usually wants to exploit: the ability to change to a user based on belonging to a certain group of users (who are allowed to do that), rather than because of knowing a certain password.

See the man page of sudo which contains a lot of examples and modify your configuration accordingly.

I hope this helps.

bakunin
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

How to setup sudoers file ?

Hi, I have several employees of whom we have created Linux user ids as below. fred mohtashim jhon matt croft .... $ id uid=1018(jhon) gid=1003(techx) groups=1003(techx) context=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 Note: All my employee users belong to techx... (3 Replies)
Discussion started by: mohtashims
3 Replies

2. Solaris

Sudoers file

In the sudoers file in Solaris... I am trying to limit the DEVELOPER user privileges to where those users can only use the “rm” command in certain directories. This is to prevent them from deleting directories or files and destroying a server. I want them to be able to use the "rm" command but... (1 Reply)
Discussion started by: nzonefx
1 Replies

3. UNIX for Dummies Questions & Answers

Help with Sudoers file

Hi using Solaris 10. trying to update /etc/sudoers file I need to add all the fist level operation team. This is what I have but it doesn't seem to work. Please help.Error message sudo su - >>> sudoers file: parse error, line 9 <<< >>> sudoers file: parse error, line 9 <<< ... (2 Replies)
Discussion started by: samnyc
2 Replies

4. Emergency UNIX and Linux Support

Getting details from sudoers file

Hi, I need the details of which ids belong to the sudoers file, and which groups these ids belong to. Can anyone suggest a way to derive that information into a flat file please? G (4 Replies)
Discussion started by: ggayathri
4 Replies

5. Cybersecurity

Help with sudoers file - AIX

Hi all, I'm trying to setup my sudoer file at work to have the right security, but I'm not able to refine to the level I want. Here's what I would like to have: => OS Users - John (group staff) - Bob (group staff) - app20adm (group app20grp) - app70adm (group app70grp) - sys20adm... (0 Replies)
Discussion started by: victorbrca
0 Replies

6. Shell Programming and Scripting

Issue with sudoers file.

Hi All, I am new to sudoers file. I am asked to troubleshoot why a particular user (alandhi) is not able to run a script as a different user(scmtg). I have the following line in my sudoers file and the user's name added to the group. User_Alias QA_USERS = alandhi, testuser1, qauser3 ... (3 Replies)
Discussion started by: Tuxidow
3 Replies

7. Solaris

usage of sudoers file?

All, I have sudo setup installed on my Soalris 10 box. Everything working fine as expected. I would like to setup granular level access for one of the user I use Rational Clearcase application which has its own command prompt /usr/atria/bin/cleartool Once i invloked i can run its... (4 Replies)
Discussion started by: baluchen
4 Replies

8. UNIX for Advanced & Expert Users

sudoers file

i have defined a rule in the sudoers file so a specific user is able to run some commands as sudo with no password. my question is: is it possible to restrict a user to run commands as sudo only in a certain directory? for example: chown only the files that are located in /var/tmp. Thank you. ... (2 Replies)
Discussion started by: noam128
2 Replies

9. UNIX for Advanced & Expert Users

Parsing Sudoers File

Does anyone know of a utility that can parse through a sudoers file and create an "expansion" dump of all users defined in the User Specification, outputting user, host, and command based on all defined Aliases? (3 Replies)
Discussion started by: jasondavey
3 Replies

10. Linux

sudoers file

Hi, I have edited 'sudoers' file to allow 'cads' user shutdown the system without providing a password. Can someone tell me what's wrong with my file? It's not working when I 'sudo SHUTDOWN' command: sudo: SHUTDOWN: command not found Thanks a lot! # Host alias specification... (4 Replies)
Discussion started by: whatisthis
4 Replies
Login or Register to Ask a Question