Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
309 views

Semantics of SUID (Set-User-ID)

it seems that I have some trouble understanding the semantics of the SUID bit, perhaps someone can help me clarify the situation. My understanding of the semantic of the SUID bit are as follows: When ...
4
votes
1answer
423 views

taint-mode perl: preserve suid when running external program via system()

I'm trying to add a feature to a legacy script. The script is suid, and uses perl -T (taint mode: man perlsec), for extra security. The feature I need to add is implemented in Python. My problem is ...
4
votes
1answer
872 views

Security concerns with a Python PAM module?

I'm interested in writing a PAM module that would make use of a popular authentication mechanism for Unix logins. Most of my past programming experience has been in Python, and the system I'm ...
3
votes
1answer
394 views

NSTask, command line tools and root

I'm working on an app that needs to use dd (I do this with a shell script in the app bundle, that collects parameters from the app itself, makes some checks and then launches dd). To make this ...
2
votes
1answer
331 views

What choices do I have on MS Windows platforms for the equivalent of SUID from Unix-based platforms?

To understand what I'm asking, it's important to distinguish from among the several uses of SUID in Unix. I have a project that uses an executable in the user's PATH which is owned by the project and ...
1
vote
1answer
105 views

How do permissions propagate in Mac OS X?

So if I make a program suid root on my mac, and that program runs exec on /bin/sh, the shell is not root whereas if I do the same thing on Linux, the shell is root. Does Mac not propagate permissions ...
1
vote
1answer
322 views

From PHP/Apache, exec() or system() program as root: “sudo: unable to open audit system: Permission denied”

I have been spending half a day trying to figure this out, and I've done a lot of research. I'm also familiar with many of the existing discussions on this topic, such as this one: How to run PHP ...
1
vote
1answer
158 views

Setting SUID flag on a file?

I have a python file that I would like to set the SUID flag on. So that if any normal user executes it it executes as root. I know it's a security issue but I still need to set the SUID flag.
1
vote
6answers
2k views

How to restart Linux from inside a C++ program?

I have a Qt 4 GUI where I need to have a option in a drop-down menu that allows the user to choose to restart the computer. I realize this might seem redunant with the ability to restart the computer ...
0
votes
2answers
102 views

Run SUID C scripts under Apache

i have a cgi script in c the same as this: #include <stdio.h> #include <stdlib.h> #include <string> int main(void) { printf("Content-type: text/html\n\n"); printf("RUID : ...
0
votes
1answer
174 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 ...
0
votes
1answer
76 views

How to use $ORIGIN and suid application?

I'm using python with setcap CAP_NET_RAW enabled. My python script imports a shared library which has $ORIGIN in its RPATH. Since my python is now a suid app, $ORIGIN is not evaluated and the library ...
0
votes
1answer
418 views

seteuid/geteuid: Program always has root id

I'm currently trying to figure out how the SUID-bit and the corresponding functions seteuid and geteuid work. So I wrote this little program: #include <unistd.h> #include <stdlib.h> ...
0
votes
2answers
1k views

Howto debug program that needs to run as root from gdb (Eclipse) as user (set gdb suid root?)

I need to debug a program on Linux with Eclipse (gdb). The program run as root and is quite large. The binary with debug symbols is about 250MB large and has more than 60 running threads after ...
0
votes
2answers
851 views

compile shell script so can use suid

I need to suid a script so that it can be executed by users with less permissions. Since you can't suid a script and can only suid an executable I wanted to use the generic script compiler "shc" to ...