Re: hide the commabd executed from ps,who

2000-05-22 Thread kmself
On Wed, May 17, 2000 at 10:25:19PM -0400, David Z Maze wrote: > Eric G Miller writes: > EGM> On Thu, May 18, 2000 at 12:57:18AM +0800, [EMAIL PROTECTED] wrote: > >> But for example,what if I want to write a shell script which will login > >> to the remote server automatically?e.g..for some cgi...e

Re: hide the commabd executed from ps,who

2000-05-18 Thread David Karlin
On Wed, May 17, 2000 at 10:25:19PM -0400, David Z Maze wrote: > Eric G Miller writes: > EGM> On Thu, May 18, 2000 at 12:57:18AM +0800, [EMAIL PROTECTED] wrote: > >> But for example,what if I want to write a shell script which will login > >> to the remote server automatically?e.g..for some cgi...e

Re: hide the commabd executed from ps,who

2000-05-18 Thread Joey Hess
w trillich wrote: > 1) write a script to do the deed & supply the args, and call it >as your command; then your command-line will only be the script name. >set (restrict) permissions as needed on the script file. No that doesn't work. Your script still runs a program with some arguments; t

Re: hide the commabd executed from ps,who

2000-05-17 Thread David Z Maze
Eric G Miller writes: EGM> On Thu, May 18, 2000 at 12:57:18AM +0800, [EMAIL PROTECTED] wrote: >> But for example,what if I want to write a shell script which will login >> to the remote server automatically?e.g..for some cgi...etc... EGM> EGM> Couldn't you put the password in a variable? Would th

Re: hide the commabd executed from ps,who

2000-05-17 Thread Eric G . Miller
On Thu, May 18, 2000 at 12:57:18AM +0800, [EMAIL PROTECTED] wrote: > But for example,what if I want to write a shell script which will login > to the remote server automatically?e.g..for some cgi...etc... Couldn't you put the password in a variable? Would the real value show up, or just the variab

Re: hide the commabd executed from ps,who

2000-05-17 Thread John Pearson
On Thu, May 18, 2000 at 12:57:18AM +0800, [EMAIL PROTECTED] wrote > > > On Tue, 16 May 2000, Ethan Benson wrote: > > > On Tue, May 16, 2000 at 09:29:55PM +0200, Robert Waldner wrote: > > > On Tue, 16 May 2000 11:56:07 PDT, "Sean 'Shaleh' Perry" writes: > > > >On 16-May-2000 [EMAIL PROTECTED] wro

Re: hide the commabd executed from ps,who

2000-05-17 Thread 50191914
On Wed, 17 May 2000, w trillich wrote: > to hide the args of your command, there are several tricks > aside from the 'overhaul the kernel' approach-- > > 1) write a script to do the deed & supply the args, and call it >as your command; then your command-line will only be the script name. >

Re: hide the commabd executed from ps,who

2000-05-17 Thread 50191914
On Tue, 16 May 2000, Ethan Benson wrote: > On Tue, May 16, 2000 at 09:29:55PM +0200, Robert Waldner wrote: > > On Tue, 16 May 2000 11:56:07 PDT, "Sean 'Shaleh' Perry" writes: > > >On 16-May-2000 [EMAIL PROTECTED] wrote: > > >> How can I hide the commond I am executing so that people can't see >

Re: hide the commabd executed from ps,who

2000-05-17 Thread Oswald Buddenhagen
> 1) write a script to do the deed & supply the args, and call it >as your command; then your command-line will only be the script name. >set (restrict) permissions as needed on the script file. > huuh? does this make sense? the script will eventually call/exec the main program, which will

Re: hide the commabd executed from ps,who

2000-05-17 Thread w trillich
to hide the args of your command, there are several tricks aside from the 'overhaul the kernel' approach-- 1) write a script to do the deed & supply the args, and call it as your command; then your command-line will only be the script name. set (restrict) permissions as needed on the script

Re: hide the commabd executed from ps,who

2000-05-16 Thread Ethan Benson
On Tue, May 16, 2000 at 09:29:55PM +0200, Robert Waldner wrote: > On Tue, 16 May 2000 11:56:07 PDT, "Sean 'Shaleh' Perry" writes: > >On 16-May-2000 [EMAIL PROTECTED] wrote: > >> How can I hide the commond I am executing so that people can't see > >> it from ps,or who?For example,if i use mysql by t

RE: hide the commabd executed from ps,who

2000-05-16 Thread incarest
On 16 May 00, Sean 'Shaleh' Perry wrote: >On 16-May-2000 [EMAIL PROTECTED] wrote: >>How can I hide the commond I am executing so that people can't see >>it from ps,or who?For example,if i use mysql by typing mysql -u >>myname -p passsword ..people can see my password...So it would be >>good if I ca

Re: hide the commabd executed from ps,who

2000-05-16 Thread Robert Waldner
On Tue, 16 May 2000 11:56:07 PDT, "Sean 'Shaleh' Perry" writes: >On 16-May-2000 [EMAIL PROTECTED] wrote: >> How can I hide the commond I am executing so that people can't see >> it from ps,or who?For example,if i use mysql by typing mysql -u myname -p >> passsword ..people can see my password...So

RE: hide the commabd executed from ps,who

2000-05-16 Thread Sean 'Shaleh' Perry
On 16-May-2000 [EMAIL PROTECTED] wrote: > How can I hide the commond I am executing so that people can't see > it from ps,or who?For example,if i use mysql by typing mysql -u myname -p > passsword ..people can see my password...So it would be good if I can > hide what i am doing from other user...