- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Q: anonymous ftp with trusted mode
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:28 AM
02-24-2003 11:28 AM
Q: anonymous ftp with trusted mode
C:\>ftp server.test.com
Connected to server.test.com.
220 server.test.com FTP server (Version 1.1.214.4(PHNE_23950) Tue May 22 05:49:01
GMT 2001) ready.
User (server.test.com:(none)): anonymous
530 Guest login not permitted.
Login failed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:38 AM
02-24-2003 11:38 AM
Re: Q: anonymous ftp with trusted mode
There are couple of places I will look for.
1. See if your ftpd in /etc/inetd.conf carries -a flag to enable ftpaccess file. If so, look at /etc/ftpd/ftpaccess file and see if the Guest|anonymous logins are disabled.
2. Look at the permissions of ~ftp (ftp's home) directory. It should not have write access for the account "ftp". If so, change it to 555 atleast.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:44 AM
02-24-2003 11:44 AM
Re: Q: anonymous ftp with trusted mode
From what I see, there's no -a flag for ftpd. all I have is a -l flag.
Also, ~ftp does not have write access. It's currently 555.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:51 AM
02-24-2003 11:51 AM
Re: Q: anonymous ftp with trusted mode
Enable logging of ftp by adding -l option in inetd.conf file. The last word should be "ftpd -l".
Refresh inetd by "inetd -c".
Try logging again as anonymous and see what error you get in syslog.log.
-Sri
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:54 AM
02-24-2003 11:54 AM
Re: Q: anonymous ftp with trusted mode
Anonymous ftp always is a backdoor to violate system security, pls consider block it.
Meanwhile check in your /etc/ftpd/ftpacces file the ftpguest group name definitio. This group name must be defined in /etc/group file and anonymous must belong at this gruop as well as any other ftp's guest users (man ftpaccess). Also check that anonymous is not defined into /etc/ftpd/ftpusers files, this file must content any not allowable ftp users (man ftpusers).
Rgds.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 11:59 AM
02-24-2003 11:59 AM
Re: Q: anonymous ftp with trusted mode
Chris
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-24-2003 12:24 PM
02-24-2003 12:24 PM
Re: Q: anonymous ftp with trusted mode
I totally agree with you guys about the security risks with anonymous ftp. The reason why i have it setup is because in-house application which runs on our server requires it to work. Not a very good software from my view. I brought this up to our clients before, but they don't seem to care. I warned them that if their server gets breached due to the anonymous ftp, they are responsible.
Anyways, thank you guys for all your help.