Sun openssl is updated to what level?

We are receiving IAVAs that need addressed, specifically that Openssl needs be updated to version 1.0 or later. The version bundled with Solaris 10 is .9.7d, but says it covers some IAVAs up to 2011:
OpenSSL 0.9.7d 17 Mar 2004 (+ security fixes for: CVE-2005-2969 CVE-2006-2937 CVE-2006-2940 CVE-2006-3738 CVE-2006-4339 CVE-2006-4343 CVE-2006-7250 CVE-2007-5135 CVE-2007-3108 CVE-2008-5077 CVE-2008-7270 CVE-2009-0590 CVE-2009-2409 CVE-2009-3555 CVE-2010-4180 CVE-2011-4576 CVE-2011-4619)
Does anyone know what the current patch level is to satisfy these requirements to cover IAVAs issued in 2012?
Our systems are Solaris 10 10/09 s10s_u8wos_08a SPARC, patch level Generic_147440-12.
Would upgrading entail new SUNWopensslr packages, a particular patch, moving to a higher update of Solaris 10, or moving to Solaris 11?
Any information appreciated. I'm in a government/military secure environment, so updating with open source packages is not possible.

That was very helpful - thanks. Looks like our last patch was for -04 even though we have done the last several recommended patch clusters. Can you tell me how one would determine by a file name what patches should be applied for it? I have another unrelated file that has been patched in the past year that needs updating but I don't know how to figure out what patch would apply to it ( I know it has been updated because some systems have a newer version while those that have just had the package installed have an older version).
I should have added that since these systems are restricted in scope, we don't have any web gui capability on them. I used to use the Sun patch manager gui on my other systems and it found updates for me, but I don't have that capability here. I'm trying to find out what patches upgraded the SUNWlxsl package.
Edited by: 942145 on Jun 22, 2012 2:18 PM
NM - I answered my own question.
Do this:
pkgchk -l -p /path/to/file
This will give you what package it belongs to.
showrev -p | grep SUNWlxsl (or whatever package you are looking for)
Patch: 125731-05 Obsoletes: Requires: Incompatibles: Packages: SUNWlxml, SUNWlxsl
This will show the last patch applied to that package. From there you can search for future versions of the patch. In my case, it is -07. However, I never had the SUNWlxsl package installed (only the SUNWlxml), so that last patch applied didn't update the files since they didn't exist. I need to apply -07 to bring it up to date.
Edited by: 942145 on Jun 22, 2012 2:35 PM

Similar Messages

  • What Sun Studio 12 patches are included in Sun Studio 12 Update 1?

    I can't seem to find a bug list or patch list for Sun Studio 12 Update 1. Can someone provide a link or list of what was fixed?
    Secondary, how do I know I have Sun Studio 12 Update 1 installed? Does CC -V say 5.9.1?
    -kto

    I'm not sure about your bug list or patch list question, but on your second question you can use the "version" command.
    Just point it at the Sun Studio component you want to check. So for the CC compiler :
    % version sunstudio12.1/bin/CC
    version of "sunstudio12.1/bin/CC": Sun C++ 5.10 SunOS_sparc 2009/05/02
    You can also just type "version" and that will list all the
    components of the Sun Studio that are in your PATH, like so :
    % version
    Machine hardware: i86pc
    OS version: 5.10
    Processor type: i386
    Hardware: i86pc
    The following components are installed on your system:
    Sun Studio 12 update 1
    Sun Studio 12 update 1 C Compiler
    Sun Studio 12 update 1 C++ Compiler
    Sun Studio 12 update 1 Tools.h++ 7.1
    Sun Studio 12 update 1 C++ Standard 64-bit Class Library
    Sun Studio 12 update 1 Garbage Collector
    Sun Studio 12 update 1 Fortran 95
    Sun Studio 12 update 1 Debugging Tools (including dbx)
    Sun Studio 12 update 1 IDE
    Sun Studio 12 update 1 Performance Analyzer (including collect, ...)
    Sun Studio 12 update 1 Performance Library
    Sun Studio 12 update 1 Scalapack
    Sun Studio 12 update 1 LockLint
    Sun Studio 12 update 1 Building Software (including dmake)
    Sun Studio 12 update 1 Documentation Set

  • Tellp() problems with Sun Complier 6 Update 1

    Hi,
    I am a sysadm and I am a newbie to programming. I am using Sun Complier 6 Update 1 on solaris 7
    tellp() returns a negative in the following sample program. I have complied the same on AIX and it returns the expected value. Can anybody please let me know if I need to do modifications to this program to get the right value or is there a patch for the complier if it is a known problem.
    # include <fstream>
    using namespace std;
    int main () {
    long pos;
    ofstream outfile;
    outfile.open ("test.txt");
    outfile.write("APPLE",1048576);
    pos=outfile.tellp();
    printf("%i",pos);
    outfile.close();
    return 0;
    Thanks
    Sam Kanas

    The expression outfile.write("APPLE", 1048576) says to write 1048576 bytes starting at the address of the literal string "APPLE", which is located at an unpredictable location in the program address space. Writing stops when 1048576 bytes are written, or some sort of error occurs.
    You certainly cannot depend on 1048576 consecutive bytes being available starting at the address of "APPLE", so this program does not have predictable behavior. You can depend only on being able to write "APPLE" followed by the null byte. I'm surprised you did not get a memory fault due to accessing memory at an invalid address.
    If you explain what you actually want to do, perhaps I can suggest a way to accomplish it using valid and portable C++ code.

  • Twice decrease in size of Sun Studio 12 Update 1 in cmp-on to Sun Studio 12

    Recently I have downloaded Sun Studio 12 Update 1 from the Sun server to my computer and I have found an astonishing thing. All the downloaded archives are much smaller (approximately twice) then corresponding archives I "pumped down" previous time, half a year ago. I remind this was a Sun Studio 12 distribution (no word update in the name), the archives were called for example "SunStudio12ml-solaris-x86-200709-pkg.tar.bz2" (the present corresponding archive is SunStudio12u1-SunOS-x86-pkgs-ML.tar.bz2). All new archives are smaller then previous. I didn't install Sun Studio on my computer, still I'd like to understand why the size of these distributions reduced. By no means I think that the quality of the program is determined by its size, but the trend of the modern software is such that every new release of the product is larger then previous, as it accumulates additions, acquires new features. Why this new version of SS 12 diminished in size? What are the distinctions of Sun Studio 12 Update 1 from Sun Studio 12? I'd like to get answer from developers familiar to this family of Sun products.
    Edited by: user_1234 on Dec 14, 2009 7:01 PM
    Edited by: user_1234 on Dec 14, 2009 7:03 PM

    Sun Studio 12 shipped with about 250Mb (uncompressed) of Java 5 + patches, along with other patches.
    Sun Studio 12 upate1 did not need all of that. Only about 10Mb (uncompressed) in patches was included.

  • Sun Studio 12 Update 1 - Now Available!

    Sun Studio 12 Update 1, the latest release of Sun Studio Compilers and Tools, is now available for download:
    [http://developers.sun.com/sunstudio/|http://developers.sun.com/sunstudio/]
    Available on Solaris, the next-generation of Solaris, OpenSolaris, and the latest Linux distributions, feature highlights since Sun Studio 12 include:
    - C, C++ and Fortran compiler optimizations for the latest UltraSPARC and SPARC64-based architectures
    - C, C++ and Fortran compiler optimizations for the latest x86 architectures from Intel and AMD including SSSE3, SSSE4a, SSe4.1, SSE4.2 compiler intrinsics support
    - Compiler, debugger, and profiling support for OpenMP 3.0
    - Profiling of distributed MPI-based applications
    - DLight - New tool for unified application and system profiling using Dynamic Tracing (DTrace) technology on Solaris platforms
    - dbxTool - New stand-alone graphical debugger
    - Highly tuned and parallelized scientific libraries, including ScaLAPACK
    - Update IDE based on NetBeans 6.5.1 software
    For more information, visit the Sun Studio 12 Update 1 Features page: [http://developers.sun.com/sunstudio/features/index.jsp|http://developers.sun.com/sunstudio/features/index.jsp]
    For the latest documentation, visit: [http://developers.sun.com/sunstudio/documentation/ss12u1/index.jsp|http://developers.sun.com/sunstudio/documentation/ss12u1/index.jsp]
    Share your experience with us by participating in the Sun Studio Blogging Contest: [http://developers.sun.com/sunstudio/community/campaigns/blogcontest_062009/welcome.jsp|http://developers.sun.com/sunstudio/community/campaigns/blogcontest_062009/welcome.jsp]

    >
    Run Sun Studio 12 (wait, this is Netbeans?):*"sunstudio", the IDE, is based on NetBeans cnd.
    run this command in any terminal (I have no idea what the & does):
    sunstudio &
    The & causes the process to be started in the background (and that's the background in the process sense, not the window manager sense). Otherwise the IDE will start, and as long as it runs, you won't be able to interact with the terminal where you launched the application [unless you do something like hit "ctrl-z", which will suspend the IDE, and then type "bg" to background it].
    Paul

  • Sun Studio 12 Update 1 uninstaller workaround script is published

    Sun Studio 12 Update 1 uninstaller workaround script is published and available for download. It can be used if you've run into any troubles with Sun Studio 12 Update 1 uninstallation.
    Information about downloading and using the script can be found here: [http://developers.sun.com/sunstudio/support/troubleshooting/#failed_uninstall]
    Edited by: igor.nikiforov on Dec 10, 2009 12:50 PM

    >
    Run Sun Studio 12 (wait, this is Netbeans?):*"sunstudio", the IDE, is based on NetBeans cnd.
    run this command in any terminal (I have no idea what the & does):
    sunstudio &
    The & causes the process to be started in the background (and that's the background in the process sense, not the window manager sense). Otherwise the IDE will start, and as long as it runs, you won't be able to interact with the terminal where you launched the application [unless you do something like hit "ctrl-z", which will suspend the IDE, and then type "bg" to background it].
    Paul

  • What level of certification is required for ECC 6 upgrades?

    Hi everyone,
    I'm already a ceritifed SAP technology consultant (up to NW2004), however need to update my certification for ECC 6 (netweaver 7).
    What is the appropriate exam to sit (eg associate or professional) to be allowed to perform productive SAP ECC 6 upgrades?
    Thanks
    Shaun

    Hi everyone,
    Major update on the "do you need to be certified" topic ...
    I finally got a reply from SAP Education regarding two queries I had regarding what level of certification was required as a basis "guy" to perform production SAP installations and upgrades.
    SAP Education wrote:
    You don't need to be certified to do installations. In reality, customers will have much more comfort having an install done by someone who is certified rather than someone who isnu2019t, but ultimately itu2019s the customeru2019s call.
    I then asked if this was applicable for SAP upgrades also ...
    SAP Education wrote:
    Hi Shaun,
    Indeed it is.
    Best of luck!
    I then went on to clarify that their is no support implications for customers who don't you certified Basis personel to perform their upgrades/installs:
    Shaun wrote:
    So your saying that although itu2019s preferable to be certified ... you donu2019t have to be, and there is no impact to the support provided by SAP?
    SAP Education wrote:
    Ultimately, SAP cannot mandate for individuals (excluding those employed by SAP) or SAP Partners to be certified to work on projects. However, customers and partners will employ the consultants to work on the projects, from what we have seen recently customers and partners are now asking for SAP certified consultants to work on implementation and upgrade projects.
    Thus we suggest to have an advantage to be employed on future SAP projects that you are certified in the solution you will be working on, or upgrading to.
    Example: If you are looking to work on an upgrade from CRM 5.0 to CRM 7.0 the customer would look for certified consultants in CRM 7.0
    So it is solely up to you if you wish to certify yourself in the latest release of the solution you are working in.
    I then rang SAP education and had a very pleasant discussion with one of the ladies there.  She went on to explain that the requirement for certification really became an optional thing a few years back.  SAP was no longer in a position not to support customers regardless of who they use to perform their upgrades/installs since a customer continues to pay their yearly maintenance costs - thus SAP is obligated to provide support.

  • How do I remove a 1 showing up in the corner of my sephora app? I don't see an update so what does it mean? Help!

    How do I get rid of a number 1 on the top right hand corner of my sephora app? There are no updates, so what else can it be? Help!

    Looks like you have a notification.
    In the Sephora app, tap the Settings gear then Messages inbox.

  • Downloaded Appleworks 6.2.9 for Mac Updater-2.sim but when i try to open the file i receive the message "legacy image should be updated".  what does this mean and/or entail?

    downloaded Appleworks 6.2.9 for Mac Updater-2.sim but when i try to open the file i receive the message "legacy image should be updated".  what does this mean and/or entail?

    Mavericks is not recognizing the .smi extension - on my Mac it thinks it's a RealPlayer document. You are not going to be able to do anything with this - it requires AppleWorks to be present to be updated, and you can't run AppleWorks on Mavericks (other than by the rather roundabout process of installing Snow Leopard Server in Parallels and installing AppleWorks on that, as described here).

  • Using TimeCapsule with a Comcast modem AND Airport Express. Way slower after updates! What's up?

    I've been running this set up for two years now without a hitch.  Comcast Modem to TimeCapsule by Ethernet.  Then TimeCapsule to Airport Express via WiFi.  It used to work great because my TC was far away from my family room and the AE extended my network flawlessly. 
    After Mavericks and IOS 7.06 installations on my devices (iMac, Macbook Air,  iPhone, and iPad) my wifi seems to be moving at half speed.  I've rebooted the Comcast Modem and  TimeCapsule. I guess I should reboot airport express as well.  But I doubt thats the problem.  I was thinking of asking Comcast to change out Modems but this is a new problem only since updates. What should I do?
    Any ideas?
    Thanks
    Marylyn

    Power off the entire network.....all devices....computers, printers, modem, TC, mobile devices, etc
    Wait a few minutes
    Start the modem first, and let it run a few minutes by itself
    Start the TC next and let it run a full minute
    Keep starting devices one a time about a minute apart until the entire network is powered back up
    Check the network

  • I have an ipod touch 2nd generation, i'm trying to get apps that will work and i cant find any. Its says i need an update because it has ios 3.1.3 , but on itunes it says there is no update ? what apps can i get??

    i have an ipod touch 2nd generation, i'm trying to get apps that will work and i cant find any. Its says i need an update because it has ios 3.1.3 , but on itunes it says there is no update ? what apps can i get??

    Sounds like you actually have a 1st generation as those cannot update beyond iOS 3.1.3.
    Model Identifier Utility
    rachelfromnorthumberland wrote:
    what apps can i get??
    Finding iOS Apps Compatible with Older Devices

  • Hard drive is full software cannot get updated! what should I do?

    Hard drive is full software cannot get updated! what should I do?

    Here are some general tips to keep your Mac's hard drive trim and slim as possible
    You should never, EVER let a conputer hard drive get completely full, EVER!
    With Macs and OS X, you shouldn't let the hard drive get below 15 GBs or less of free data space.
    If it does, it's time for some hard drive housecleaning.
    Follow some of my tips for cleaning out, deleting and archiving data from your Mac's internal hard drive.
    Have you emptied your Mac's Trash icon in the Dock?
    If you use iPhoto, iPhoto has its own trash that needs to be emptied, also.
    If you store images in other locations other than iPhoto, then you will have to weed through these to determine what to archive and what to delete.
    If you use Apple Mail app, Apple Mail also has its own trash area that needs to be emptied, too!
    Delete any old or no longer needed emails and/or archive to disc, flash drives or external hard drive, older emails you want to save.
    Look through your other Mailboxes and other Mail categories to see If there is other mail you can archive and/or delete.
    STAY AWAY FROM DELETING ANY FILES FROM OS X SYSTEM FOLDER!
    Look through your Documents folder and delete any type of old useless type files like "Read Me" type files.
    Again, archive to disc, flash drives, ext. hard drives or delete any old documents you no longer use or immediately need.
    Look in your Applications folder, if you have applications you haven't used in a long time, if the app doesn't have a dedicated uninstaller, then you can simply drag it into the OS X Trash icon. IF the application has an uninstaller app, then use it to completely delete the app from your Mac.
    To find other large files, download an app called Omni Disk Sweeper.
    Download an app called OnyX for your version of OS X.
    When you install and launch it, let it do its initial automatic tests, then go to the cleaning and maintenance tabs and run the maintenance tabs that let OnyX clean out all web browser cache files, web browser histories, system cache files, delete old error log files.
    Typically, iTunes and iPhoto libraries are the biggest users of HD space.
    move these files/data off of your internal drive to the external hard drive and deleted off of the internal hard drive.
    If you have any other large folders of personal data or projects, these should be archived or moved, also, to the optical discs, flash drives or external hard drive and then either archived to disc and/or deleted off your internal hard drive.
    Good Luck!

  • My ipod shuffle disappears after I click on the icon in Itunes. I reinstalled Itunes and my computer has been updated. What else can I do?

    My ipod shuffle disappears after I click on the icon in Itunes. I reinstalled Itunes and my computer has been updated. What else can I do?

    The shuffle icon in iTunes disappears, after you click on the icon in iTunes?  If so, if you do not click on the shuffle icon in iTunes, does it remain there indefinitely?  Are you looking at the shuffle icon in the iTunes sidebar?

  • HT5654 When I connect my iPhone to my computer, it says that I need the latest download for my iTunes to be able to sync. I already have the iOS7 and the 11.1.3 update. Whats the deal?

    When I connect my iPhone to my computer, it says that I need the latest download for my iTunes to be able to sync. I already have the iOS7 and the 11.1.3 update. Whats the deal?

    I have the same thing with my ipad "Bill's Ipad cannot be used because it requires itunes version 11.1 or later"
    Thanks for help.

  • Updated iPhone 4S to ios7. Now there is a number 1 on my settings icon as if there is an update? What does that mean?

    I updated my iPhone 4S to the ios7 and now have a number 1 showing on my settings icon as if there were an update. I am completely updated. What does it mean? How do I get it off?

    It means upi need tp plug it into iTunes and restore it.

Maybe you are looking for

  • ITunes will not recognize my iPod, but windoes DOES.

    When i plug my 30gig iPod into my pc via usb, windows recognizes it, and it even prompts iTunes to pop up. After this however, nothing happens. I cannot get iTunes to recognize my iPod, therefore cannot update it. I have tried all of the steps on the

  • I installed Yosemite on my 2009 Macbook, now it is very slow. Is there a fix, or can I revert back to snow leopard?

    Problem description: I installed Yosemite on my 2009 Macbook, now it is almost unusably slow. Click and wait. EtreCheck version: 2.1.5 (108) Report generated January 4, 2015 at 6:32:53 PM CST Click the [Support] links for help with non-Apple products

  • Photo gallery navigation problem

    i have a photo gallery up on page http://paradisembc-dallas.org/gallery.html that is giving me the blues as far as navigation. i can't go back to images i've already viewed. any assistance would be greatly appreciated.

  • Live Cache Monitoring. DBM_CONNECT DBM Error

    Hi Gurus, I have Installed TM7.0 system which is on NW7.0 with EHP1 on windows server2003 and Oracle DB. i have also installed SCM optimizer. after i installed Live Cache, in transaction LC10 i have maintained the data in integration tab. When i clic

  • Nikon D3s RAW files are underexposed by Lightroom / Camera RAW

    I'm used to shot RAW files only. I recently bought a D3s, alongside with my D700 and I noticed D3s files were darker than D700 ones, by about 1/2 or even 2/3 stop. Initially I thought the problem was one of the cameras, but after some tests I found t