in reply to Re: Re: Re: Re: Re: How best to hide command-line arguments from ps command?
in thread How best to hide command-line arguments from ps command?
Here's a nice super-quick audit that you might want to run:
find `perl -e 'print join(" ",split/:/,$ENV{PATH})'` -type f -perm -40 +00 -uid 0 2>/dev/null
Of course, in order to be a complete audit, though, you'd have to iterate over /, instead of just over $PATH.
|
|---|