- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Is there tool or script to validate UNIX serve...
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
07-08-2009 07:21 PM
07-08-2009 07:21 PM
Is there tool or script to validate UNIX servers where processes running with embedded passwords.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 12:36 AM
07-09-2009 12:36 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
The latter is easier. For processes, that would just look like data.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 12:54 AM
07-09-2009 12:54 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 04:22 AM
07-09-2009 04:22 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
ok...fine.....*what* exactly do you mean by that tho?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 05:11 AM
07-09-2009 05:11 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
Thanks,
D
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 05:17 AM
07-09-2009 05:17 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
> I mean if it's easier to find out embedded passwords within scripts. Please let me know how?
Well, you can certainly parse scripts (Ascii text files) in numerous ways looking for tokens and syntax that suggest or surround passwords.
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2009 09:26 AM
07-09-2009 09:26 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
there is absolutely nothing "easy" about this task, as there are many possibilities to deal with.
Consider that you'd need to locate every text file on the system (that part *is* straightforward), then you'd have to be able to determine if it's a script (can't rely on #! line as it's not manditory) nor can you rely on its executable status (as a plain text file can be "sourced" as in ". ./my_text").
then you have to figure out if a something that looks like a password is in the script, and that isn't straight forward at all.
Consider that an "expect" script might have something like:
expect "Password:"
or
expect "assword:"
or
expect "word:"
any of which would/could be followed by a line that contains the password to be sent.
then consider a scripted ftp in a "here-doc", as in:
ftp that_server <<-EOF
myuser
mypass
cd /dumb
put dumber
EOF
the password is there, but how do you know where / what to look at?
You'd almost have to look at every single text file individually. In any case, this is not a trivial task.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-24-2009 01:11 PM
07-24-2009 01:11 PM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-26-2009 08:30 PM
07-26-2009 08:30 PM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
It can be in clear-text, as far as encrypted check to see if what are the top encryption types - may be like E.g., md5 hash.
Also please suggest what are the tools to find out if in case user is logging through encrypted password mode.
Regards
Dr
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-27-2009 02:12 AM
07-27-2009 02:12 AM
Re: Is there tool or script to validate UNIX servers where processes running with embedded passwords.
Do you mean using ssh vs remsh?