The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
7k views

Calling a script from a setuid root C program - script does not run as root

I need to run a bash script as root (passwordless sudo or su not viable) and since you cannot setuid a script in Linux, I thought about calling it from an executable and making it setuid: $ cat ...
6
votes
2answers
1k views

Run child processes as different user from a long running process

I've got a long running, daemonized Python process that uses subprocess to spawn new child processes when certain events occur. The long running process is started by a user with super user ...
5
votes
1answer
298 views

Considerations for a setuid wrapper

A Python extension I've written requires root access to do a single hardware initialisation call. I'd rather not run the whole script as root just for this one call in my extension, so I would like to ...
5
votes
4answers
548 views

running git 'post-receive' hook with setuid fails

I have a git repository that needs to run a post-receive hook as sudo. The binary that I compiled to test this looks like: #include <stdlib.h> #include <unistd.h> #include ...
5
votes
1answer
2k views

Why do I need setuid(0) within a setuid-root C program that calls an administrative program with system()?

I had to do a dirty Linux hack for somebody so they could start a printer with the cupsenable printername shell command while being a non-root user. I didn't want them to be able to use the entirety ...
4
votes
4answers
617 views

Exploit a backup program using C

I'm doing an assignment of a security course that asks me to find 4 vulnerabilities of a backup program (setuid) and use each of them to gain root access (on a virtual linux machine with old version ...
4
votes
4answers
2k views

how to use setuid() from root to become user, with the possiblity of becoming root again later?

I'm trying to do the safe thing, and have a program that needs to runs as root to drop its privileges when it doesn't need them. This works well if I chmod my binary with the SUID bit, and make it ...
4
votes
4answers
548 views

What's the best way to perform system tasks from Ruby on Rails?

I am building a small system administration web application (think Web-Min, but in RoR) and I need to be able to access system parameters from my Ruby code. For instance, I want to allow the user to ...
3
votes
2answers
201 views

setting up the environment when changing to another user

I have a bash backup script run as root (cron) that delegates certain tasks to other specific bash scripts owned by different users. (simplified example, principle is, some things have to be done as ...
3
votes
4answers
604 views

how do i claim a low-numbered port as non-root the “right way”

I have a script that I want to run as a daemon listening on a low-numbered port (< 1024) Script is in python, though answers in perl are also acceptable. The script is being daemonized using ...
3
votes
4answers
2k views

how do i run valgrind to a process which has super user bit on?

I am running valgrind as follows:- /usr/local/bin/valgrind "process_name" After excecution its giving me following error ==21731== ==21731== Warning: Can't execute setuid/setgid executable: ...
3
votes
4answers
774 views

Does any Unix-like system ascribe meaning to the SUID bit on a directory?

As the title says, does any Unix-like system ascribe a meaning to the SUID bit on a directory, and if so, what does it mean? The SVTX (saved text, or sticky) bit has a meaning - thou shalt not delete ...
3
votes
4answers
3k views

Can an iPhone App Be Run as Root?

I am thinking about the design of an iPhone app I'd like to create. One possible problem is that this application will have to run as root (to access certain network ports). In a typical UNIX app, ...
2
votes
1answer
58 views

setuid program owned by non-root user

I have a setuid program (getpwd) that runs as expected only when owned by root. -rwsr-xr-x 1 root root 7981 2011-11-17 18:28 getpwd* In other words when my program is executed on the command line ...
2
votes
1answer
162 views

Mac App Store app with elevated privileges

I have a question regarding the Mac App Store. I am planning to release a software with admin privileges to achieve its core functionality, but according to Apple - 2.27 - Apps that request ...
2
votes
2answers
53 views

Can I use setuid or sticky to make a file created by PHP a certain user?

I'm using WordPress and I want files created by WordPress to have the user of the file that created them, not the user the web server is running as. For example, my WordPress files and directories are ...
2
votes
1answer
1k views

How to successfully run Perl script with setuid() when used as cgi-bin?

I have a Perl script that is called either via Apache or on the command-line. For testing purposes, I pass it the username I want the Perl script to operate with, and use POSIX::setuid to set the ...
2
votes
2answers
997 views

“Operation not permitted” while dropping privileges using setuid() function

Why this simple programs that use os.setuid()/gid() fails? Is written in python but I think that is not a language relative problem (at the end are all the same posix system call): import os, pwd if ...
2
votes
1answer
706 views

Git post-receive hook to update a local clone owned by a different user

I'm trying to set up a git post-receive hook such that when a commit is received, another clone of the repository on the machine gets updated (i.e. does a git pull origin master). I'm using gitosis to ...
2
votes
2answers
548 views

Program can't load after setting the setuid bit on

Consider this scenario in which an executable A.bin uses libY.so and libZ.so. A.c, Y.c and Z.c are all written in C. Z.c and Y.c are compiled into respective .so files. This is the directory ...
2
votes
2answers
2k views

Change UID/GID only of one thread in Linux

Is there a way to change UID/GID only of one thread in a multithreaded process? The reason for this is writing a file-serving application - the ACL's and quota are not enforced unless the uid/gid of ...
2
votes
3answers
613 views

How do I preserve the setuid bit in tar archives with Perl's Archive::Tar?

I'm using Perl's Archive::Tar module. It preserves the file permissions but doesn't preserve the sticky bit. At the other end where I extract the archive, all the sticky bits are gone. I think ...
1
vote
3answers
124 views

RealUID, Saved UID, Effective UID. What's going on?

This is a set-root-uid program $ls -l -rwsr-sr-x 1 root root 7406 2011-12-13 22:37 ./x* The source code: int main(void) { printf( " UID GID \n" "Real %d ...
1
vote
1answer
41 views

files owner:group doesn't change at location /proc/<pid>/ after setuid()?

I had the requirement of spawning a process as a root, then dropping its privileges to non-root user, so to implement this i used setbit for the binary and changes the owner to root. then i spawned ...
1
vote
1answer
109 views

Setuid bit on python script : Linux vs Solaris

I am running this small python script on both linux and Solaris as a not privileged user : #!/usr/bin/python import os print 'uid,euid =',os.getuid(),os.geteuid() Before running, the setuid bit is ...
1
vote
2answers
44 views

How can I get the user's locale when running as root?

I am running as root, but have the user's uid (e.g. 504). How can I work out the user's locale (in my case en_GB)? The following does not work: setuid(user_uid); fprintf(stderr, ...
1
vote
4answers
220 views

“Operation not permitted” on using os.setuid( ) [python]

I'm trying to build a platform to launch some scripts. This scripts are placed in home folder of each user. Every launch should be done with each user id so, I'm doing, for each user, this: user_id = ...
1
vote
1answer
221 views

Linux effective, real, saved, filesystem UID manipulation in pseudocode

I have spent some time on a little code in Groovy to make Linux UID manipulation somewhat less confusing to myself and because the man pages are messy. The result is a TestCase which is meant to show ...
1
vote
1answer
120 views

Need help improving a small C program [closed]

I wanted to launch a bash script (read: bash not sh script) as a root not as the user calling it, however bash ignore setuid on scripts, so I chose to write a very small script that takes a ...
1
vote
3answers
153 views

setuid(0) and system fails

I have a program running in C. This needs to execute an "iptables" command using system. I tried setuid(0); system("iptables .... "); setuid and system do not coexist. from the system man page ...
1
vote
1answer
142 views

JNI + setuid Question

I have a web application that runs as a user www. However at one point it needs to read a file from a Linux filesystem on behalf of users Alice and Bob. One way of doing this would be to launch a ...
1
vote
1answer
220 views

Clearcase: How to control whether SUID programs work in a view or not?

We have two machines (under discussion) running ClearCase - different versions of ClearCase. Otherwise, they are about as identical in setup as can be - same Linux x86/64 kernel etc. On one machine, ...
1
vote
1answer
266 views

Send the SIGHUP signal to a process in Perl

I have a UNIX daemon, which wait of SIGHUP for refresh a data. I try to send a signal from the Perl script (under Apache www-data:www-data on the same server) by Proc::Killall ("killall('HUP', ...
1
vote
1answer
48 views

Dropping process rights under windows

I'm looking for a method to drop process rights for security reasons. I want to start as user with privileges and end as limited user. For example I want my web server to run under restricted user by ...
1
vote
1answer
66 views

Automated testing of privileged operations

How do you unit/integration test code that requires a different privilege level than exists in your continuous integration environment? In my non-root, CCRB-driven build environment, I've got some ...
1
vote
1answer
771 views

Passwordless SSH using cgi-perl script

This is my first shot at trying out cgi-perl scripts. I have SSH keys set up between my (root user) local machine and a remote machine. I'm trying to run a command on the remote box and display the ...
1
vote
1answer
524 views

Get calling user ID in PHP setuid script

I have a PHP script on Linux in which the sticky bit is set, so it gets executed as the file owner. How can I get the user id of the calling process, for authorization purposes? Context: I have two ...
1
vote
1answer
602 views

Check if a file is setuid root in Python

I'm trying to check if a file has the setuid bit in Python. The stat doc mentions a S_ISUID function but it only works with os.chmod(), not to actually read the setuid bit. It also lists S_IMODE, but ...
1
vote
1answer
241 views

Linux group scheduling for user not being applied to setuid-ed process

On the 2.6.28-11 Linux kernel, I am using setpriority to bias the amount of cpu time different user processes receive. User 1 is to receive double the CPU power of user 2. Using Linux's setpriority, I ...
1
vote
2answers
199 views

What's the proper way to drop to a lower privilege level with setuid?

I'm writing a program in C that binds to a port < 1024. I'd like it to run at non-root privileges thereafter. I know I need to call setuid(), but with what argument? UID's vary from system to ...
1
vote
2answers
334 views

Does anyone use BetterAuthorizationSample?

On OS X privileged operations are done through AuthorizationExecuteWithPrivileges() around which Apple published two recommendations: The old MoreAuth using setuid helper tools. The current ...
1
vote
2answers
266 views

Secure access to files in a directory identified by an environment variable?

Can anyone point to some code that deals with the security of files access via a path specified (in part) by an environment variable, specifically for Unix and its variants, but Windows solutions are ...
0
votes
0answers
17 views
+100

set-uid and relative path in INTERP of an dyn-linked binary

I just find out, that the combination of set-uid and a relative path in the INTERP section of an ELF binary is very dangerous. I'm not quite sure whether this needs reporting, but it seems to me ...
0
votes
2answers
35 views

Setting a dedicated user/password for csh scripts using “db2 connect to table” on Linux 2.6 / IBM DB2 v9.7

We have many legacy csh scripts that connect to our db2 database using "db2 connect to <table>" command. They do NOT use "db2 connect to <table> user <user> using <password>" explicitly, ...
0
votes
0answers
96 views

Load MobileSubstrate in setuid iPhone app

I have a root app on my iPod touch (Installer4) and I want it to load MobileSubstrate so I can start making a tweak to fix its bugs. I know that root apps have an intermediate executable to be able to ...
0
votes
1answer
58 views

Executing a setuid perl script within a perl script

I have two perl scripts: getPwd.pl - setuid perl script that returns a password sub getOraPwd{ ... return getOraPwd; } getOraPwd(); testDBConn.pl I want to call getPwd.pl in the testDBConn.pl ...
0
votes
1answer
168 views

Run script as another user without sudo/su privileges

I'm trying to write a script so that it can be called by one user and is executed as another user. I thought that setuid might be able to do this so I enabled setuid using chmod u+s with the owner of ...
0
votes
5answers
199 views

how to run cmd as root from apache (centOS)?

I'm trying to run the "useradd" command in CENTOS but I can't because I need root permissions. In my php_info(); I have '--disable-posix'. I have tried to re-install my PHP, and tried to enable the ...
0
votes
0answers
16 views

Is calling wordexp without WRDE_NOCMD in a set{u,g}id executable a security risk?

I'm working on a fork of glibc that doesn't hard-code /bin/sh and instead searches $PATH for sh whenever it is needed (this isn't the place to go into why, but I do have good reason). This is not a ...
0
votes
1answer
176 views

Can gdb debug suid root programs?

I did a program that call setuid(0) and execve("/bin/bash",NULL,NULL). Then I did chown root:root a.out && chmod +s a.out When I execute ./a.out I get a root shell. However when I do gdb ...

1 2