- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Perl local unauthorized elevated priviliges
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
06-30-2005 05:42 AM
06-30-2005 05:42 AM
Perl local unauthorized elevated priviliges
I received the alert regarding versions of Perl that are in use in the technology sector. We are running multiple version from 5.6.0 - D.5.8.0.B. I want to upgrade all our versions to D.5.8.0G which will correct the alert. Does anyone know where I can get that data so that I can upgrade the existing 5.6.0 to 5.8.0 and then put the revisions D.5.8.0.G into place. Please let me know, Thanks, Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2005 06:15 AM
06-30-2005 06:15 AM
Re: Perl local unauthorized elevated priviliges
There are far too many fixes and updates after 5.8.0 to mention in a post like this.
5.6.0 is considered the worst ever release of perl. Personally I would prefer 5.6.2 over 5.8.0
5.8.7 is already widely available. Also promoted often from many here on the forum: HP porting center - http://hpux.connect.org.uk/hppd/hpux/Languages/perl-5.8.6/ (still 5.8.6, but that's OK too) or from my site: http://mirrors.develooper.com/hpux/#Perl
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2005 07:19 AM
06-30-2005 07:19 AM
Re: Perl local unauthorized elevated priviliges
I downloaded the Perl 5.8.7 which comes in as "stable.tar.gz" how does one go about installing it on a machine that already has perl installed. It appears that you can simply uninstall it underneath the "/opt" filesystem but I wanted to ask the people that have far more knowledge of it than I do.
Sincerely,
Jim
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2005 08:27 AM
06-30-2005 08:27 AM
Re: Perl local unauthorized elevated priviliges
If it was not installed via swinstall previously, just trace back the perl path (whence perl) and remove the source directory before installing via swinstall.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-30-2005 08:27 AM
06-30-2005 08:27 AM
Re: Perl local unauthorized elevated priviliges
If you go from the source, you have to compile it
# sh ./Configure -des
or if you need 64bit
# sh ./Configure -Duse64bitall -des
please read README.hpux and INSTALL
If you are goingg to use GNU gcc, please skip the building of a binary, and take my distribution. It's complete, and easy to install. The most recent software depot contains both 32 and 64bit perl binaries
From the link i posted earlier:
--8<---
Installation
Install from compressed archives
To install it, do something similar to:
# cd /opt
# bzip2 -d
And add /opt/perl64/bin to your $PATH, preferably in /etc/PATH, but be sure to put it before /usr/contrib/bin, where old perls might live.
Install from Software Depots
Medio March 2005, I started experimenting with converting my distributions to software depot's, the way HP's porting certer ships them. The first effort has lead to a deport that contains perl-5.8.6-dor for HP-UX 11.00 both the 32bit and the 64bit build. In a depot, you can force the destination folder, and swinstall registers the installed software, which has obviously some advantages. To install it, use something similar to:
# swinstall -s /tmp/perl-5.8.6-dor-11.00.sd perl
which will install both 32bit perl (/opt/perl) and 64bit perl (/opt/perl64), but it still won't alter /etc/PATH, for reason that I can't predict which version you are going to use by default. If you prefer to install only one of the two versions:
# swinstall -s /tmp/perl-5.8.6-dor-11.00.sd perl.perl5-32
# swinstall -s /tmp/perl-5.8.6-dor-11.00.sd perl.perl5-64
Since there is no need for the files to be of any specific user, I did not set it to a specific user ID. Just for housekeeping, you might want to consider 'chown -R root:sys /opt/perl*' after installation.
-->8---
For HP-UX 11.00:
http://mirrors.develooper.com/hpux/perl-5.8.7-dor-11.00.sd.bz
For HP-UX 11.11 (11i):
http://mirrors.develooper.com/hpux/perl-5.8.7-dor-11.11.sd.bz
Enjoy, Have FUN! H.Merijn