Re: [dev] [PATCH] sbase: add chroot

2012-08-03 Thread Uriel
On Wed, Aug 1, 2012 at 5:00 PM, pancake wrote: > That is vulnerable on linux. Proper use is: Anyone using chroot for security is a fool. Uriel > > chdir (path); chroot("."); > > > > On Aug 1, 2012, at 16:50, Strake wrote: > >> diff -r 8cf300476909 chroot.8 >> --- /dev/nullThu Jan 01 00:00

Re: [dev] [PATCH] sbase: add chroot

2012-08-02 Thread Strake
On 01/08/2012, Džen wrote: > why argu? > > On Wed, Aug 1, 2012 at 5:11 PM, Strake wrote: > [...] >> +void main (int argc, char *argu[]) { > [...] Habit of mine.

Re: [dev] [PATCH] sbase: add chroot

2012-08-01 Thread Džen
why argu? On Wed, Aug 1, 2012 at 5:11 PM, Strake wrote: [...] > +void main (int argc, char *argu[]) { [...]

Re: [dev] [PATCH] sbase: add chroot

2012-08-01 Thread Strake
On 01/08/2012, pancake wrote: > That is vulnerable on linux. Proper use is: > > chdir (path); chroot("."); Ah, sorry. --- /dev/null Thu Jan 01 00:00:00 1970 + +++ b/chroot.8 Wed Aug 01 05:09:36 2012 -0500 @@ -0,0 +1,25 @@ +.TH CHROOT 8 +.SH NAME +chroot \- change root directory +.SH SYNOP

Re: [dev] [PATCH] sbase: add chroot

2012-08-01 Thread Jacob Todd
You could have at least tried to match the formatting of the rest of the project.

Re: [dev] [PATCH] sbase: add chroot

2012-08-01 Thread pancake
That is vulnerable on linux. Proper use is: chdir (path); chroot("."); On Aug 1, 2012, at 16:50, Strake wrote: > diff -r 8cf300476909 chroot.8 > --- /dev/nullThu Jan 01 00:00:00 1970 + > +++ b/chroot.8Wed Aug 01 04:46:43 2012 -0500 > @@ -0,0 +1,25 @@ > +.TH CHROOT 8 > +.SH NAME >