in reply to Re^2: Inline.pm and untainting
in thread Inline.pm and untainting
I'm surprised that env_untaint was written that way. 0022 as a umask is 755 permission wise which gives the idea that r and x for group members and everyone else actually works for Windows in a Linux/UNIX way.
Reading stat under perlfunc years ago led me to believe that only a handful of the 13 elements actually worked under Windows. Looking at it now hints that there maybe some cause for doubt - "Not all fields are supported on all filesystem types".
The concept of group and everyone for Windows does work under domains but not directories, which is why stat returns 0777 even on readonly.
Shortcoming of stat - I'd say so, but it's not actually since we're given warning. To get directories that you can't write to I'd use Win32::File so
and not ((stat($_))[2] & 0022)becomes
and ( $attr & READONLY )I was going to go through the bitwise & permissions that would yield 0 with 0022, but I actually came on PM to look for something else and now it's home time :p
Just in
P.S. your box is fine
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Inline.pm and untainting
by syphilis (Archbishop) on Jul 30, 2009 at 09:43 UTC | |
by afoken (Chancellor) on Jul 30, 2009 at 16:58 UTC | |
by syphilis (Archbishop) on Jul 31, 2009 at 11:00 UTC |