[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] [OT] Email spam
- Subject: Re: [cobalt-users] [OT] Email spam
- From: "Jens-Peter Otto" <jp.otto@xxxxxxxxxxxxxxx>
- Date: Wed Aug 28 07:51:01 2002
- List-id: Mailing list for users to share thoughts on Sun Cobalt products. <cobalt-users.list.cobalt.com>
> .pl and .cgi files can be named anything at all.
>
> Try the following commands:
>
> # find /home/sites -name "*.pl"
>
> and
>
> # find /home/sites -name "*.cgi"
>
> to get a list of ALL .pl and .cgi files your clients may have installed.
>
or, maybe better, try
find /home/sites/site*/web -type f -perm +111
and
find /home/sites/site*/users/*/web -type f -perm +111
to find all files marked executable.
Jens-Peter