RE: HOWTO : protect a shell script?

2003-01-08 Thread Burke, Thomas G.
*args[]) { int i; for(i=1 ; inoargs ; i++) system(args[i]); } - -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 11:46 PM To: [EMAIL PROTECTED] Subject: Re: HOWTO : protect a shell script? On Tue

Re: HOWTO : protect a shell script?

2003-01-08 Thread jkinz
On Wed, Jan 08, 2003 at 05:25:21AM -0800, Burke, Thomas G. wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Here's a little C program I wrote once... Try compiling running it. You might need to add a sytem(cd what/ever/directory), or This change of directory would only affect the

RE: HOWTO : protect a shell script?

2003-01-07 Thread Burke, Thomas G.
Title: RE: HOWTO : protect a shell script? -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 chmod 711? Just a thought, never tried it... - -Original Message- From: cana rich [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 07, 2003 11:37 AM To: [EMAIL PROTECTED] Subject: HOWTO

RE: HOWTO : protect a shell script?

2003-01-07 Thread Todd A. Jacobs
On Tue, 7 Jan 2003, Burke, Thomas G. wrote: I have some script shell (belong to root). I would like it to be executable by every users but i don't want it to be readable by others users. Can't be done directly. A shell script *must* be readable (and *can* be executable), since it's

Re: HOWTO : protect a shell script?

2003-01-07 Thread jkinz
On Tue, Jan 07, 2003 at 05:32:08PM -0800, Todd A. Jacobs wrote: On Tue, 7 Jan 2003, Burke, Thomas G. wrote: I have some script shell (belong to root). I would like it to be executable by every users but i don't want it to be readable by others users. Can't be done directly. A shell

Re: HOWTO : protect a shell script?

2003-01-07 Thread jkinz
on Tue, Jan 07, 2003 at 05:36:45PM +0100, cana rich wrote: Hello, I am using Linux RedHat 7.2. I have some script shell (belong to root). I would like it to be executable by every users but i don't want it to be readable by others users. Is it possible? Thanks for your help Canarich