Linux - Security This forum is for all security related questions.
Questions, tips, system compromises, firewalls, etc. are all included here. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
08-28-2007, 01:22 PM
|
#1
|
LQ Newbie
Registered: Aug 2007
Posts: 5
Rep:
|
Root for all
I wrote a program wich using ifconfig utility. So to run my program correctly user must be root. How can I let to run this program for all users in system. Only read and execution allowed.
|
|
|
08-28-2007, 01:30 PM
|
#2
|
LQ Guru
Registered: Nov 2003
Location: N. E. England
Distribution: Fedora, CentOS, Debian
Posts: 16,298
Rep:
|
Not sure if this is safe, but you could make the program setuid e.g.
Code:
#chmod o+s /path/to/prog
Last edited by reddazz; 08-28-2007 at 01:36 PM.
|
|
|
08-28-2007, 01:31 PM
|
#3
|
Moderator
Registered: Jun 2001
Location: UK
Distribution: Gentoo, RHEL, Fedora, Centos
Posts: 43,417
|
well the initial angle you should look at is how to not be in this situation in the first place... what is ifconfig doing? if it's reading data then just reference it absolutely, i.e /sbin/ifconfig and it'll work fine. for actaully making data changes (please explain why if so...) then you could set the script a sticky for the owner (chmod o+s myscript) whch will then allow the ifconfig command to be run as root when it needs to. better still is probably the use of sudo to control access in a more scalable auditable manner.
|
|
|
08-28-2007, 03:35 PM
|
#4
|
Moderator
Registered: May 2001
Posts: 29,415
|
Like said before please use Sudo. Introducing more setuid root binaries on your system is not necessary and may pose a security risk.
|
|
|
08-29-2007, 05:05 AM
|
#5
|
Senior Member
Registered: Sep 2005
Location: Out
Posts: 3,307
Rep:
|
On a default system, /sbin/ifconfig *for read access* doesn't need root priv because it reads /proc
It's simply not in the default path of normal users so you need to put the complete path (/sbin/ifconfig)
|
|
|
All times are GMT -5. The time now is 07:46 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|