SSL authentica​tion using client certificat​e failing on a fresh new Yoga 2 Pro

I am a doctor and using a laptop to login into an SSL server for secure communication.
I was using an old asus with win 8.1 without a problem. 2 weeks ago I got my new Y2P installed the certificate I got from the IT guys and all worked like a charm! What a wonderful laptop.
And then, my SSD vanished suddently from the system could not boot, so I replaced the first Yoga with and identical one from the store. This time- win 8.1 an IE cannot recognize the newly issued ceertificte and getting an SSL error so cannot open the htpps website. 
Tried onekey recovery, isntalling all windows updates, using a new user nothing works. Back to the old ASUS all working fine. The IT guys said they never had such a problem, after hundreds of certificates issued the same way.
First Y2P worked without a glitch second one does not.
Any ideas?

I had the same problem with my new Yoga Pro 2 when trying to connect to some https sites that worked fine with my previous computer.  I asked a friend that's a systems administrator for help and he had me look for marketing / adware type software that came pre-installed on my machine.  He warned me that more and more new computers are coming pre-loaded with this type of software that many people would consider malware.  He said that such software can cause this type of problem because of how it sits inbetween you and the sites you visit (how your information passes through it).
I found Superfish Visual Discovery, which fits this description, was pre-installed on my machine.  As soon as I uninstalled it my https connection problems went away.  You should check your list of installed programs (go to your Control Panel > Progams > Programs and Features).  If you see "Superfish Inc. VisualDiscovery" in your list of installed programs, that is likely the casue of the problem (at least it was for me).  Hope this helps...

Similar Messages

  • Lowest cost SSL accelerator for HTTPS client certificate auth testing

    Hi,
    I need to test some some https connections that use client certificate authentication and need a low cost ebay-purchasable cisco ssl box (I think).
    My understanding is that some Cisco products can terminate https connections (once client cert auth is successful) and then pass on the http connection with a cookie value set with the Subject DN information from the client certificate - correct me if I'm wrong :).
    So any suitable kit for this?
    Thanks,
    Marc.

    Hi Oliver,
    Have a look at this http://forum.java.sun.com/thread.jsp?forum=2&thread=258908
    You may find the answer to your question there.
    Majid.

  • Logon to BI using client certificate (SmartCard)

    It is possible to configure BI for logon using client certificate (for example stored on chip card). Can somebody tell me how? Thank you very much...

    It is certainly possible to have an external authentication method plug-in into your BI Installation. Therefore I would assume that could also include something you can integrate with your smart card. You will have to use and setup SSO though. We use SSO with a fully external user database. We use a custom Java authenticator module that uses JCIFs libraries to authenticate users over NTLM against a Windows Domain Controller (http://jcifs.samba.org/src/docs/ntlmhttpauth.html). It's a very neat solution that I think Oracle should incorporate in OBIEE since it means there is no need to setup LDAP or maintain group membership in your Active Directory. This basically does the "authentication" bit. For authorisation we use Init Blocks. The user is validated against a database which confirms it's "authorised" to login to OBIEE and gets all the user groups that it should get from our DB.

  • Can I move my iWeb from mac-mini to my new macbook pro ? iLife 11 does not have iWeb and I really want to use it to update my website on my new macbook Pro instead of Mac mini

    Can I move my iWeb from mac-mini to my new macbook pro ? iLife 11 does not have iWeb and I really want to use it to update my website on my new macbook Pro instead of Mac mini

    There is no license required for iWeb.  Just do a Wyodor suggested and you'll be ready to go. If you're running Lion however, consider the following:
    In Lion the Library folder is now invisible. To make it permanently visible enter the following in the Terminal application window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    To open your domain file in Lion or to switch between multiple domain files Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an application.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    You can download an already compiled version with this link: iWeb Switch Domain.
    Just launch the application, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    WARNING: iWeb Switch Domain will overwrite an existing Domain.sites2 file if you select to create a new domain in the same folder.  So rename your domain files once they've been created to something other than the default name.
    OT

  • Sun Directory Server 6.0 doesn't use client certificate

    Hi All,
    From a program, if I try to connect twice to a directory server 6.0 over SSL, first with simple anonymous bind and 2nd with client certificate, both the time it goes through, but 2nd time it doesn't use the client certificate. From the access log we get to know that it's not using the client certificate as it is expected for the 2nd attempt.
    Here is the sample code that I have -
    int main()
        int ret;
        char host[] = "xxx";
        int port = 1234;
        char path[] ="/home/xxx/certs";
        int version = LDAP_VERSION3;
        ret = ldapssl_client_init(path, NULL);
        if(ret) printf("ldapssl_client_init failed"), exit(1);
        LDAP *handle = ldapssl_init(host, port, 1);
        if(!handle) printf("ldapssl_init failed"), exit(1);
        ret = ldap_set_option( handle, LDAP_OPT_PROTOCOL_VERSION, &version);
        if(ret) printf("ldap_set_option failed"), exit(1);
        ret = ldap_simple_bind_s(handle, NULL, NULL);
        if(ret) printf("ldap_simple_bind_s failed"), exit(1);
        ret = ldap_unbind_s(handle);
        if(ret) printf("ldap_unbind_s failed"), exit(1);
        printf("1. Successfully connected and disconnected\n");
        ret = ldapssl_clientauth_init(path, NULL, 1, path, NULL);
        if(ret) printf("ldapssl_clientauth_init failed"), exit(1);
        LDAP *ldaph = NULL;
        ldaph = ldapssl_init(host, port, 1);
        if(!ldaph) printf("ldapssl_init failed"), exit(1);
        ret = ldap_set_option( ldaph, LDAP_OPT_PROTOCOL_VERSION, &version);
        if(ret) printf("ldap_set_option failed"), exit(1);
        ret = ldapssl_enable_clientauth(ldaph, (char*) "", (char*) "password", (char*) "nickname");
        if(ret) printf("ldapssl_enable_clientauth failed"), exit(1);
        struct berval* sc = NULL;
        ret = ldap_sasl_bind_s(ldaph, NULL, LDAP_SASL_EXTERNAL, NULL, NULL, NULL, &sc);
        if(ret) printf("ldap_sasl_bind_s failed"), exit(1);
        ret = ldap_unbind_s(ldaph);
        if(ret) printf("ldap_unbind_s failed"), exit(1);
        printf("2. Successfully connected and disconnected\n");
        return 0;
    }Any help/pointers in this regard will be highly appreciated.
    Thanks in advance.
    Regards,
    // Rahul

    The program works absolutely fine. Both the times it binds to the directory server. But the 2nd time it doesn't use the client certificate as we expect.
    Here is the output -
    1. Successfully connected and disconnected
    2. Successfully connected and disconnected
    and here is the access log contents -
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - fd=39 slot=39 LDAPS connection from 1.2.3.4:1234 to 1.2.3.4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - SSL 128-bit RC4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=0 msgId=1 - BIND dn="" method=128 version=3
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn=""
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=1 msgId=2 - UNBIND
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=1 msgId=-1 - closing from 1.2.3.4:1234 - U1 - Connection closed by unbind client -
    [13/Jul/2010:17:31:45 +0530] conn=1075 op=-1 msgId=-1 - fd=40 slot=40 LDAPS connection from 1.2.3.4:1234 to 1.2.3.4
    [13/Jul/2010:17:31:45 +0530] conn=1074 op=-1 msgId=-1 - closed.
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=-1 msgId=-1 - SSL 128-bit RC4
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=0 msgId=1 - BIND dn="" method=sasl version=3 mech=EXTERNAL
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=0 msgId=1 - RESULT err=0 tag=97 nentries=0 etime=0 dn=""
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=1 msgId=2 - UNBIND
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=1 msgId=-1 - closing from 1.2.3.4:1234 - U1 - Connection closed by unbind client -
    [13/Jul/2010:17:31:46 +0530] conn=1075 op=-1 msgId=-1 - closed.
    Thanks and Regards,
    // Rahul

  • ACE 4710 - Continuing SSL Session Setup with Client Certificate Failures

    Dears,
    I have a Cisco ACE (image: c4710ace-t1k9-mz.A5_2_1.bin) configured for SSL termination with load balancing in addition to client authentication. I have a situation that require the ACE to pass expired client certificate currently deployed on some clients.
    which is the best option from the following to apply using the authentication-failure command in parameter map SSL configuration mode.
    - authentication-failure ignore [Only]
    OR
    - authentication-failure redirect cert-expired
    OR
    - authentication-failure ignore with authentication-failure redirect cert-expired
    Appreciate your help

    Dear Kanwalsi
    To pass only cert-expired !!! what do you think to apply the following
    parameter-map type ssl TEST
    authentication-failure ignore
    authentication-failure redirect unknown-issuer url http://TEST.com/sorry.html 302
    authentication-failure redirect no-client-cert url http://TESt.com/sorry.html 302
    authentication-failure redirect cert-has-signature-failure url http://TESt.com/sorry.html 302
    authentication-failure redirect cert-other-error url http://TESt.com/sorry.html 302
    authentication-failure redirect cert-revoked url http://TESt.com/sorry.html 302
    authentication-failure redirect crl-has-expired url http://TESt.com/sorry.html 302
    authentication-failure redirect crl-not-available url http://TESt.com/sorry.html 302

  • Webdav using Client Certificates

    Hello all
    Finder (10.5.6) seems not to be able to use Webdav with client certificates. Especially in conjunction with Alfresco Share this would be nice.
    Any ideas?
    Pascal.

    Hi,
    > have a question, if we use this mechansim do we have to mainatin User's cerificate in user master or >this is not needed as we are accepting the connection from the intermediary server which is trusted by >the J2EE engine.
    I think it depends from your Biller Direct application.
    In my company we use Rosettanet B2B with SAP XI and have this setup :
    Internet -- https --> Apache -- https --> Web dispatcher -- https --> SAP J2EE PI
    The client certificate from the B2B partner is sent up to SAP PI and we did not have to set the certificate in the user mast.
    We did have to import the certificate in the J2EE keystore and to configure the Rosettanet connector.
    Regards,
    Olivier

  • Google chrome : client certificate install fails

    when i try ti install client certificate on google chrome, the error says : The server returned invalid client certificate.
    This is happening in Google chrome under the certsrv site to install the issued certificate. Does chrome support client certificates?

    Question: 
    What does Error
    207 (net::ERR_CERT_INVALID) mean when I try to collect my certificate (CodeSigning or Email)?
    Answer: 
    This means that you have tried to obtain your certificate using the Google Chrome browser. At this present time Google Chrome does
    not support chained certificate enrollment and you can not use another browser to collect this certificate because the private key was generated with Chrome and you must start the process from the beginning again using another browser such as Mozilla Firefox
    or Microsoft Internet Explorer.
    Source:
    https://support.comodo.com/index.php?/Default/Knowledgebase/Article/View/776/38/ 

  • Authentication using Client Certificates

    Has anyone implmented client certificate authentication where after user has entered her certificate id/pwd they get direct access to the portal without getting the portal logon page again.
    I am using EP6 SP2, i get the request for client certficates but after that i get directed to the portal form based logon page. How do i bypass this and gain access to the portal.
    regards
    anton

    Hi Kyle,
    Here is my authscheme.xml file....i placed the CreateTicketLoginModule after the CertLoginModule but it didnt work. Have i done this correctly. By the way i am using EP6sp2 J2EE 6.20 pl 28
    thanks anton
    authschemes>
            <!--  authschemes, the name of the node is used -->
            <authscheme name="uidpwdlogon">
                <!-- multiple login modules can be defined -->
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.CertLoginModule</loginModuleName>
                    <controlFlag>SUFFICIENT</controlFlag>
                    <options></options>
                </loginmodule>
             <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.CreateTicketLoginModule</loginModuleName>
                    <controlFlag>SUFFICIENT</controlFlag>
                    <options></options>
                </loginmodule>
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.DefaultLoginModule</loginModuleName>
                    <!-- specifying whether this LoginModule is REQUIRED, REQUISITE, SUFFICIENT, or OPTIONAL -->
                    <controlFlag>REQUISITE</controlFlag>
                    <options></options>
                </loginmodule>
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.CertPersisterLoginModule</loginModuleName>
                    <controlFlag>REQUIRED</controlFlag>
                    <options></options>
                </loginmodule>
                <priority>21</priority>
                <!-- the frontendtype TARGET_FORWARD = 0, TARGET_REDIRECT = 1, TARGET_JAVAIVIEW = 2 -->
                <frontendtype>2</frontendtype>
                <!-- target object -->
                <frontendtarget>com.sap.portal.runtime.logon.default</frontendtarget>
            </authscheme>
            <authscheme name="certlogon">
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.CertLoginModule</loginModuleName>
                    <controlFlag>REQUISITE</controlFlag>
                    <options></options>
                </loginmodule>
             <priority>20</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.certlogon</frontendtarget>
            </authscheme>
            <authscheme name="basicauthentication">
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.DefaultLoginModule</loginModuleName>
                    <controlFlag>REQUIRED</controlFlag>
                    <options></options>
                </loginmodule>
                <priority>20</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.basicauthentication</frontendtarget>
            </authscheme>
            <authscheme name="header">
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.HeaderVariableLoginModule</loginModuleName>
                    <controlFlag>OPTIONAL</controlFlag>
                    <options>Header=remote-user</options>
                </loginmodule>
                <priority>5</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.header</frontendtarget>
            </authscheme>
            <authscheme name="guest">
                <loginmodule>
                    <loginModuleName>com.sap.security.core.logon.imp.AnonymousLoginModule</loginModuleName>
                    <controlFlag>OPTIONAL</controlFlag>
                    <options></options>
                </loginmodule>
                <priority>1</priority>
                <frontendtype>2</frontendtype>
                <frontendtarget>com.sap.portal.runtime.logon.anonymous</frontendtarget>
            </authscheme>
            <!-- Reserved 'anonymous' authscheme added for being in the list of authschemes -->
            <authscheme name="anonymous">
                <priority>-1</priority>
            </authscheme>
        </authschemes>
        <!--  References for Authentication Schemes, this section must be after authschemes -->
        <authscheme-refs>
            <authscheme-ref name="default">
                <authscheme>uidpwdlogon</authscheme>
            </authscheme-ref>
        </authscheme-refs>
        <authscheme-refs>
            <authscheme-ref name="UserAdminScheme">
                <authscheme>uidpwdlogon</authscheme>
            </authscheme-ref>
        </authscheme-refs>
    </document>

  • Use  back up from Time Machine to start new MacBook Pro

    Using the Time Machine and an external Hard Drive I  back up my 3 years old MacBook  (running Lion  and with hard drive of  250 GB)
    I am planning to purchase a new MacBook Pro (with a hard drive of 750 GB)
    how  do I transfer all my software  and Data to my new computer?
    if  I plug my  Time Machine to it will set up my new computer just the way I have my old Computer?
    will all software work properly?
    Any thing else I should  have in Consideration??

    K2spuky wrote:
    Using the Time Machine and an external Hard Drive I  back up my 3 years old MacBook  (running Lion  and with hard drive of  250 GB). Will all software work properly?
    The old machine is running Lion already, then all your programs are ready already for the new machine with Lion.
    how  do I transfer all my software  and Data to my new computer?
    if  I plug my  Time Machine to it will set up my new computer just the way I have my old Computer?
    Plug the TimeMachine drive into the new computer, boot it and when you go through the setup there will be a opportunity to transfer from the TM drive.
    Shouldn't be a problem as your already on Lion.
    Of course if your older machine software is crappy and slow, so will your new machine.
    You might decide to fresh install instead, create the same user on the new machine then install all your programs from fresh original sources and then transfer files manually from the older machine, droppping the contents right into the same user folders as on the old machine.
    More work, but actually saves work if your older machine is screwed up. Because Setup and Migration assistant has no brains, it transfers crap just as well as the good stuff. and despite what it says, it seems to transfer programs even if you state you just want files. Why I don't know, it's what someone said.
    I never use either, because reinstalling the whole OS again, especially Lion with the Internet download, is not worth the chance. I'd rather download a few programs and transfer manually, takes about the same amount of time.

  • Can I use my old Design Suite CS5 on my new MacBook Pro?

    I bought the Design Suite CS5 two, three years ago and now I have bought a new MacBook Pro. I've heard that I cannot use the programs that I bought, and that I now have to start subscribing to the programs using Creative Cloud. Is this true?

    Absolutely untrue.  Download, install, and activate your software from https://helpx.adobe.com/creative-suite/kb/cs5-product-downloads.html
    Deactivate the software on your old computer if you don't use it any more.

  • Can I use my old AIr Port Extreme with my new Mac Pro with Lion installed? It has worked well with the G-4 that I'm replacing.

    Can I use my old Airport Exteme with my new Mac Pro with Lion installed? It has worked well for years with my G-4.

    I'm smarter now. It worked fine.

  • Use of an Older Power Cable with a New MacBook Pro

    I have purchased a new MacBook Pro 15". It comes with the power cord with the silver "L-shaped" magnetic end.
    My old laptop, which is a MacBook from around 2006, came with the white squarish magnetic end. It fits just fine on the new MacBook pro and seems to work fine.
    Is it safe to also use this as an additional power cord for my new MacBook Pro? (I know, it seems like a silly question, but when dealing with electricity issues, it's always good to double check. I'd hate to find out that for some reason something about the old cord fries something on the new system.)

    The older Macbook's power adapter has a maximum output of 65 watts, while the 15" McBook Pro comes with an 85 watt adapter. The 65W adapter will work, but with certain caveats — see this post of mine from the day before yesterday for a fuller explanation:
    http://discussions.apple.com/message.jspa?messageID=12625011#12625011

  • Client certificate authentication fails when the CA list sent by server is big and the list goes in 2 encrypted messages.

    I checked with IE browser(on windows and MAC) and MAC safari packet capture. The CA certificate list is sent by server in 2 messages as the list is too big. I compared packet by packet exchanges in both the browsers. It is same till TLSv1 handshake is done for the ldap certificate authentication. It works fine in IE without any issues though the certificate list is divided into 2 messages.
    In case of safari, after the TLSv1 handshake is done successfully, it again sends a SSLv3 'Client Hello' message and initiates the whole handshake process again and the server responds to it too till the handshake is complete. But it brakes after that with the server showing 'Cant establish secure connection' at the browser.
    The issue occurs only in case of MAC safari for big list of CA certs >150(where it crosses the max limit) from server. It is not clear why safari alone is switching from TLSv1 to SSLv3 in this scenario.
    NOTE: With shorter list of CA certs at server when it goes in one message, safari works fine and all messages are only TLSv1 and does not repeat the handshake process.
    I have checked on safari version 5 and 6.0.3 on OS X mountain lion.
    Is there any specific reason why MAC safari behaves like this or somethings needs to be done at server?
    Any help would be appreciated.

    I checked with IE browser(on windows and MAC) and MAC safari packet capture. The CA certificate list is sent by server in 2 messages as the list is too big. I compared packet by packet exchanges in both the browsers. It is same till TLSv1 handshake is done for the ldap certificate authentication. It works fine in IE without any issues though the certificate list is divided into 2 messages.
    In case of safari, after the TLSv1 handshake is done successfully, it again sends a SSLv3 'Client Hello' message and initiates the whole handshake process again and the server responds to it too till the handshake is complete. But it brakes after that with the server showing 'Cant establish secure connection' at the browser.
    The issue occurs only in case of MAC safari for big list of CA certs >150(where it crosses the max limit) from server. It is not clear why safari alone is switching from TLSv1 to SSLv3 in this scenario.
    NOTE: With shorter list of CA certs at server when it goes in one message, safari works fine and all messages are only TLSv1 and does not repeat the handshake process.
    I have checked on safari version 5 and 6.0.3 on OS X mountain lion.
    Is there any specific reason why MAC safari behaves like this or somethings needs to be done at server?
    Any help would be appreciated.

  • Safari 5.1 crashes when using Client Certificate

    I just upgraded to OS X 10.6.8 and Safari 5.1; Safari crashes when hitting a web site that uses a client-side cert. Tried reinstalling the cert, still nothing. It works fine on Chrome, so something screwy is going on.
    Any workarounds?

    Here is the latest crash report. Thanks:
    Process:         Safari [91637]
    Path:           /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         5.1 (6534.50)
    Build Info:      WebBrowser-75345000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [89726]
    Date/Time:       2011-08-01 15:39:36.819 -0700
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          260514 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  212028 sec
    Per-App Crashes Since Last Report:   6
    Anonymous UUID:                     0DB2D63B-CCE6-4A6E-B088-CAA343E3A6A0
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at0x0000000000000019
    Crashed Thread:  0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
    0  libstdc++.6.dylib              0x00007fff85a7e798 __dynamic_cast + 36
    1  com.apple.security                     0x00007fff8012d18dSecurity::KeychainCore::Identity::required(OpaqueSecIdentityR ef*) + 43
    2  com.apple.security                     0x00007fff8012d07eSecIdentityCopyCertificate + 54
    3  com.apple.Safari.framework     0x00007fff893099b0SecIdentityCopySSLClientAuthenticationChain + 70
    4  com.apple.Safari.framework     0x00007fff8914c553Safari::useIdentityForChallenge(OpaqueSecIdentityRef*,Safari: :WK::AuthenticationChallenge const&) + 32
    5  com.apple.Safari.framework     0x00007fff8914d280Safari::BrowserContentViewController::useClientCertificatesFo rAuthenticationChallenge(Safari::WK::AuthenticationChallengeconst&) + 354
    6  com.apple.Safari.framework     0x00007fff891415e2Safari::BrowserContentViewController::didReceiveAuthenticatio nChallenge(Safari::WK::AuthenticationChallengeconst&) + 78
    7  com.apple.Safari.framework     0x00007fff892bf06aSafari::WK::didReceiveAuthenticationChallengeInFrame(OpaqueWK Page const*,OpaqueWKFrame const*, OpaqueWKAuthenticationChallenge const*, void const*) + 99
    8  com.apple.WebKit2                    0x00007fff87bfd2f9WebKit::WebPageProxy::didReceiveAuthenticationChallenge(unsig ned long long,WebCore::AuthenticationChallenge const&, unsigned long long) + 133
    9  com.apple.WebKit2                    0x00007fff87bfcc49 voidCoreIPC::handleMessage<Messages::WebPageProxy::DidReceiveAuthenticationChal lenge,WebKit::WebPageProxy, void (WebKit::WebPageProxy::*)(unsigned long long,WebCore::AuthenticationChallenge const&, unsigned longlong)>(CoreIPC::ArgumentDecoder*, WebKit::WebPageProxy*, void (WebKit::WebPageProxy::*)(unsignedlong long, WebCore::AuthenticationChallenge const&, unsigned long long)) +172
    10 com.apple.WebKit2                   0x00007fff87bb4eb0WebKit::WebProcessProxy::didReceiveMessage(CoreIPC::Connectio n*,CoreIPC::MessageID, CoreIPC::ArgumentDecoder*) + 162
    11 com.apple.WebKit2                   0x00007fff87bb4d9cCoreIPC::Connection::dispatchMessage(CoreIPC::Connection::Mes sage<CoreIPC::ArgumentDecoder>&)+ 138
    12 com.apple.WebKit2                   0x00007fff87bb4cfbCoreIPC::Connection::dispatchMessages() + 121
    13 com.apple.WebKit2                   0x00007fff87bb1bef RunLoop::performWork()+ 135
    14 com.apple.WebKit2                   0x00007fff87bb1b3dRunLoop::performWork(void*) + 83
    15 com.apple.CoreFoundation                0x00007fff82bf5401__CFRunLoopDoSources0 + 1361
    16 com.apple.CoreFoundation                0x00007fff82bf35f9 __CFRunLoopRun +873
    17 com.apple.CoreFoundation                0x00007fff82bf2dbfCFRunLoopRunSpecific + 575
    18 com.apple.HIToolbox                0x00007fff850737eeRunCurrentEventLoopInMode + 333
    19 com.apple.HIToolbox                0x00007fff850735f3 ReceiveNextEventCommon +310
    20 com.apple.HIToolbox                0x00007fff850734acBlockUntilNextEventMatchingListInMode + 59
    21 com.apple.AppKit                      0x00007fff89944eb2 _DPSNextEvent + 708
    22 com.apple.AppKit                      0x00007fff89944801 -[NSApplicationnextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    23 com.apple.Safari.framework                0x00007fff89131452-[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 177
    24 com.apple.AppKit                      0x00007fff8990a68f -[NSApplication run]+ 395
    25 com.apple.AppKit                      0x00007fff899033b0 NSApplicationMain +364
    26 com.apple.Safari.framework                0x00007fff892ebf62 SafariMain + 200
    27 com.apple.Safari                       0x0000000100000f1c 0x100000000 + 3868
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0  libSystem.B.dylib                        0x00007fff85c9ec0a kevent + 10
    1  libSystem.B.dylib                        0x00007fff85ca0add_dispatch_mgr_invoke + 154
    2  libSystem.B.dylib                        0x00007fff85ca07b4_dispatch_queue_invoke + 185
    3  libSystem.B.dylib                        0x00007fff85ca02de_dispatch_worker_thread2 + 252
    4  libSystem.B.dylib                        0x00007fff85c9fc08 _pthread_wqthread+ 353
    5  libSystem.B.dylib                        0x00007fff85c9faa5 start_wqthread +13
    Thread 2: WebCore: IconDatabase
    0  libSystem.B.dylib                        0x00007fff85cc0a6a __semwait_signal +10
    1  libSystem.B.dylib                        0x00007fff85cc4881 _pthread_cond_wait+ 1286
    2   com.apple.WebCore                  0x00007fff83815749WebCore::IconDatabase::syncThreadMainLoop() + 265
    3  com.apple.WebCore                  0x00007fff83812c88WebCore::IconDatabase::iconDatabaseSyncThread() + 296
    4  libSystem.B.dylib                        0x00007fff85cbefd6 _pthread_start +331
    5  libSystem.B.dylib                        0x00007fff85cbee89 thread_start + 13
    Thread 3:
    0  libSystem.B.dylib                        0x00007fff85c85d7a mach_msg_trap + 10
    1  libSystem.B.dylib                        0x00007fff85c863ed mach_msg + 59
    2   com.apple.QuartzCore               0x00007fff81281396CA::Render::Server::server_thread(void*) + 177
    3  com.apple.QuartzCore               0x00007fff812812d6 thread_fun + 34
    4  libSystem.B.dylib                        0x00007fff85cbefd6 _pthread_start +331
    5  libSystem.B.dylib                        0x00007fff85cbee89 thread_start + 13
    Thread 4: Safari: SafeBrowsingManager
    0  libSystem.B.dylib                        0x00007fff85c85d7a mach_msg_trap + 10
    1  libSystem.B.dylib                        0x00007fff85c863ed mach_msg + 59
    2  com.apple.CoreFoundation                  0x00007fff82bf3932 __CFRunLoopRun +1698
    3  com.apple.CoreFoundation                  0x00007fff82bf2dbfCFRunLoopRunSpecific + 575
    4  com.apple.Safari.framework     0x00007fff892a4d39Safari::MessageRunLoop::threadBody() + 107
    5   com.apple.Safari.framework     0x00007fff892a4d73Safari::MessageRunLoop::threadCallback(void*) + 9
    6  libSystem.B.dylib                        0x00007fff85cbefd6 _pthread_start +331
    7  libSystem.B.dylib                        0x00007fff85cbee89 thread_start + 13
    Thread 5: Safari: SnapshotStore
    0  libSystem.B.dylib                        0x00007fff85cc0a6a __semwait_signal +10
    1  libSystem.B.dylib                        0x00007fff85cc4881 _pthread_cond_wait+ 1286
    2  com.apple.JavaScriptCore        0x00007fff8863f690 ***::ThreadCondition::timedWait(***::Mutex&,double) + 64
    3  com.apple.Safari.framework     0x00007fff8931ef6dSafari::MessageQueueWaitResultSafari::MessageQueue<***::RefPt r<Safari::SnapshotStore::DiskAccessMessage>>::waitForMessageFilteredWithTimeout< bool ()(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&)>(***::RefPtr<Safari: :SnapshotStore::DiskAccessMessage>&,bool (&)(***::RefPtr<Safari::SnapshotStore::DiskAccessMessage>&),double) + 149
    4  com.apple.Safari.framework     0x00007fff8931d36d Safari::SnapshotStore::diskAccessThreadBody()+ 379
    5  com.apple.Safari.framework     0x00007fff8931db27Safari::SnapshotStore::diskAccessThreadCallback(void*) + 9
    6  libSystem.B.dylib                        0x00007fff85cbefd6 _pthread_start +331
    7  libSystem.B.dylib                        0x00007fff85cbee89 thread_start + 13
    Thread 6: com.apple.CFSocket.private
    0  libSystem.B.dylib                        0x00007fff85cc9932select$DARWIN_EXTSN + 10
    1  com.apple.CoreFoundation                  0x00007fff82c15498 __CFSocketManager+ 824
    2  libSystem.B.dylib                        0x00007fff85cbefd6_pthread_start + 331
    3  libSystem.B.dylib                        0x00007fff85cbee89 thread_start + 13
    Thread 7:
    0  libSystem.B.dylib                        0x00007fff85c9fa2a __workq_kernreturn+ 10
    1  libSystem.B.dylib                        0x00007fff85c9fe3c _pthread_wqthread+ 917
    2  libSystem.B.dylib                        0x00007fff85c9faa5 start_wqthread +13
    Thread 8:
    0  libSystem.B.dylib                        0x00007fff85cc0a6a __semwait_signal +10
    1  libSystem.B.dylib                        0x00007fff85cc4881 _pthread_cond_wait+ 1286
    2  com.apple.CoreVideo                0x00007fff889f9342CVDisplayLink::runIOThread() + 804
    3  com.apple.CoreVideo                0x00007fff889f8fe3 startIOThread(void*) +139
    4  libSystem.B.dylib                        0x00007fff85cbefd6_pthread_start + 331
    5  libSystem.B.dylib                        0x00007fff85cbee89 thread_start + 13
    Thread 0 crashed with X86 Thread State(64-bit):
    rax: 0x0000000000000019  rbx:0x0000000000000019  rcx:0x0000000000000000  rdx: 0x00007fff7000caf0
    rdi: 0x0000000000000019  rsi:0x00007fff70023d30  rbp:0x00007fff5fbfe1b0  rsp:0x00007fff5fbfe160
      r8: 0x000000010055af78   r9:0x0000000100163490  r10:0x0000000000000001  r11:0x00007fff800ac330
    r12: 0x00007fff70023d30  r13: 0x0000000000000000  r14: 0x00007fff7000caf0  r15: 0x00007fff5fbfe448
    rip: 0x00007fff85a7e798  rfl:0x0000000000010206  cr2:0x0000000000000019
    Binary Images:
          0x100000000 -       0x100000fff  com.apple.Safari 5.1(6534.50) <1F791A92-0E1B-FA63-8447-AD69C689F0D3>/Applications/Safari.app/Contents/MacOS/S afari
          0x114c10000 -       0x114da3fe7  GLEngine ??? (???)<53A8A7E8-4846-D236-F3D9-DA3F2AF686D8>/System/Library/Frameworks/OpenGL.fr amework/Resources/GLEngine.bundle/GLEngine
          0x114dea000 -       0x11520dfef  libclh.dylib 3.1.1C  (3.1.1)<432F5475-F934-92A0-FB49-78F03DA82176>/System/Library/Extensions/GeForce GLDriver.bundle/Contents/MacOS/libclh.dylib
          0x115297000 -        0x1152bdfff  GLRendererFloat ??? (???)<490221DD-53D9-178E-3F31-3A4974D34DCD>/System/Library/Frameworks/OpenGL.fr amework/Resources/GLRendererFloat.bundle/GLRendererFloat
          0x200000000 -       0x200787fe7 com.apple.GeForceGLDriver 1.6.36 (6.3.6) <4F23289A-D45A-0630-8D7F-4C35A4D2AA00>/System/Library/Extensions/GeForceGLDrive r.bundle/Contents/MacOS/GeForceGLDriver
       0x7fff5fc00000 -    0x7fff5fc3bdef  dyld 132.1 (???)<69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
       0x7fff80003000 -     0x7fff80088ff7  com.apple.print.framework.PrintCore 6.3(312.7) <CDFE82DD-D811-A091-179F-6E76069B432D>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
       0x7fff80089000 -     0x7fff80312ff7  com.apple.security 6.1.2 (55002)<4419AFFC-DAE7-873E-6A7D-5C9A5A4497A6>/System/Library/Frameworks/Securit y.framework/Versions/A/Security
       0x7fff80313000 -    0x7fff8035aff7  com.apple.coreui 2(114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
       0x7fff80471000 -    0x7fff804efff7  com.apple.CoreText151.10 (???) <54961997-55D8-DC0F-2634-674E452D5A8E>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
       0x7fff804f0000 -    0x7fff804fffef  com.apple.opengl1.6.13 (1.6.13) <516098B3-4517-8A55-64BB-195CDAA5334D>/System/Library/Frameworks/OpenGL.framewo rk/Versions/A/OpenGL
       0x7fff80500000 -    0x7fff80543ff7  libRIP.A.dylib545.0.0 (compatibility 64.0.0) <5FF3D7FD-84D8-C5FA-D640-90BB82EC651D>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resource s/libRIP.A.dylib
       0x7fff80544000 -    0x7fff8054aff7  com.apple.DiskArbitration 2.3 (2.3)<857F6E43-1EF4-7D53-351B-10DE0A8F992A>/System/Library/Frameworks/DiskArbit ration.framework/Versions/A/DiskArbitration
       0x7fff8054b000 -    0x7fff80689fff  com.apple.CoreData102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A>/System/Library/Frameworks/CoreData.frame work/Versions/A/CoreData
       0x7fff806e4000 -    0x7fff80880fff  com.apple.WebKit6534 (6534.50) <05AEA122-3F31-0F56-4AA6-E84140C53785>/System/Library/Frameworks/WebKit.framewo rk/Versions/A/WebKit
       0x7fff80881000 -    0x7fff80883fff  libRadiance.dylib??? (???) <A9DB4D5D-4072-971B-DEF6-DDE645F415EA>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/lib Radiance.dylib
       0x7fff80884000 -    0x7fff8088ffff com.apple.CrashReporterSupport 10.6.7 (258)<A2CBB18C-BD1C-8650-9091-7687E780E689>/System/Library/PrivateFrameworks/Cr ashReporterSupport.framework/Versions/A/CrashReporterSupport
       0x7fff80890000 -    0x7fff80891ff7  com.apple.audio.units.AudioUnit1.6.7 (1.6.7) <53299948-2554-0F8F-7501-04B34E49F6CF>/System/Library/Frameworks/AudioUnit.fram ework/Versions/A/AudioUnit
       0x7fff808c2000 -    0x7fff80fbeff7 com.apple.CoreGraphics 1.545.0 (???)<58D597B1-EB3B-710E-0B8C-EC114D54E11B>/System/Library/Frameworks/Applicati onServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Cor eGraphics
       0x7fff80fbf000 -    0x7fff81074fe7 com.apple.ink.framework 1.3.3 (107)<8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
       0x7fff8107d000 -    0x7fff8110dfff com.apple.SearchKit 1.3.0 (1.3.0)<4175DC31-1506-228A-08FD-C704AC9DF642> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
       0x7fff8110e000 -    0x7fff8122dfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8)<14115D29-432B-CF02-6B24-A60CC533A09E> /usr/lib/libcrypto.0.9.8.dylib
       0x7fff8122e000 -    0x7fff815cbfe7  com.apple.QuartzCore 1.6.3 (227.37)<16DFF6CD-EA58-CE62-A1D7-5F6CE3D066DD>/System/Library/Frameworks/Quartz Core.framework/Versions/A/QuartzCore
       0x7fff81698000 -    0x7fff816bbfff  com.apple.opencl12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F>/System/Library/Frameworks/OpenCL.framewo rk/Versions/A/OpenCL
       0x7fff816bc000 -    0x7fff81705fef  libGLU.dylib ???(???) <1C050088-4AB2-2BC2-62E6-C969F925A945>/System/Library/Frameworks/OpenGL.framewo rk/Versions/A/Libraries/libGLU.dylib
       0x7fff81706000 -    0x7fff81747fef  com.apple.QD 3.36(???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
       0x7fff8177d000 -    0x7fff81bc4fef  com.apple.RawCamera.bundle3.7.1 (570) <5AFA87CA-DC3D-F84E-7EA1-6EABA8807766>/System/Library/CoreServices/RawCamera.bu ndle/Contents/MacOS/RawCamera
       0x7fff81bc5000 -    0x7fff81bc5ff7  com.apple.Cocoa6.6 (???) <68B0BE46-6E24-C96F-B341-054CF9E8F3B6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
       0x7fff81cb2000 -    0x7fff81d31fe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6)<79E256EB-43F1-C7AA-6436-124A4FFB02D0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
       0x7fff81d32000 -    0x7fff81deffff com.apple.CoreServices.OSServices 359.2 (359.2)<BBB8888E-18DE-5D09-3C3A-F4C029EC7886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
       0x7fff81df0000 -    0x7fff81e18fff com.apple.DictionaryServices 1.1.2 (1.1.2)<E9269069-93FA-2B71-F9BA-FDDD23C4A65E>/System/Library/Frameworks/CoreSer vices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/Di ctionaryServices
       0x7fff81e19000 -    0x7fff81e5afff com.apple.SystemConfiguration 1.10.8 (1.10.2)<78D48D27-A9C4-62CA-2803-D0BBED82855A>/System/Library/Frameworks/System Configuration.framework/Versions/A/SystemConfiguration
       0x7fff81e98000 -    0x7fff81e9cff7  libCGXType.A.dylib545.0.0 (compatibility 64.0.0) <DB710299-B4D9-3714-66F7-5D2964DE585B>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resource s/libCGXType.A.dylib
       0x7fff81e9d000 -    0x7fff81f82fef  com.apple.DesktopServices1.5.11 (1.5.11) <39FAA3D2-6863-B5AB-AED9-92D878EA2438>/System/Library/PrivateFrameworks/Desktop ServicesPriv.framework/Versions/A/DesktopServicesPriv
       0x7fff81ffb000 -    0x7fff82010ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnal ysis
       0x7fff82011000 -    0x7fff82011ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3>/System/Library/Frameworks/Accelerate.fra mework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
       0x7fff82012000 -    0x7fff8212cfef libGLProgrammability.dylib ??? (???)<8A4B86E3-0FA7-8684-2EF2-C5F8079428DB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
       0x7fff8212d000 -    0x7fff82131ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0)<95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
       0x7fff82132000 -    0x7fff8293cfe7  libBLAS.dylib219.0.0 (compatibility 1.0.0) <FC941ECB-71D0-FAE3-DCBF-C5A619E594B8>/System/Library/Frameworks/Accelerate.fra mework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
       0x7fff8297d000 -    0x7fff829c7ff7  com.apple.Metadata10.6.3 (507.15) <2EF19055-D7AE-4D77-E589-7B71B0BC1E59>/System/Library/Frameworks/CoreServices.f ramework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
       0x7fff82ba7000 -    0x7fff82d1efe7  com.apple.CoreFoundation6.6.5 (550.43) <31A1C118-AD96-0A11-8BDF-BD55B9940EDC>/System/Library/Frameworks/CoreFoundation .framework/Versions/A/CoreFoundation
       0x7fff82e30000 -    0x7fff82e3bff7  com.apple.HelpData2.0.5 (34.1.1) <24DC6CD3-02B7-9332-FF6D-F0C545857B55>/System/Library/PrivateFrameworks/HelpDat a.framework/Versions/A/HelpData
       0x7fff82e7a000 -    0x7fff82e80fff libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0)<D2F8C7E3-CBA1-2E66-1376-04AA839DABBB>/System/Library/Frameworks/Applica tionServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/R esources/libCGXCoreImage.A.dylib
       0x7fff82f82000 -    0x7fff83043fff libFontParser.dylib ??? (???)<A00BB0A7-E46C-1D07-1391-194745566C7E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
       0x7fff83804000 -    0x7fff83805ff7 com.apple.TrustEvaluationAgent 1.1 (1)<5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
       0x7fff83806000 -    0x7fff8380cff7  IOSurface ???(???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A>/System/Library/Frameworks/IOSurface.fram ework/Versions/A/IOSurface
       0x7fff8380d000 -     0x7fff84847fff  com.apple.WebCore 6534 (6534.50)<8B0BB24A-C84C-A4F2-5544-C8071A35BBC5>/System/Library/Frameworks/WebKi t.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
       0x7fff84848000 -    0x7fff84859ff7  libz.1.dylib 1.2.3(compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C>/usr/lib/libz.1.dylib
       0x7fff8485a000 -    0x7fff84877ff7  libPng.dylib ???(???) <6D8E515B-E0A2-2BA1-9CAC-8CB8A8B35879>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/lib Png.dylib
       0x7fff84d7f000 -    0x7fff84d8efff  com.apple.NetFS3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145>/System/Library/Frameworks/NetFS.framewor k/Versions/A/NetFS
       0x7fff84f39000 -     0x7fff84f39ff7  com.apple.CoreServices 44 (44)<DC7400FB-851E-7B8A-5BF6-6F50094302FB>/System/Library/Frameworks/CoreServic es.framework/Versions/A/CoreServices
       0x7fff85045000 -    0x7fff85343fff com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8>/System/Library/Frameworks/Carbon.framewo rk/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
       0x7fff85344000 -    0x7fff8537aff7 com.apple.framework.Apple80211 6.2.5 (625.6)<B67C7A65-E4FB-4419-3F31-4482E17EF203> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
       0x7fff8537b000 -    0x7fff8543cfef com.apple.ColorSync 4.6.6 (4.6.6)<BB2C5813-C61D-3CBA-A8F7-0E59E46EBEE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
       0x7fff8543d000 -     0x7fff85492ff7  com.apple.framework.familycontrols 2.0.2(2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7>/System/Library/PrivateFrameworks/FamilyC ontrols.framework/Versions/A/FamilyControls
       0x7fff85493000 -    0x7fff8554cfff  libsqlite3.dylib9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150>/usr/lib/libsqlite3.dylib
       0x7fff8554d000 -    0x7fff85599fff  libauto.dylib ???(???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
       0x7fff8559a000 -    0x7fff855cdff7  libTrueTypeScaler.dylib??? (???) <69D4A213-45D2-196D-7FF8-B52A31DFD329>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrue TypeScaler.dylib
       0x7fff855ce000 -    0x7fff855f5ff7  libJPEG.dylib ???(???) <46A413EA-4FD1-A050-2EF0-6279F3EAD581>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/lib JPEG.dylib
       0x7fff855f6000 -    0x7fff85696fff com.apple.LaunchServices 362.3 (362.3)<B90B7C31-FEF8-3C26-BFB3-D8A48BD2C0DA>/System/Library/Frameworks/CoreSer vices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Launch Services
       0x7fff85697000 -    0x7fff85697ff7 com.apple.Accelerate 1.6 (Accelerate 1.6)<15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB>/System/Library/Frameworks/Accelerate .framework/Versions/A/Accelerate
       0x7fff8580a000 -    0x7fff85820fe7 com.apple.MultitouchSupport.framework 207.11 (207.11)<8233CE71-6F8D-8B3C-A0E1-E123F6406163> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
       0x7fff85821000 -    0x7fff85833fe7  libsasl2.2.dylib3.15.0 (compatibility 3.0.0) <76B83C8D-8EFE-4467-0F75-275648AFED97>/usr/lib/libsasl2.2.dylib
       0x7fff85834000 -     0x7fff85969fff com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7)<E5D7DBDB-6DDF-E6F9-C71C-86F4520EE5A3>/System/Library/Frameworks/AudioTo olbox.framework/Versions/A/AudioToolbox
       0x7fff859af000 -    0x7fff859dffef  com.apple.shortcut1.1 (1.1) <A99C9D8E-290B-B1E4-FEA5-CC5F2FB9C18D>/System/Library/PrivateFrameworks/Shortcu t.framework/Versions/A/Shortcut
       0x7fff859e0000 -    0x7fff859e3ff7 com.apple.securityhi 4.0 (36638)<EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
       0x7fff859e4000 -    0x7fff859f8ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35)<621B7415-A0B9-07A7-F313-36BEEDD7B132>/System/Library/Frameworks/Appli cationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Version s/A/SpeechSynthesis
       0x7fff85a33000 -    0x7fff85ab0fef  libstdc++.6.dylib7.9.0 (compatibility 7.0.0) <35ECA411-2C08-FD7D-11B1-1B7A04921A5C>/usr/lib/libstdc++.6.dylib
       0x7fff85aba000 -    0x7fff85c78ff7 com.apple.ImageIO.framework 3.0.4 (3.0.4)<0A4F51A1-4502-767B-8A4E-F14C6214EF88>/System/Library/Frameworks/Applica tionServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageI O
       0x7fff85c85000 -     0x7fff85e46fef  libSystem.B.dylib 125.2.11 (compatibility1.0.0) <9AB4F1D1-89DC-0E8A-DC8E-A4FE4D69DB69> /usr/lib/libSystem.B.dylib
       0x7fff85e47000 -    0x7fff85f1bfe7 com.apple.CFNetwork 454.12.4 (454.12.4)<C83E2BA1-1818-B3E8-5334-860AD21D1C80> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
       0x7fff85f1c000 -    0x7fff85f27fff com.apple.corelocation 12.3 (12.3)<A6CFB410-2333-8BE3-658B-75A93C90A9CC> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
       0x7fff86051000 -    0x7fff86094fef  libtidy.A.dylib??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
       0x7fff86118000 -    0x7fff861c8fff  edu.mit.Kerberos6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91>/System/Library/Frameworks/Kerberos.frame work/Versions/A/Kerberos
       0x7fff861c9000 -    0x7fff86204fff  com.apple.AE 496.5(496.5) <208DF391-4DE6-81ED-C697-14A2930D1BC6>/System/Library/Frameworks/CoreServices.f ramework/Versions/A/Frameworks/AE.framework/Versions/A/AE
       0x7fff86205000 -    0x7fff86539fef com.apple.CoreServices.CarbonCore 861.39 (861.39)<1386A24D-DD15-5903-057E-4A224FAF580B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
       0x7fff869d9000 -    0x7fff86a04ff7  libxslt.1.dylib3.24.0 (compatibility 3.0.0) <8AB4CA9E-435A-33DA-7041-904BA7FA11D5>/usr/lib/libxslt.1.dylib
       0x7fff86a05000 -    0x7fff86a07fff com.apple.print.framework.Print 6.1 (237.1)<CA8564FB-B366-7413-B12E-9892DA3C6157>/System/Library/Frameworks/Carbon. framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
       0x7fff86c0a000 -    0x7fff86c10ff7 com.apple.CommerceCore 1.0 (9.1)<3691E9BA-BCF4-98C7-EFEC-78DA6825004E>/System/Library/PrivateFrameworks/Co mmerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/Comm erceCore
       0x7fff86c11000 -     0x7fff86c12fff  liblangid.dylib ??? (???)<EA4D1607-2BD5-2EE2-2A3B-632EEE5A444D> /usr/lib/liblangid.dylib
       0x7fff86c13000 -    0x7fff86c8fff7 com.apple.ISSupport 1.9.7 (55)<BAE839AB-9DBD-FB23-F1F1-39445F04D8DA> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
       0x7fff86c90000 -    0x7fff86c93ff7 libCoreVMClient.dylib ??? (???)<E03D7C81-A3DA-D44A-A88A-DDBB98AF910B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
       0x7fff86c94000 -     0x7fff86cdcff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0)<98FC4457-F405-0262-00F7-56119CA107B6>/System/Library/Frameworks/Accelera te.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
       0x7fff86d58000 -    0x7fff86d78ff7  com.apple.DirectoryService.Framework3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586>/System/Library/Frameworks/DirectoryServi ce.framework/Versions/A/DirectoryService
       0x7fff86d84000 -    0x7fff86d93fff  libxar.1.dylib ???(???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
       0x7fff86de2000 -    0x7fff86e7cfe7 com.apple.ApplicationServices.ATS 275.16 (???)<4B70A2FC-1902-5F27-5C3B-5C78C283C6EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
       0x7fff86e7d000 -    0x7fff870fffe7 com.apple.Foundation 6.6.7 (751.62)<6F2A5BBF-6990-D561-2928-AD61E94036D9> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
       0x7fff87100000 -    0x7fff87217fef  libxml2.2.dylib10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B>/usr/lib/libxml2.2.dylib
       0x7fff87218000 -    0x7fff87229fff  SyndicationUI ???(???) <117F0971-8B7E-DC2A-84C1-C8B5FA15E421>/System/Library/PrivateFrameworks/Syndica tionUI.framework/Versions/A/SyndicationUI
       0x7fff8722a000 -    0x7fff87241fff com.apple.ImageCapture 6.1 (6.1)<79AB2131-2A6C-F351-38A9-ED58B25534FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
       0x7fff87244000 -    0x7fff872faff7  libobjc.A.dylib227.0.0 (compatibility 1.0.0) <03140531-3B2D-1EBA-DA7F-E12CC8F63969>/usr/lib/libobjc.A.dylib
       0x7fff87307000 -    0x7fff8730efff com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7>/System/Library/Frameworks/OpenDirectory. framework/Versions/A/OpenDirectory
       0x7fff87370000 -    0x7fff873d0fe7 com.apple.framework.IOKit 2.0 (???)<4F071EF0-8260-01E9-C641-830E582FA416> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
       0x7fff874e7000 -    0x7fff874ecff7 com.apple.CommonPanels 1.2.4 (91)<4D84803B-BD06-D80E-15AE-EFBE43F93605> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
       0x7fff875e5000 -    0x7fff877a3fff  libicucore.A.dylib40.0.0 (compatibility 1.0.0) <4274FC73-A257-3A56-4293-5968F3428854>/usr/lib/libicucore.A.dylib
       0x7fff877a4000 -    0x7fff877e1ff7  libssl.0.9.8.dylib0.9.8 (compatibility 0.9.8) <F743389F-F25A-A77D-4FCA-D6B01AF2EE6D>/usr/lib/libssl.0.9.8.dylib
       0x7fff87b18000 -    0x7fff87b49fff  libGLImage.dylib??? (???) <7F102A07-E4FB-9F52-B2F6-4E2D2383CA13>/System/Library/Frameworks/OpenGL.framewo rk/Versions/A/Libraries/libGLImage.dylib
       0x7fff87b7a000 -     0x7fff87b9bfff  libresolv.9.dylib 41.0.0 (compatibility1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
       0x7fff87b9c000 -    0x7fff87d4dfe7  com.apple.WebKit26534 (6534.50) <1D20EA7A-C33B-BF9A-C58A-D40B8CA7F1AA> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
       0x7fff87d4e000 -    0x7fff88191fef  libLAPACK.dylib219.0.0 (compatibility 1.0.0) <0CC61C98-FF51-67B3-F3D8-C5E430C201A9>/System/Library/Frameworks/Accelerate.fra mework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
       0x7fff88192000 -    0x7fff88296ff7  com.apple.PubSub1.0.5 (65.28) <C99BB1FE-46EA-237F-55A3-48CC2FE1F755>/System/Library/Frameworks/PubSub.framewo rk/Versions/A/PubSub
       0x7fff88297000 -    0x7fff882adfef  libbsm.0.dylib ???(???) <42D3023A-A1F7-4121-6417-FCC6B51B3E90> /usr/lib/libbsm.0.dylib
       0x7fff885f2000 -    0x7fff885fffe7  libCSync.A.dylib545.0.0 (compatibility 64.0.0) <1C35FA50-9C70-48DC-9E8D-2054F7A266B1>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resource s/libCSync.A.dylib
       0x7fff88635000 -    0x7fff88842ff7 com.apple.JavaScriptCore 6534 (6534.49)<1D418EF7-CDBE-3832-0157-D853073948D0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
       0x7fff88843000 -    0x7fff88896ff7  com.apple.HIServices1.8.3 (???) <F6E0C7A7-C11D-0096-4DDA-2C77793AA6CD>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
       0x7fff88897000 -    0x7fff88897ff7 com.apple.ApplicationServices 38 (38) <10A0B9E9-4988-03D4-FC56-DDE231A02C63>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/ApplicationServices
       0x7fff88898000 -    0x7fff888d2fff  libcups.2.dylib2.8.0 (compatibility 2.0.0) <539EBFDD-96D6-FB07-B128-40232C408757> /usr/lib/libcups.2.dylib
       0x7fff888d3000 -    0x7fff888ecfff com.apple.CFOpenDirectory 10.6 (10.6)<401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
       0x7fff888ed000 -    0x7fff888fbff7  libkxld.dylib ???(???) <8145A534-95CC-9F3C-B78B-AC9898F38C6F>/usr/lib/system/libkxld.dylib
       0x7fff888fc000 -    0x7fff889d9fff  com.apple.vImage4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
       0x7fff889f6000 -    0x7fff889f6ff7  com.apple.Carbon150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0>/System/Library/Frameworks/Carbon.framewo rk/Versions/A/Carbon
       0x7fff889f7000 -    0x7fff88a1cff7 com.apple.CoreVideo 1.6.2 (45.6)<E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
       0x7fff88c67000 -    0x7fff88cb6fef  libTIFF.dylib ???(???) <1E2593D1-A7F6-84C6-DF8F-0B46AE445926>/System/Library/Frameworks/ApplicationSer vices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/lib TIFF.dylib
       0x7fff88cb7000 -    0x7fff88d00ff7 com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F>/System/Library/Frameworks/SecurityInterf ace.framework/Versions/A/SecurityInterface
       0x7fff88d89000 -    0x7fff88df3fe7  libvMisc.dylib268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08>/System/Library/Frameworks/Accelerate.fra mework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
       0x7fff88df4000 -    0x7fff88e00fff  libbz2.1.0.dylib1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9>/usr/lib/libbz2.1.0.dylib
        0x7fff88e01000 -     0x7fff88e3eff7  libFontRegistry.dylib ??? (???)<4C3293E2-851B-55CE-3BE3-29C425DD5DFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
       0x7fff890d1000 -    0x7fff898fafef com.apple.Safari.framework 6534 (6534.50)<5E989098-BEA0-9DF9-EDFA-CF05BDDEB895>/System/Library/PrivateFramework s/Safari.framework/Versions/A/Safari
       0x7fff898fb000 -    0x7fff89900fff  libGFXShared.dylib??? (???) <1D0D3531-9561-632C-D620-1A8652BEF5BC>/System/Library/Frameworks/OpenGL.framewo rk/Versions/A/Libraries/libGFXShared.dylib
       0x7fff89901000 -    0x7fff8a2fbff7  com.apple.AppKit6.6.8 (1038.36) <4CFBE04C-8FB3-B0EA-8DDB-7E7D10E9D251>/System/Library/Frameworks/AppKit.framewo rk/Versions/C/AppKit
       0x7fff8a347000 -    0x7fff8a35bfff  libGL.dylib ???(???) <2ECE3B0F-39E1-3938-BF27-7205C6D0358B>/System/Library/Frameworks/OpenGL.framewo rk/Versions/A/Libraries/libGL.dylib
       0x7fff8a35c000 -    0x7fff8a3abff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1)<01B370FB-D524-F660-3826-E85B7F0D85CD>/System/Library/PrivateFrameworks/Pa sswordServer.framework/Versions/A/PasswordServer
       0x7fff8a3ac000 -    0x7fff8a3c7ff7 com.apple.openscripting 1.3.1 (??

Maybe you are looking for

  • 8.1.7: ORA-01410 in PL/SQL but not SQL*Plus

    This has been driving me crazy, and a search here and in comp.databases.oracle didn't turn up any solutions. When the following code is part of a stored procedure, it fails with ORA-01410 (Invalid ROWID). It executes perfectly from SQL*Plus, I've ver

  • Constant Pop-up Warning Message- PhotoshopElementsSyncAgent.exe-No Disk

    How can I stop this constant pop-up box from appearing on my computer screen every 30 seconds even when Elements is not running. Never had it before until I turned my computer on in May- I am wondering if something to do with the change over for back

  • Oracle 11gR2 AQ Enqueue from Java - Exception : Unsupported Feature

    Hi all, Can anyone please explain the following error message? It would appear that OracleConnection.enqueue( queueName, enqopts, mesg ) doesn't work in this configuration.... Is this expected or am I doing something silly? (And if so, what am I doin

  • Verizon's Gift Card Gallery won't open

    So I got an email from Verizon about a new "Perk" called Gift Card Gallery.  I checked it out on Friday.  I'm trying to get back to it today, but it won't work from any browser.  The link is in the bottom right of the Verizon Central page, but all it

  • Sorting Folders in iPhoto

    While messing around with the sort function, I managed put my folders in alphabetical order. I would actually prefer them to be in the chronological order that I created them in (like events are). Anyone know how to put the genie back in the bottle?