- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how do you assess system vulnerabilities
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
10-12-2005 09:40 AM
10-12-2005 09:40 AM
Doing a project and trying to gain consensus.
Basically, what tools and/or utilities do you use to assess the vulnerabilities in your UNIX systems?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 10:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 11:12 AM
10-12-2005 11:12 AM
Re: how do you assess system vulnerabilities
- rkhunter or chkrootkit
(os-specific stuff depends on the OS, like port-vulnerabilities for various BSD's, scripts for AIX/HP-UX and Baseline Security Analizer for Windows ;))
- tripwire
external to the system:
-nmap
-nessus
it would be possible to 'diff' i.e. the results of netstat -na, nmap and filter rules, also of installed software, but at the moment this is too much effort, mostly because I'm coding very slow :)
I'm maintaining this environment for ~5 years now and have found the easiest way for assessment and fixing of vulnerabilities is three parts:
- run not the bleeding edge, but be absolutely uptodate on production versions of the code I use.
- for critical daemons/services (think httpd, firewalls, ...) there's always a preconfigured replacement active and running.
i.e. on my firewall there's a thttpd running You'll never see because the website is pointing to a regular apache server. if there's a really critical exploit to the apache server, I remove the NAT rule until apache can be updated.
- if this is not possible for an application, then chroot it at least. (this, unfortunately won't protect Your data, but at least You can still trust the data's backup.)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 04:50 PM
10-12-2005 04:50 PM
Re: how do you assess system vulnerabilities
-
Prabu.S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 04:57 PM
10-12-2005 04:57 PM
Re: how do you assess system vulnerabilities
Baston
Cecunia Security checklist.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 04:58 PM
10-12-2005 04:58 PM
Re: how do you assess system vulnerabilities
Its part of HP-Internet Express as well,
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1111
http://h20293.www2.hp.com/portal/swdepot/displayProductInfo.do?productNumber=HPUXIEXP1123
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 04:59 PM
10-12-2005 04:59 PM
Re: how do you assess system vulnerabilities
In addition to above i would also look for all world writable files and track them. You can get them using simple find command.
Monitor the outputs of "last", "lastb", "who -R" commands.
Regards,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 04:59 PM
10-12-2005 04:59 PM
Re: how do you assess system vulnerabilities
Nessus is one of the best tool for security assessment and to find out all security holes on a large network. This is also used to do the penetration tests.
Download is available @
http://nessus.org/download/
You will get the documentation also here in this site on setting up a nessus.
Regards,
Syam
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-12-2005 05:06 PM
10-12-2005 05:06 PM
Re: how do you assess system vulnerabilities
Don't forget the main steps:
1. Cataloging assets and capabilities (resources) in your system
2. Assigning quantifiable value and importance to the resources
3. Identifying the vulnerabilities or potential threats to each resource
4. Mitigating or eliminating the most serious vulnerabilities for the most valuable resources
As for the tool, also consider SAINT. The trial version is available at: http://download.saintcorporation.com/downloads/freetrial/saint-install-5.9.2.gz
hope this helps too!
kind regards
yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2005 04:16 AM
10-14-2005 04:16 AM
Re: how do you assess system vulnerabilities
For assesment, you might also consider CIS.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-14-2005 04:41 AM
10-14-2005 04:41 AM
Re: how do you assess system vulnerabilities
Got my consensus. Thanks to all!