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
05-21-2006 09:32 PM
05-21-2006 09:32 PM
banners
i got this report from security section
The target host divulges important version information on its telnet banner. Banners are text messages that are sometimes displayed when, the network connection is established. Banners often contain information that includes the name of manufacturer and version of the software. This information can be used to mount an attack on the host.
Recommendation: You should edit the default banners so it doesn’t expose the version numbers and service type.
soooo
how i can expose the version number and service type through banners ??
(edit the default banners)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 09:40 PM
05-21-2006 09:40 PM
Re: banners
i think the they are talking about the "/etc/issue" and the "/etc/motd"
for FTP service the login banner is configured in the /etc/ftpd/ftpaccess.
GOOD LUCK!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 09:41 PM
05-21-2006 09:41 PM
Re: banners
2. edit inetd.conf as follows:
telnet stream tcp nowait root /usr/lbin/telnetd telnetd -b/etc/issue
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 09:43 PM
05-21-2006 09:43 PM
Re: banners
/etc/issue or /etc/motd & ensure that motd is enabled in /etc/profile
Chan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 10:04 PM
05-21-2006 10:04 PM
Re: banners
thanx for ur quick reply
but when i want to edit /etc/issue
it has only one line
{GenericSysName [HP Release B.11.11] (see /etc/issue) }
how i can edit this file
thank you soo much
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-21-2006 10:10 PM
05-21-2006 10:10 PM
Re: banners
if you don't want to show the whole message, just mv the file
# mv /etc/issue /etc/issue.old
or change it using "vi" editor...
# vi /etc/issue
or
if you not familiar in vi then
# echo "GenericSysName (see /etc/issue)" > /etc/issue
GOOD LUCK!!