Operating System - HP-UX
1862930 Members
1847 Online
110446 Solutions
New Discussion

Re: How to prevent anonymous ftp users executing chmod

 
SOLVED
Go to solution
Kevin Ray
New Member

How to prevent anonymous ftp users executing chmod

Is it possible to prevent anonymous ftp users from executing the chmod command.
CA217084
3 REPLIES 3
Rita C Workman
Honored Contributor
Solution

Re: How to prevent anonymous ftp users executing chmod

Yes, by making all anonymous ftp users grouprights guest...
You can use the ftpaccess file to configure what group rights users have and can do. /etc/ftpd/ftpaccess
To activate this file in inetd.conf add at the end of the ftp stream .... -a.

There's been a few discussion about this..you can review them using the Search at left

Regards
Dan Hetzel
Honored Contributor

Re: How to prevent anonymous ftp users executing chmod

Hi Kevin,

Make sure the shell for user ftp is defined as '/usr/bin/false', and that user ftp is member of group 'guest'

Best regards,

Dan
Everybody knows at least one thing worth sharing -- mailto:[email protected]
Kevin Ray
New Member

Re: How to prevent anonymous ftp users executing chmod

Thanks for all the help!
CA217084