Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I have never been to any technical site that shows concern just to anybody with problems...I look forward to also share in the future..."

Geography

Where in the world do Tek-Tips members come from?

Allowing CGI script to read directory?

jb53403 (Programmer)
9 Mar 12 14:34
I'm writing a CGI script in UNIX that needs to be able to read the contents of a directory /foo/bar on the server.  The problem I'm running into is the 'nobody' user doesn't have permission to read /foo/bar.

# This doesn't work...
my @configs_glob = glob("/foo/bar/*.ini");

# Permissions of /foo/bar directory...
drwxrwsr-x

My attempted solution was to have a little "listdir" script with SUID set, so "listdir" would execute as the owner of /foo/bar, thereby having permission to read /foo/bar.

# This is my attempted solution...
my @configs_glob = `listdir '/foo/bar/*.ini'`;

# Contents of "listdir" script...
directory=$1
ls $directory

# Permissions of "listdir" are:  -rwsr-xr-x
# Owner of "listdir" is same as owner of /foo/bar

If I throw a little "whoami" command in the "listdir" script, it returns 'nobody'.  My knowledge of SUID must be lacking.  Any help?

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Back To Forum

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close