HELP : Kerberos

I am just into the area of "Kerberos" to achieve some meaningfull security to my authentication process.
Can anyone please revert with detail information about what is kerboros and how to impliment it ?.

See http://web.mit.edu/kerberos/www/
I am just into the area of "Kerberos" to achieve some
meaningfull security to my authentication process.
Can anyone please revert with detail information about
what is kerboros and how to impliment it ?.

Similar Messages

  • Help-kerberos works with spnego keytab file but not in netbeans and Metro

    Hi,
    Appreciate if someone can shed some light on this problem and guide on what else am I missing.
    I'm trying to call .NET based WCF webservice (MS Dynamics CRM - OrganizationSvc) from a java client. Started looking at Metro framework for interoperability. I was able to generate all the proxy classes and was able to write the code to invoke web service. However the challenge was using Kerberos based authentication and related setup.
    I primarily followed the link below which was very helpful but had to dig more to get more specific details.
    http://blogs.sun.com/enterprisetechtips/entry/building_kerberos_based_secure_services
    Tried to follow netbeans route and hit some roadblocks in verifying the setup (krb5.conf & login.conf & wsit-client.xml). So, came across SPNEGO and used their examples, made changes accordingly and after experimenting with various configuration settings(krb5.conf and login.conf), finallyI was able to run HelloKDC & HelloKeytab files successfully.
    krb5.conf_
    [libdefaults]
    default_realm = NA.CONVERGYS.COM
    [realms]
    NA.CONVERGYS.COM = {
    kdc = CDCWW13.na.convergys.com
    admin_server = CDCWW13.na.convergys.com
    [domain_realm]
    .na.convergys.com = NA.CONVERGYS.COM
    login.conf_
    spnego-server {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    keyTab="C:/WINDOWS/orldwv705_feb03.keytab"
    doNotPrompt=false
    storeKey=true
    principal="HOST/ORLDWV705.na.convergys.com"
    debug=true;
    C:\spnego-r7>klist -k C:\WINDOWS\orldwv705_feb03.keytab
    Key tab: C:\WINDOWS\orldwv705_feb03.keytab, 1 entry found.
    [1] Service principal: HOST/[email protected]
    KVNO: 7
    With these settings, I was able to successfully make the call & Hello Keytab was able to get the Ticket and authenticate.
    http://spnego.sourceforge.net/index.html
    http://spnego.sourceforge.net/client_keytab.html
    http://spnego.sourceforge.net/troubleshoot_hellokeytab.html
    However, when I run the example in Netbeans with the setup mentioned in the link below, I run into following exception...
    http://metro.java.net/guide/Developing_with_NetBeans.html#wsit_example_with_nb-creating_wsit_client
    http://metro.java.net/guide/_Configuring_Kerberos_for_Glassfish_and_Tomcat.html
    1) noticed that sc:KerberosConfig element in wsit-client.xml does not get updated automatically in netbeans ide, so manually edited to put the entries.
    2) also followed the setup required in glassfish domain.xml & login.conf xml.
    3) also noticed that netbeans setup requires us to use C:\Windows\krb5.ini file which is nothing but krb5.conf file referred elsewhere.)
    wsit-client.xml_
    <wsp:Policy wsu:Id="ClientKerberosPolicy"
    xmlns:sc="http://schemas.sun.com/2006/03/wss/client"
    xmlns:wspp="http://java.sun.com/xml/ns/wsit/policy"
    xmlns:scc="http://schemas.sun.com/ws/2006/05/sc/client"
    xmlns:wsp="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
    <wsp:ExactlyOne>
    <wsp:All>
    <sc:KerberosConfig wspp:visibility="private"
    loginModule="KerberosClient"
    servicePrincipal="HOST/ORLDWV705.na.convergys.com"
    credentialDelegation="true" />
    </wsp:All>
    </wsp:ExactlyOne>
    </wsp:Policy>
    ERROR
    INFO: WSP5018: Loaded WSIT configuration from file: file:/C:/Documents%20and%20Settings/rchoppal/My%20Documents/NetBeansProjects/TestOrgSvc/build/web/WEB-INF/classes/META-INF/wsit-client.xml.
    WARNING: [failed to localize] WSP_0075_PROBLEMATIC_ASSERTION_STATE({http://schemas.microsoft.com/xrm/2011/Contracts/Services}AuthenticationPolicy, UNKNOWN)
    WARNING: [failed to localize] WSP_0019_SUBOPTIMAL_ALTERNATIVE_SELECTED(PARTIALLY_SUPPORTED)
    INFO: >>>KinitOptions cache name is C:\Documents and Settings\rchoppal\krb5cc_rchoppal
    INFO: >>> KrbCreds found the default ticket granting ticket in credential cache.
    SEVERE: WSITPVD0050: Error while Securing Request Message.
    com.sun.xml.wss.XWSSecurityException: Unexpected Exception in Kerberos login - unable to continue
    at com.sun.xml.ws.security.impl.kerberos.KerberosLogin.login(KerberosLogin.java:94)
    at com.sun.xml.wss.impl.misc.WSITProviderSecurityEnvironment.doKerberosLogin(WSITProviderSecurityEnvironment.java:3049)
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.populateKerberosContext(WSITClientAuthContext.java:911)
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:318)
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:291)
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:158)
    Caused by: javax.security.auth.login.LoginException: java.lang.NullPointerException
    at sun.security.krb5.Credentials.acquireDefaultCreds(Credentials.java:451) (i tried to search open source code, but this line did'nt match exactly)
    at sun.security.krb5.Credentials.acquireTGTFromCache(Credentials.java:272)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:589)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:542)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at javax.security.auth.login.LoginContext.invoke(LoginContext.java:769)
    at javax.security.auth.login.LoginContext.access$000(LoginContext.java:186)
    at javax.security.auth.login.LoginContext$4.run(LoginContext.java:683)
    at java.security.AccessController.doPrivileged(Native Method)
    at javax.security.auth.login.LoginContext.invokePriv(LoginContext.java:680)
    at javax.security.auth.login.LoginContext.login(LoginContext.java:579)
    at com.sun.xml.ws.security.impl.kerberos.KerberosLogin.login(KerberosLogin.java:85)
    SEVERE: SEC2004: Container-auth: wss: Error securing request
    javax.xml.ws.WebServiceException: WSITPVD0050: Error while Securing Request Message.
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:299)
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:158)
    Caused by: javax.xml.ws.soap.SOAPFaultException: Unexpected Exception in Kerberos login - unable to continue
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1617)
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1633)
    ... 42 more
    WARNING: StandardWrapperValve[TestOrgSvcServlet]: PWC1406: Servlet.service() for servlet TestOrgSvcServlet threw exception
    javax.xml.ws.WebServiceException: Cannot secure request for {http://schemas.microsoft.com/xrm/2011/Contracts}CustomBinding_IOrganizationService
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:165)
    Caused by: javax.xml.ws.WebServiceException: WSITPVD0050: Error while Securing Request Message.
    at com.sun.xml.wss.provider.wsit.WSITClientAuthContext.secureRequest(WSITClientAuthContext.java:299)
    at com.sun.enterprise.security.webservices.ClientSecurityPipe.process(ClientSecurityPipe.java:158)
    ... 40 more
    Caused by: javax.xml.ws.soap.SOAPFaultException: Unexpected Exception in Kerberos login - unable to continue
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1617)
    at com.sun.xml.wss.provider.wsit.WSITAuthContextBase.getSOAPFaultException(WSITAuthContextBase.java:1633)
    ... 42 more
    Edited by: user6748004 on Feb 3, 2011 5:36 PM
    Edited by: user6748004 on Feb 3, 2011 5:38 PM

    Hi Gasha,
    The only change I did after this, was to try and use 'KerberosServer' configuration from the wsit-client.xml. Atleast, this enabled the glassfish application to load the configuration related to keytab etc, and use it to communicate with the WCF service for negotiation.
    <sc:KerberosConfig wspp:visibility="private"
    loginModule="KerberosServer"
    servicePrincipal="HOST/ORLDWV705.na.convergys.com"
    credentialDelegation="true" />
    login.conf has
    KerberosServer {
    com.sun.security.auth.module.Krb5LoginModule required
    useKeyTab=true
    keyTab="C:/WINDOWS/orldwv705_feb03.keytab"
    doNotPrompt=false
    storeKey=true
    principal="HOST/ORLDWV705.na.convergys.com"
    debug=true;
    fyi.. Used the following way to create the keytab
    Keytab was created using below instructions
    ktpass -princ HOST/[email protected]
    -mapUser [email protected]
    -mapOp set
    -pass *
    -crypto DES-CBC-MD5
    -pType KRB5_NT_PRINCIPAL
    -out orldwv705.keytab
    Targeting domain controller: CDCWW13.na.convergys.com
    Successfully mapped HOST/ORLDWV705.na.convergys.com to svcMSCRMDev.
    Key created.
    Output keytab to orldwv705.keytab:
    Keytab version: 0x502
    keysize 75 HOST/[email protected] ptype 1 (KRB5_NT_PRINCIPAL) vno 8 etype 0x3 (DES-CBC-MD5) keylength 8 (0x0bc27ca83891dc2a)
    Also realised that we need to add 'HTTP/ORLDWV705.na.convergys.com' & 'http/ORLDWV705.na.convergys.com' using set SPN commands on the AD of the server where CRM is installed.
    With these changes, the negotiate authentication seems to have happened using the Kerberos token from the keytab, but later ran into an error for which I was not able to get any clue to go forward. Someone in another post about this error suggested that it worked once they changed principal names, but when I tried I did'nt get any success.
    This is where I'm struck now. What I don't know is if there is another setup from which we can try a similar interoperability example for ex.. weblogic 10.1 & eclipse which is more close to our real environment.
    SEVERE: SEC2004: Container-auth: wss: Error securing request
    java.lang.IllegalArgumentException: Missing argument
    at javax.crypto.spec.SecretKeySpec.<init>(DashoA13*..)
    at com.sun.xml.ws.security.impl.kerberos.KerberosContext.getSecretKey(KerberosContext.java:91)
    at com.sun.xml.wss.impl.filter.SignatureFilter.process(SignatureFilter.java:525)
    Edited by: user6748004 on Apr 8, 2011 10:39 AM

  • OD, LDAP and DNS

    I am new to LDAP and I believe I have everything setup correctly on the server (everything under Open Directory in SA says "Running", logs don't show any errors). However, I can not access the LDAP server from a client machine using Directory Access. I suspect that client machines still can not "see" my LDAP server.
    I believe the issue may be with DNS and I am trying to understand the interaction between DNS and OD, etc. First off, I do not have DNS turned on for my Mac OS X Server since my ISP has always hosted our DNS. Is this a problem? Do I need DNS activated on the same server that I am running this LDAP server? I have tried entering the IP and DNS name on the client server using Directory Access and neither worked.

    The requirement is that references using your server's Fully Qualified Domain Name look up to its IP Address and its IP Address looks up to its Fully Qualified Domain Name. If your ISP does that for you, and does it correctly, Merry Christmas!
    All others must set up their own tiny DNS service to do the lookups. If you are behind an NAT firewall, you can Make Up whatever names you like and look them up locally, because they are invisible from the Internet.
    Remember that each workstation must have the address of the DNS available to it. It needs to be configured in the TCP/IP setup or dispensed via DHCP. If you use your own DNS (highly recommended) you must also dispense or configure the next upstream DNS (your ISP's DNS Address).
    "An Open Directory master requires properly configured DNS so it can provide single sign-on Kerberos authentication.
    Make sure DNS service is configured to resolve fully qualified DNS names and provide corresponding reverse lookups.
    DNS must resolve the fully qualified DNS name and provide reverse lookups for the Open Directory master server, all replica servers, and other servers that are members of the Kerberos realm.
    You can use the Lookup pane of Network Utility (in /Applications/Utilities/) to do a DNS lookup of a server's DNS name and a reverse lookup of the server's IP address.
    For instructions on setting up DNS service, browse Network Services Overview."
    -- from Server Admin 10.4 Help: Kerberos is Stopped on an Open Directory Master or Replica
    Message was edited by: Grant Bennet-Alder

  • Help with GSSAPI Kerberos in tomcat JNDIRealm

    Greetings,
    I could use some help with getting tomcat 5.5.12 to use Kerberos against Microsoft Active Directory.
    I have been using Ethereal to sniff the packets going back and forth from tomcat and I verified that with a normal server.xml entry (remove the authentication attribute keyword below), it uses 'simple'
    authentication (clear text passwords).
    My original server.xml works just fine but now I'm trying to take it to next level and I found documentation (jdk-1_5_0-doc.zip\docs\guide\jndi\jndi-ldap.html)
    specifies that there are the following values:
    - EXTERNAL (RFC 2222). This mechanism obtains authentication information from an external source (such as SSL/TLS or IPsec).
    - DIGEST-MD5 (RFC 2831) is for Digest Authentication.
    - GSSAPI (RFC 2222) is for Kerberos V5 authentication.
    I wish to use GSSAPI to talk with Active Directory so I setup my server.xml with the following :
    <Realm className="org.apache.catalina.realm.JNDIRealm"
         debug="4"
         authentication="GSSAPI"
         connectionName="CN=Klotz\, Dennis,OU=myou,DC=company,DC=com"
         connectionPassword="myPassword"
         connectionURL="ldap://10.16.0.xx:389"
         alternateURL="ldap://10.16.0.xx:389"
         userBase="OU= myou,DC=company,DC=com"
         userSearch="(sAMAccountName={0})"
         userSubtree="true"
         userRoleName="memberOf"
    />And now I get a different type of error from Catalina.out:
    Oct 28, 2005 2:28:47 PM org.apache.catalina.core.StandardHost start
    INFO: XML validation disabled
    GSSException: No valid credentials provided (Mechanism level: Failed to find any Kerberos Ticket)
            at
    sun.security.jgss.krb5.Krb5InitCredential.getInstance(Krb5InitCredential
    .java:133)
    .....At least the GSSAPI is being recognized! My next step was talking with IT; they suggested a c:\winnt\krb5.ini with the following contents:
    [libdefaults]
    default_realm = COMPANY.COM
    default_tgs_enctypes = des-cbc-crc
    default_tkt_enctypes = des-cbc-crc
    [realms]
    COMPANY.COM = {
    kdc = addy.mycompany.com:88
    admin_server = addy. mycompany.com:88
    kpasswd_server = addy. mycompany.com:464 default_domain = COMPANY.COM }And that I then execute:
    $ kinit DKlotz
    Password for [email protected]:mypassword New ticket is stored in cache file C:\Documents and Settings\DKlotz\krb5cc_dklotzBut as you can see from the previous tomcat error log that something is still missing. Do I need to move the cache file or do other commands so that the code within ldap.jar can use it?
    At this time tomcat never tries connecting to the LDAP server as it can't get out of the starting gate. I've got something wrong / missing from the Kerberos setup.
    Any help is greatly appreciated!!
    -Dennis Klotz

    Ok I've made progress, whether it is backwards or not, I don't know yet.
    I've added :
    -Djavax.security.auth.useSubjectCredsOnly=false
    To my Catalina options environment variable in Catalina.bat.
    Now I get the error:
    WARNING: Exception performing authentication
    java.lang.SecurityException: Unable to locate a login configuration
         at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:97)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         at java.lang.Class.newInstance0(Class.java:350)
         at java.lang.Class.newInstance(Class.java:303)
         at javax.security.auth.login.Configuration$3.run(Configuration.java:216)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.Configuration.getConfiguration(Configuration.java:210)
         at javax.security.auth.login.LoginContext$1.run(LoginContext.java:237)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.login.LoginContext.init(LoginContext.java:234)
         at javax.security.auth.login.LoginContext.<init>(LoginContext.java:403)
         at sun.security.jgss.LoginUtility.login(LoginUtility.java:72)
         at sun.security.jgss.krb5.Krb5Util.getTicketFromSubject(Krb5Util.java:137)
         at sun.security.jgss.krb5.Krb5InitCredential$1.run(Krb5InitCredential.java:331)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.security.jgss.krb5.Krb5InitCredential.getTgtFromSubject(Krb5InitCredential.java:328)
         at sun.security.jgss.krb5.Krb5InitCredential.getInstance(Krb5InitCredential.java:131)
         at sun.security.jgss.krb5.Krb5MechFactory.getCredentialElement(Krb5MechFactory.java:72)
         at sun.security.jgss.GSSManagerImpl.getCredentialElement(GSSManagerImpl.java:149)
         at sun.security.jgss.GSSCredentialImpl.add(GSSCredentialImpl.java:389)
         at sun.security.jgss.GSSCredentialImpl.<init>(GSSCredentialImpl.java:60)
         at sun.security.jgss.GSSCredentialImpl.<init>(GSSCredentialImpl.java:37)
         at sun.security.jgss.GSSManagerImpl.createCredential(GSSManagerImpl.java:96)
         at sun.security.jgss.GSSContextImpl.initSecContext(GSSContextImpl.java:178)
         at sun.security.jgss.GSSContextImpl.initSecContext(GSSContextImpl.java:158)
         at com.sun.security.sasl.gsskerb.GssKrb5Client.evaluateChallenge(GssKrb5Client.java:155)
         at com.sun.jndi.ldap.sasl.LdapSasl.saslBind(LdapSasl.java:105)
         at com.sun.jndi.ldap.LdapClient.authenticate(LdapClient.java:214)
         at com.sun.jndi.ldap.LdapCtx.connect(LdapCtx.java:2637)
         at com.sun.jndi.ldap.LdapCtx.<init>(LdapCtx.java:283)
         at com.sun.jndi.ldap.LdapCtxFactory.getUsingURL(LdapCtxFactory.java:175)
         at com.sun.jndi.ldap.LdapCtxFactory.getUsingURLs(LdapCtxFactory.java:193)
         at com.sun.jndi.ldap.LdapCtxFactory.getLdapCtxInstance(LdapCtxFactory.java:136)
         at com.sun.jndi.ldap.LdapCtxFactory.getInitialContext(LdapCtxFactory.java:66)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:667)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
         at javax.naming.InitialContext.init(InitialContext.java:223)
         at javax.naming.InitialContext.<init>(InitialContext.java:197)
         at javax.naming.directory.InitialDirContext.<init>(InitialDirContext.java:82)
         at org.apache.catalina.realm.JNDIRealm.open(JNDIRealm.java:1515)
         at org.apache.catalina.realm.JNDIRealm.start(JNDIRealm.java:1601)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1004)
         at org.apache.catalina.core.StandardHost.start(StandardHost.java:718)
         at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1012)
         at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:442)
         at org.apache.catalina.core.StandardService.start(StandardService.java:450)
         at org.apache.catalina.core.StandardServer.start(StandardServer.java:683)
         at org.apache.catalina.startup.Catalina.start(Catalina.java:537)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:271)
         at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:409)
    Caused by: java.io.IOException: Unable to locate a login configuration
         at com.sun.security.auth.login.ConfigFile.init(ConfigFile.java:206)
         at com.sun.security.auth.login.ConfigFile.<init>(ConfigFile.java:95)
         ... 56 moreAm I moving in the right direction?
    -Dennis

  • Please help. Negotiate field in http header - Kerberos, SPNEGO, Base64... ?

    Hello to you all.
    I'm trying to implement a Kerberized SSO solution in Win2000
    environment. The web servers are apaches, the clients are IE5.5+
    But I had encountered the following problem:
    I wrote a servlet in java on the web server that sends 401 http error
    + "Negotiate" in the www-authenticate field. Then the client sends me
    back in the same field "Negotiate " and a long string that ends with
    '==' and it's somehow encoded...
    That's the problematic point. I saw it's encoded in base64, but
    decoding it didn't brought me to anything. Furthermore, I read that
    it's a spnego protocol. What am I doing with that? Does JDK1.4 gives
    enough to work with that?
    All I know that in that string is the TGS sent to me... and that's all
    I need to authenticate my client, don't I?!
    Do you know what should I do with that string? Can you tell me what am
    I missing? Should I decode it with the '==' or without? What does it
    mean anyway?
    I'd really appriciate if you help me.
    Thanks very much in advance,
    Danik.

    Close... SPNEGO is a GSSAPI mechanism for negotiating another mechanism. JDK 1.4 comes with a Kerberos mechanism provider out of the box, but not SPNEGO. Even though Microsoft's "Negotiate" auth method ends up negotiating Kerberos, you need to have a SPNEGO provider installed to effectively tell it to use Kerberos.
    The '==' is Base64 padding (the Base64-encoded string will end in '=' or '==' if the input content length is not divisible by 3). You would include it when decoding. The byte array you get from decoding is fed to the acceptSecContext method in org.ietf.jgss.GSSContext -- but you will get an "unknown mechanism" error if you don't have a SPNEGO mechanism provider.
    If you don't have the inclination to write a provider yourself (I know I wouldn't), and you have some cash to spend (I know I don't), you can get a SPNEGO provider from:
    http://www.wedgetail.com/jcsi/sso/FAQ.html
    They actually provide a complete solution for doing exactly what you are attempting.
    If you are just looking to provide single sign-on to a web application for Windows clients, and you don't necessarily need to do it via Kerberos, jCIFS provides a solution for performing NTLM authentication (the precursor to Negotiate, which authenticates against NT/Samba domains). You can get jCIFS from
    http://jcifs.samba.org
    The site is temporarily transitioning to a new ISP, so the latest version (0.7.5) can actually be found at:
    http://users.erols.com/mballen/jcifs
    The client side of NTLM is also supported in JDK 1.4.2, which would allow single sign-on for applets or Java applications.

  • Kerberos PAM Help!

    Hi All-
    I'm hoping some of you Sun Kerberos gurus can tell me if my problem can be resolved... Basically I have my test Solaris 10 system set up to authenticate, via PAM, in 3 ways.
    First it checks if you have a local account and then let's you in if so.
    Second it checks to see if you have a Kerberos account and if so authenticates you using Kerberos (getting a ticket) and uses LDAP account information.
    Third, if you have no Kerberos account, it checks your LDAP password and if correct let's you in using your LDAP account info.
    Basically I can get things working but the Kerberos PAM module is VERY chatty! If I log in with my LDAP password, pam_krb5 always tells me "Kerberos authentication failed" during dtlogin or ssh login, and then let's me in. But it's very annoying, and will confuse my users.
    Example: (logging in using LDAP password):
    % ssh weiler@testhost
    weiler@testhost's password:
    Kerberos authentication failed
    Last login: Fri Jun 30 08:33:26 2006 from banshee.cse.ucs
    You have mail.
    testhost:/home/weiler%
    And if I use my Kerberos password it gives me no errors and logs me in. With dtlogin, a pop-up window actually pops up saying the same thing, "Kerberos Authentication Failed" and you have to click the "OK" button and then it logs you in.
    I guess my question is: Is there any way to tell Kerberos to be quiet? I don't care if Kerberos authentication fails when people are logging in using LDAP credentials, I just don't want it to keep telling me it failed every time. the "nowarn" flag used with pam_krb5.so.1 in pam.conf doesn't seem to help....
    Here's my /etc/pam.conf if it will help:
    login auth requisite pam_authtok_get.so.1
    login auth required pam_unix_cred.so.1
    login auth sufficient pam_unix_auth.so.1
    login auth sufficient pam_krb5.so.1
    login auth sufficient pam_ldap.so.1
    dtsession auth sufficient pam_unix_auth.so.1
    dtsession auth sufficient pam_krb5.so.1
    dtsession auth sufficient pam_ldap.so.1
    # rlogin service (explicit because of pam_rhost_auth)
    rlogin auth sufficient pam_rhosts_auth.so.1
    rlogin auth requisite pam_authtok_get.so.1
    rlogin auth required pam_dhkeys.so.1
    rlogin auth required pam_unix_cred.so.1
    rlogin auth required pam_unix_auth.so.1
    # Kerberized rlogin service
    krlogin auth required pam_unix_cred.so.1
    krlogin auth binding pam_krb5.so.1
    krlogin auth required pam_unix_auth.so.1
    # rsh service (explicit because of pam_rhost_auth,
    # and pam_unix_auth for meaningful pam_setcred)
    rsh auth sufficient pam_rhosts_auth.so.1
    rsh auth required pam_unix_cred.so.1
    # Kerberized rsh service
    krsh auth required pam_unix_cred.so.1
    krsh auth binding pam_krb5.so.1
    krsh auth required pam_unix_auth.so.1
    # Kerberized telnet service
    ktelnet auth required pam_unix_cred.so.1
    ktelnet auth binding pam_krb5.so.1
    ktelnet auth required pam_unix_auth.so.1
    # PPP service (explicit because of pam_dial_auth)
    ppp auth requisite pam_authtok_get.so.1
    ppp auth required pam_dhkeys.so.1
    ppp auth required pam_unix_cred.so.1
    ppp auth required pam_unix_auth.so.1
    ppp auth required pam_dial_auth.so.1
    # Default definitions for Authentication management
    # Used when service name is not explicitly mentioned for authentication
    other auth requisite pam_authtok_get.so.1
    other auth required pam_unix_cred.so.1
    other auth sufficient pam_unix_auth.so.1
    other auth sufficient pam_krb5.so.1 nowarn
    other auth sufficient pam_ldap.so.1
    # passwd command (explicit because of a different authentication module)
    passwd auth sufficient pam_passwd_auth.so.1
    passwd auth sufficient pam_ldap.so.1
    # cron service (explicit because of non-usage of pam_roles.so.1)
    cron account required pam_unix_account.so.1
    # Default definition for Account management
    # Used when service name is not explicitly mentioned for account management
    passwd account sufficient pam_unix_account.so.1
    passwd account sufficient pam_ldap.so.1
    other account sufficient pam_unix_account.so.1
    other account sufficient pam_ldap.so.1
    other account sufficient pam_krb5.so.1 nowarn
    # Default definition for Session management
    # Used when service name is not explicitly mentioned for session management
    other session sufficient pam_unix_session.so.1
    other session sufficient pam_ldap.so.1
    other session sufficient pam_krb5.so.1 nowarn
    # Default definition for Password management
    # Used when service name is not explicitly mentioned for password management
    other password requisite pam_authtok_get.so.1
    other password requisite pam_authtok_check.so.1
    other password required pam_authtok_store.so.1
    Thanks a million in advance for any insight!
    ciao, erich

    It turns out that in Solaris 8, the Kerberos installed does not support TCP. By default Kerberos tickets are issued by the KDC via UDP until the packet size reaches a maximum. Once the max is exceeded, the KDC switches to TCP.
    Since Solaris 8 Kerberos doesn't support TCP, you get an error executing kinit:
    kinit: KRB5 error code 52 while getting initial credentials
    So to mitigate, I'm looking at incorporating a version of Kerberos that does support switching to TCP (v1.4.1 or greater I believe).

  • HELP!!  Solaris 10 - Mount NFSv4 Share from Linux using Kerberos Security

    Greetings all, my apologies if this post is in the wrong place...
    I have an issue getting Solaris 10 to mount an NFSv4 share from a SuSE Linux 10 machine using kerberos security.
    I am able to mount the NFSv4 share from another SuSE 10 machine. The kerberos principal for that is nfs/host.domain and is working perfectly with the mount command of 'mount -t nfs4 -o sec=krb5 host:/ /mnt'
    My problem is that when I try to mount that same share on Solaris 10 using the command 'mount -F nfs -o sec=krb5 host:/ /mnt' I am getting nowhere fast. My kerberos principals for the Solaris machine are nfs/host.domain, host/host.domain, and root/host.domain. I have tried rebooting the Solaris 10 machine with a different keytab file in place each time (as I'm not sure which principal to make the keytab from for Solaris).
    When I run the Solaris 10 mount command all it does is hang. I don't get any error message, etc. On the kerberos server I can see where the Solaris machine has communicated and appears to receive a ticket, and I can see that the NFS server was responding to the client's request, however the mount command just hangs.
    Any ideas / suggestions? I really need someone to point me in the right direction!
    Your help is very appreciated!

    I had similar, not identical, issues with a custom JumpStart DVD I was creating. I was not using flar and it was for x86, not SPARC.
    I found that changing the case for the value assigned to network_interface made a difference. In looking at the sysidcfg manpage and online JumpStart documentation, all the examples they used had capitalized "PRIMARY" and "NONE". When I changed the value to the capitalized equivelant, my particular issue had gone away.
    You may also want to consider adding ip_address and default_route to the network_interface section. Test either way to identify the differing results.
    In my particular scenereo, I did not want any networking configuration to be done. The resulting line in sysidcfg was:
    network_interface=NONE {hostname=jsclient}HTH

  • Kerberos client not found-help! can't print!

    I am posting this to the benefit of all who may have experienced the "Kerberos client not found" message after configuring CUPS for Kerberos authentication. After getting locked out of CUPS and not being able to add or delete printers I found in another google-search post a solution.
    I edited the /etc/cups/cupsd.conf file using a terminal editor (vi) and changed the entry:
    "DefaultAuthType Negotiate" to "DefaultAuthType Basic", then restarted the server and all worked fine after that, although I still haven't figured out what the problem is with CUPS and Kerberos interaction.
    I hope this helps someone as I spent about a day and a half trying to figure out a solution.
    Ciao

    Hello Sapo11,
    To get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial product. You can do this at Commercial Forums.
    Thanks for your time.
    Click the “Kudos Thumbs Up" at the bottom of this post to say “Thanks” for helping!
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    W a t e r b o y 71
    I work on behalf of HP

  • Constant AD/Kerberos issues - HELP!!

    Here's a piece of my error log:
    [2007/05/07 14:45:43, 1] /SourceCache/samba/samba-92.20/samba/source/smbd/service.c:makeconnectionsnum(648)
    10.193.160.140 (10.193.160.140) connect to service Internal initially as user DOMAIN\user.name (uid=1796753072, gid=1106437719) (pid 26775)
    [2007/05/07 14:45:43, 0] /SourceCache/samba/samba-92.20/samba/source/smbd/service.c:setcurrentservice(51)
    chdir (/Volumes/ADTX RAID5/Internal) failed
    [2007/05/07 14:45:44, 0] /SourceCache/samba/samba-92.20/samba/source/smbd/service.c:setcurrentservice(51)
    chdir (/Volumes/ADTX RAID5/Internal) failed
    [2007/05/07 14:54:43, 1] /SourceCache/samba/samba-92.20/samba/source/smbd/sesssetup.c:replyspnegokerberos(184)
    Failed to verify incoming ticket!
    We've been having CONSTANT issues the past week with certain users not being able to log in to a network share. Even if I unbind and re-bind to our AD server, reboot or stop/start Windows services, we're still getting these kerberos errors.
    We're currently running 10.4.7, staying away from 10.4.8. Will 10.4.9 fix this? We completely re-installed the OS on a separate drive, only transferring the SMB.conf file over. We're left scratching our heads here over this. PLEASE help.

    Anyone?
    I made a change to the smb.conf file. I changed domain logons to "YES". However, still having issues. I haven't been able to re-start the server since there's a huge backup STILL running, but will re-boot soon and cross my fingers that solves the issue.

  • Help with Active Directory Integration and kerberos

    Hello,
    I’m encountering a bug preventing me to use Active Directory integration with kerberos :
    Our domain name is CORP.DOMAIN.COM.
    When we request the GC in this domain :
    bash-3.00# nslookup -query=any gc.tcp.corp.domain.com
    Server: 1.2.1.6
    Address: 1.2.1.6#53
    ** server can't find gc.tcp.corp.domain.com: NXDOMAIN
    there is no answer.
    But when we request without corp, we find the servers :
    bash-3.00# nslookup -query=any gc.tcp.domain.com | grep sis
    gc.tcp.domain.com service = 0 100 3268 serveur02.corp.domain.com.
    gc.tcp.domain.com service = 0 100 3268 serveur01.corp.domain.com.
    bash-3.00#
    Is-it possible to add the possibility to enter the domain name where reside the gc.tcp ?
    Thank you.

    Hello
    the domain.com domain exist, but it's not our domain.
    so, when I put domain.com, it search with no result (nothing appends).
    our kdc.conf :
    [kdcdefaults]
    kdc_ports = 88,750
    [realms]
    CORP.DOMAIN.COM = {
    profile = /etc/krb5/krb5.conf
    database_name = /var/krb5/principal
    admin_keytab = /etc/krb5/kadm5.keytab
    acl_file = /etc/krb5/kadm5.acl
    kadmind_port = 749
    max_life = 8h 0m 0s
    max_renewable_life = 7d 0h 0m 0s
    default_principal_flags = +preauth
    krb.conf
    [libdefaults]
    default_realm = CORP.DOMAIN.COM
    default_checksum = rsa-md5
    [realms]
    CORP.DOMAIN.COM = {
    kdc = dc01.corp.domain.com
    kdc = dc02.corp.domain.com
    [domain_realm]
    .corp.domain.com = CORP.DOMAIN.COM
    corp.domain.com = CORP.DOMAIN.COM
    in every domain, I think the GC are in corp.domain.com. but in my company, it's in domain.com...
    Thank you,

  • Kerberos n00b help with CentOS integration

    Hi all,
    I've inherited an OD installation and I have a few questions. First, the LDAP search base is dc=spidertracks, dc=local and the Kerberos Realm is SERVER.PRIVATE. This was upgraded to Advanced server mode from Simple mode. I would like to accomplish the following.
    1. Change all LDAP entries from dc=spidertracks,dc=local to dc=spidertracks,dc=com
    2. Change the Kerberos realm to be SPIDERTRACKS.COM
    3. Integrate all Linux and Windows systems to authenticate against OD.
    I've tried step 3 with the existing Realm and LDAP config following this tutorial which was quite good.
    http://www.jerkys.org/wiki/pages/viewpage.action?pageId=131085
    However, when I attempt to SSH to my CentOS box, I receive the following error in the Kerberos logs.
    commmand "ssh [email protected]"
    Kerberos error
    May 12 14:30:55 spidertracks.local krb5kdc[116](info): AS_REQ (12 etypes {18 17 16 23 1 3 2 11 10 15 12 13}) 10.0.1.50: PREAUTH_FAILED: [email protected] for krbtgt/[email protected], Decrypt integrity check failed
    First, any ideas what's wrong with the test setup for #3?
    Second, is it possible to change the Kerberos realm and the root dc in my LDAP without dumping and reloading everything?
    Thanks,
    Todd

    Hello
    the domain.com domain exist, but it's not our domain.
    so, when I put domain.com, it search with no result (nothing appends).
    our kdc.conf :
    [kdcdefaults]
    kdc_ports = 88,750
    [realms]
    CORP.DOMAIN.COM = {
    profile = /etc/krb5/krb5.conf
    database_name = /var/krb5/principal
    admin_keytab = /etc/krb5/kadm5.keytab
    acl_file = /etc/krb5/kadm5.acl
    kadmind_port = 749
    max_life = 8h 0m 0s
    max_renewable_life = 7d 0h 0m 0s
    default_principal_flags = +preauth
    krb.conf
    [libdefaults]
    default_realm = CORP.DOMAIN.COM
    default_checksum = rsa-md5
    [realms]
    CORP.DOMAIN.COM = {
    kdc = dc01.corp.domain.com
    kdc = dc02.corp.domain.com
    [domain_realm]
    .corp.domain.com = CORP.DOMAIN.COM
    corp.domain.com = CORP.DOMAIN.COM
    in every domain, I think the GC are in corp.domain.com. but in my company, it's in domain.com...
    Thank you,

  • Kerberos request for help

    I am trying to add a Linux machine to a Mac network and I want the Linux machine to be able to do Kerberos based authentication i.e. 'single sign-on' via the Mac server. The Mac server is currently running Yosemite 10.10.2 and Server.app 3.4.1 and is an Open Directory master which means it is also acting as the KDC i.e. Kerberos server.
    I have been able to get the Linux machine which by the way is running Ubuntu 12.04 server to successfully run kinit and klist to get and show a Kerberos ticket., however I cannot get it to add a host principal to the Kerkerbos system and hence cannot generate a Kerberos keytab.
    I did discover that whereas originally Apple used a standard MIT based Kerberos system, they switched to using Heimdal when they released Lion and Server.app this does seem to behave differently in several areas to the MIT based software.
    I have therefore since installed the Heimdal based Kerberos client software into the Linux machine instead of the MIT software but I am still stuck.
    To summarise I have a Mac server + clients working fine, and I have a Linux system that can do kinit/klist and can also do standard LDAP authentication via the Open Directory master. I cannot however add the Linux server as a kerberos host and thereby 'kerberize' services on the Linux server.
    Any advice much appreciated.

    Hi Colm,
    Which version of the J2EE Engine do you have and which JDK?
    Could you try to switch your client orb to use IIOP 1.1?
    Best regards,
    Viliana

  • Kerberos, Heimdall help?!?

    I have a couple questions
    What exactly is KDC / Heimdall? Are these security programs?
    Are they automatic on macbooks?
    could copying my mac logs and mailing them to someone else cause mac security to consider that an offense? 
    I had been having weird issues with  my mac and sending my logs out / saving pdfs of them and now Heimdall is DESTROYING every computer I own. It is like someone goes in and takes my files, locks me out of programs, changes my passwords, etc.
    It seems like a virus, but the files it takes are only related to apple logs/ my work.
    is this making any sense?

    I rcvd a computer from work (mac osx)
    about a week into having it at my home, I noticed that it had pulled up files from my home desktop pc, and personal macbook.
    I also was confused to find that my microsoft word docs were syncing - I could see what docs I had opened on my desktop.
    While trying to unsync files, I found that I could NOT.  if I deleted, they'd come back.
    If I took screenshots and saved them on any of my 3 computers, they'd be deleted.  They were also deleted from emails before they could send, as well as my online photo account.  It was as if someone went behind me and deleted any evidence.  (files were continuosly being moved/deleted/added to computers which were unplugged and turned off. )
    Additionally, my tethering cost me an additional $200 because of all of the data going in and out of my iphone.
    I know nothing about what programs are standard on OSX - but I am listing some that seem odd to me. Are any obvious spyware/ illegal? My employer acted as if he knew nothing when I mentioned file syncing.
    In an effort to get help for the syncing files, and because I thought perhaps my employer had monitoring on the work computer, I tried to duplicate the files in order to get help.
    Ever since doing this, my files are getting mass deleted from both my personal computers and work macbook
    However the files that get delete are only work related, or apple logs.
    I don't believe this is just a virus, because it seems to particular to those two items.

  • My safari won't open and I can't figure out why can anyone help me?

    So every time I try to open safari it just shuts down and gives a problem report:
    Process:         Safari [2044]
    Path:            /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:      com.apple.Safari
    Version:         7.0.2 (9537.74.9)
    Build Info:      WebBrowser-7537074009000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [160]
    Responsible:     Safari [2044]
    User ID:         501
    Date/Time:       2014-03-25 22:12:39.195 -0700
    OS Version:      Mac OS X 10.9.2 (13C64)
    Report Version:  11
    Anonymous UUID:  F628187A-5FBC-D5F6-712D-73E12650C3D2
    Crashed Thread:  10
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001045dd420
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x1045dd420:
    -->
        __TEXT                 000000010d09b000-000000010d09c000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit                        0x000000011165c236 -[NSThemeFrame _maxXminYResizeRect] + 1
    1   com.apple.AppKit                        0x000000011184a826 -[NSThemeFrame setBottomCornerRounded:] + 195
    2   com.apple.Safari.framework              0x000000010d16d805 -[BrowserWindowControllerMac windowDidLoad] + 272
    3   com.apple.AppKit                        0x000000011179641c -[NSWindowController _windowDidLoad] + 450
    4   com.apple.Safari.framework              0x000000010d39fff3 -[WindowController _windowDidLoad] + 43
    5   com.apple.AppKit                        0x000000011177d016 -[NSWindowController window] + 110
    6   com.apple.Safari.framework              0x000000010d16e10a -[BrowserWindowControllerMac showWindow:] + 50
    7   com.apple.AppKit                        0x000000011184a605 -[NSDocument showWindows] + 100
    8   com.apple.Safari.framework              0x000000010d13c47b -[BrowserDocument showWindows] + 39
    9   com.apple.AppKit                        0x0000000111849178 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 458
    10  com.apple.AppKit                        0x0000000111848f6f -[NSDocumentController newDocument:] + 36
    11  com.apple.Safari.framework              0x000000010d2cf8c3 -[WindowReopener reopenWithArrayOfWindowControllerNames:] + 120
    12  com.apple.Safari.framework              0x000000010d2cfa84 -[WindowReopener init] + 117
    13  com.apple.Safari.framework              0x000000010d2cfb93 +[WindowReopener reopenWindows] + 43
    14  com.apple.Safari.framework              0x000000010d0b1917 -[AppController _openUntitledFileWhileLaunching:] + 157
    15  com.apple.Safari.framework              0x000000010d0ae7c3 -[AppController applicationOpenUntitledFile:] + 22
    16  com.apple.AppKit                        0x0000000111777e20 -[NSApplication _doOpenUntitled] + 447
    17  com.apple.AppKit                        0x000000011169af01 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 254
    18  com.apple.AppKit                        0x000000011169ac23 __78-[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:]_block_invoke_2 + 140
    19  com.apple.AppKit                        0x000000011169a80d -[NSDocumentController(NSInternal) _autoreopenDocumentsWithCompletionHandler:] + 746
    20  com.apple.AppKit                        0x0000000111505b7b -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 323
    21  com.apple.AppKit                        0x0000000111505909 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 557
    22  com.apple.AppKit                        0x000000011150536b -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 242
    23  com.apple.Foundation                    0x000000010fa51f0a -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 294
    24  com.apple.Foundation                    0x000000010fa51d7d _NSAppleEventManagerGenericHandler + 106
    25  com.apple.AE                            0x0000000114532e1f aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 381
    26  com.apple.AE                            0x0000000114532c32 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    27  com.apple.AE                            0x0000000114532b36 aeProcessAppleEvent + 315
    28  com.apple.HIToolbox                     0x00000001130c6161 AEProcessAppleEvent + 56
    29  com.apple.AppKit                        0x0000000111501246 _DPSNextEvent + 1026
    30  com.apple.AppKit                        0x0000000111500a2b -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    31  com.apple.Safari.framework              0x000000010d101290 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 161
    32  com.apple.AppKit                        0x00000001114f4b2c -[NSApplication run] + 553
    33  com.apple.AppKit                        0x00000001114df913 NSApplicationMain + 940
    34  com.apple.Safari.framework              0x000000010d2d306d SafariMain + 267
    35  libdyld.dylib                           0x0000000113b715fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x0000000113d16e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000113e21f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000113e24fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000113d17662 kevent64 + 10
    1   libdispatch.dylib                       0x0000000113b3643d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x0000000113b36152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000113d16e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000113e21f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000113e24fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000113d16e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000113e21f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000113e24fb9 start_wqthread + 13
    Thread 5:: WebCore: IconDatabase
    0   libsystem_kernel.dylib                  0x0000000113d16716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x0000000113e22c3b _pthread_cond_wait + 727
    2   com.apple.WebCore                       0x000000011715ae8b WebCore::IconDatabase::syncThreadMainLoop() + 507
    3   com.apple.WebCore                       0x0000000117157a1f WebCore::IconDatabase::iconDatabaseSyncThread() + 303
    4   com.apple.JavaScriptCore                0x000000010db7fc5f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x0000000113e20899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x0000000113e2072a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x0000000113e24fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x0000000113d16e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000113e21f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000113e24fb9 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000113d16e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x0000000113e21f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x0000000113e24fb9 start_wqthread + 13
    Thread 8:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000113d12a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000113d11d18 mach_msg + 64
    2   com.apple.QuartzCore                    0x000000010ec78377 CA::Render::Server::server_thread(void*) + 195
    3   com.apple.QuartzCore                    0x000000010ec782ad thread_fun + 25
    4   libsystem_pthread.dylib                 0x0000000113e20899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x0000000113e2072a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x0000000113e24fc9 thread_start + 13
    Thread 9:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000113d12a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000113d11d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000011062c155 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000011062b779 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000011062b0b5 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010fa97967 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x000000010fa9776b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x0000000113e20899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x0000000113e2072a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x0000000113e24fc9 thread_start + 13
    Thread 10 Crashed:
    0   ???                                     0x000000010f385598 0 + 4550317464
    Thread 10 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000054  rcx: 0x000000010f26f000  rdx: 0x0000000000000054
      rdi: 0x0000000000000000  rsi: 0x000000010eec6000  rbp: 0x000000010f270ff0  rsp: 0x000000010f270f70
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000000  r11: 0x0000000000000000
      r12: 0x00000001045dd420  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x000000010eec6000
      rip: 0x000000010f385598  rfl: 0x0000000000010202  cr2: 0x00000001045dd420
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10d09b000 -        0x10d09bffd  com.apple.Safari (7.0.2 - 9537.74.9) <16623B62-3663-3C26-BBD4-8B32AC882692> /Applications/Safari.app/Contents/MacOS/Safari
           0x10d0a4000 -        0x10d5aaff3  com.apple.Safari.framework (9537 - 9537.74.9) <92E7195B-FAED-3578-96E2-6F75274C300B> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
           0x10d994000 -        0x10d995ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x10d9a0000 -        0x10d9beff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
           0x10d9dc000 -        0x10d9ddfff  libquit.dylib (161.2) <54B83D99-F84C-35E1-87D5-FCCB2F200FBD> /usr/lib/libquit.dylib
           0x10d9e3000 -        0x10da00ff7  com.apple.framework.Apple80211 (9.3.1 - 931.58) <D5B2DD15-3DCC-31F6-9320-3A20A887C5D5> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
           0x10da0f000 -        0x10da0ffff  com.apple.Carbon (154 - 157) <45A9A40A-78FF-3EA0-8FAB-A4F81052FA55> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10da16000 -        0x10da16fff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10da1b000 -        0x10da79ff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x10dab9000 -        0x10dac3ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10dad8000 -        0x10db42ff7  com.apple.framework.IOKit (2.0.1 - 907.90.2) <A779DE46-BB7E-36FD-9348-694F9B09718F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10db76000 -        0x10deedffa  com.apple.JavaScriptCore (9537 - 9537.74.4) <0942FE6B-3152-30FC-B92A-92A1C29C5295> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x10dfe7000 -        0x10e19fff3  libicucore.A.dylib (511.31) <167DDD0A-A935-31AF-B5B9-940268EC3A3C> /usr/lib/libicucore.A.dylib
           0x10e246000 -        0x10e330fff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x10e34a000 -        0x10e37bff7  libtidy.A.dylib (15.12) <BF757E3C-733A-3B6B-809A-A3949D46466E> /usr/lib/libtidy.A.dylib
           0x10e38c000 -        0x10e399ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x10e3a5000 -        0x10e3b3fff  com.apple.opengl (9.6.0 - 9.6.0) <709F4A02-73A0-303C-86B5-85C596C8B707> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x10e3bc000 -        0x10e3fdfff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x10ec51000 -        0x10ededff3  com.apple.QuartzCore (1.8 - 332.3) <80F1068F-4A34-34FB-9E05-A2DC0700D2F2> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10eecb000 -        0x10f124ff9  com.apple.security (7.0 - 55471.14) <3F7100A0-FE46-333D-9A4B-396580F1B4FE> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10f273000 -        0x10f2e6fff  com.apple.securityfoundation (6.0 - 55122.1) <1939DE0B-BC38-3E50-8A8C-3471C8AC4CD6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x10f328000 -        0x10f356ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10f38b000 -        0x10f3eeff7  com.apple.SystemConfiguration (1.13 - 1.13) <63B985ED-E7E4-3095-8D12-63C9F1DB0F3D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10f429000 -        0x10f55fff6  com.apple.WebKit (9537 - 9537.74.9) <CA0C0387-8A66-34D4-8B1C-F5CDDBDA76BB> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10f658000 -        0x10f848ffd  com.apple.WebKit2 (9537 - 9537.74.9) <3F7B257F-D0DA-3AA8-BE8B-0C5474FE9806> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/WebKit2
           0x10fa31000 -        0x10fd2ffff  com.apple.Foundation (6.9 - 1056.13) <2EE9AB07-3EA0-37D3-B407-4A520F2CB497> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10ff72000 -        0x11011ff27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x110144000 -        0x110196fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x1101f7000 -        0x1102b9ff5  com.apple.CoreText (352.0 - 367.19) <24848DF1-67EC-3D41-9548-1F14C6DFBBF9> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x110328000 -        0x110329ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x110335000 -        0x1104a5ff8  com.apple.CFNetwork (673.2.1 - 673.2.1) <AE407146-CCF2-33DD-AAEA-6887FD6F45BA> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1105b1000 -        0x1105b1fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x1105bb000 -        0x1107a0fff  com.apple.CoreFoundation (6.9 - 855.14) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x110912000 -        0x110a18ff7  com.apple.ImageIO.framework (3.3.0 - 1042) <6101F33E-CACC-3070-960A-9A2EA4BC5F44> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x110a80000 -        0x11139faf3  com.apple.CoreGraphics (1.600.0 - 599.20.11) <06212100-8069-31A1-9C44-F6C4B1695230> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x1114d2000 -        0x1114d2fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x1114dd000 -        0x112053fff  com.apple.AppKit (6.9 - 1265.19) <12647F2F-3FE2-3D77-B3F0-33EFAFF2CEA7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x1127da000 -        0x112809ff5  com.apple.GSS (4.0 - 2.0) <62046C17-5D09-346C-B08E-A664DBC18411> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x11282c000 -        0x11283dff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x11284a000 -        0x11284cfff  com.apple.OAuth (25 - 25) <22D42C60-CA67-31D7-A4A4-AFD8F35408D7> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
           0x112852000 -        0x11288aff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x1128c5000 -        0x112a18ff7  com.apple.audio.toolbox.AudioToolbox (1.10 - 1.10) <3511ABFE-22E1-3B91-B86A-5E3A78CE33FD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x112ab1000 -        0x112ab1ffd  com.apple.audio.units.AudioUnit (1.10 - 1.10) <486A97CD-C1F7-324D-87BC-B07F7A415B68> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x112abd000 -        0x112d05ff7  com.apple.CoreData (107 - 481.01) <DA339795-5D97-35B5-9B04-629830013720> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x112e30000 -        0x112e94fff  com.apple.datadetectorscore (5.0 - 354.3) <B92E87D1-2045-3AB2-AE3F-8F948B30518A> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x112ed6000 -        0x113006ff7  com.apple.desktopservices (1.8.2 - 1.8.2) <76D6ED93-9D5A-3941-8B88-A1773290AE74> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11308b000 -        0x113335ff5  com.apple.HIToolbox (2.1 - 697.4) <DF5635DD-C255-3A8E-8B49-F6D2FB61FF95> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x113494000 -        0x11349cff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x1134a9000 -        0x1134ebff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x113503000 -        0x1135eaff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x113624000 -        0x113708fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x1137cf000 -        0x113820ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x113846000 -        0x11384bfff  com.apple.DiskArbitration (2.6 - 2.6) <A4165553-770E-3D27-B217-01FC1F852B87> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x113858000 -        0x113859fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x11385f000 -        0x113871ff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x113881000 -        0x113899ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1138aa000 -        0x1138b7fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x1138cd000 -        0x113991ff7  com.apple.backup.framework (1.5.2 - 1.5.2) <A3C552F0-670B-388F-93FA-D917F96ACE1B> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x113a20000 -        0x113a3bff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x113a4c000 -        0x113a75ff7  libc++abi.dylib (49.1) <21A807D3-6732-3455-B77F-743E9F916DF0> /usr/lib/libc++abi.dylib
           0x113a87000 -        0x113a8bff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x113a93000 -        0x113a9dfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x113aab000 -        0x113ab2fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x113abe000 -        0x113ac5ff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x113ad3000 -        0x113b21fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x113b33000 -        0x113b4dfff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
           0x113b6e000 -        0x113b71ff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
           0x113b78000 -        0x113b78ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x113b81000 -        0x113b88ff8  liblaunch.dylib (842.90.1) <38D1AB2C-A476-385F-8EA8-7AB604CA1F89> /usr/lib/system/liblaunch.dylib
           0x113b92000 -        0x113b97fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x113ba2000 -        0x113ba4ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x113bab000 -        0x113bacffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x113bb3000 -        0x113bc4ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x113bd5000 -        0x113bd6ff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x113be1000 -        0x113c6aff7  libsystem_c.dylib (997.90.3) <6FD3A400-4BB2-3B95-B90C-BE6E9D0D78FA> /usr/lib/system/libsystem_c.dylib
           0x113c9d000 -        0x113c9fff3  libsystem_configuration.dylib (596.13) <B51C8C22-C455-36AC-952D-A319B6545884> /usr/lib/system/libsystem_configuration.dylib
           0x113ca9000 -        0x113cb1fff  libsystem_dnssd.dylib (522.90.2) <A0B7CF19-D9F2-33D4-8107-A62184C9066E> /usr/lib/system/libsystem_dnssd.dylib
           0x113cbd000 -        0x113ce4ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x113d01000 -        0x113d1dff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
           0x113d47000 -        0x113d76fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x113d82000 -        0x113d9dff7  libsystem_malloc.dylib (23.10.1) <A695B4E4-38E9-332E-A772-29D31E3F1385> /usr/lib/system/libsystem_malloc.dylib
           0x113da9000 -        0x113dd0ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x113def000 -        0x113df8ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x113e03000 -        0x113e09ff7  libsystem_platform.dylib (24.90.1) <3C3D3DA8-32B9-3243-98EC-D89B9A1670B3> /usr/lib/system/libsystem_platform.dylib
           0x113e1f000 -        0x113e26ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x113e37000 -        0x113e38ff7  libsystem_sandbox.dylib (278.11) <5E5A6E09-33A9-391A-AB34-E57D93BB1551> /usr/lib/system/libsystem_sandbox.dylib
           0x113e44000 -        0x113e48ff7  libsystem_stats.dylib (93.90.3) <1A55AF8A-B6C4-3163-B557-3AD25DA643A8> /usr/lib/system/libsystem_stats.dylib
           0x113e52000 -        0x113e53fff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x113e5f000 -        0x113e64ff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x113e6f000 -        0x113e93fff  libxpc.dylib (300.90.2) <AB40CD57-F454-3FD4-B415-63B3C0D5C624> /usr/lib/system/libxpc.dylib
           0x113eb5000 -        0x113ec5fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x113ecf000 -        0x113ed3fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x113ed8000 -        0x113ed8ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x113edf000 -        0x113eecff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x113ef6000 -        0x1141e0fff  com.apple.CoreServices.CarbonCore (1077.17 - 1077.17) <3A2E92FD-DEE2-3D45-9619-11500801A61C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x11425f000 -        0x1142effff  com.apple.Metadata (10.7.0 - 800.23) <BFEE576F-D779-300B-B685-26A3A008710A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x114357000 -        0x1143cefff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x114474000 -        0x1144e1fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x114525000 -        0x114580ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x1145b2000 -        0x11467bfff  com.apple.LaunchServices (572.26 - 572.26) <EF8A4A15-0861-35C5-9744-5E1BC5C26DD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x1146f4000 -        0x11471dfff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x114747000 -        0x11474efff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x11475b000 -        0x114766fff  libkxld.dylib (2422.90.20) <EF476345-7A69-3AC0-95ED-0196FB8910CB> /usr/lib/system/libkxld.dylib
           0x114770000 -        0x11477bff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x11478a000 -        0x11478dfff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x114796000 -        0x1147adff7  com.apple.CFOpenDirectory (10.9 - 173.90.1) <38A25261-C622-3F11-BFD3-7AFFC44D57B8> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1147d1000 -        0x1147dbff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x1147ea000 -        0x114812ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x114821000 -        0x1148adff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x1148e5000 -        0x114954ff1  com.apple.ApplicationServices.ATS (360 - 363.3) <546E89D9-2AE7-3111-B2B8-2366650D22F0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x114985000 -        0x114a0efff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x114a57000 -        0x114a9cffe  com.apple.HIServices (1.22 - 467.2) <B7FCF008-C241-3862-BC63-E6EF4006A6E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x114ad3000 -        0x114ae2ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x114af0000 -        0x114b3dff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x114b6e000 -        0x114ba7ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x114bc7000 -        0x114bd0fff  com.apple.speech.synthesis.framework (4.7.1 - 4.7.1) <383FB557-E88E-3239-82B8-15F9F885B702> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x114be3000 -        0x114be6ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x114bf4000 -        0x114bf4fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x114bf7000 -        0x114ecbfc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x114f12000 -        0x114f12fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x114f1c000 -        0x114fe7fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x114ff8000 -        0x1150a8ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1150b6000 -        0x115497ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x1154fe000 -        0x11566cff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x115695000 -        0x115784fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x1157ff000 -        0x115846fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x11586c000 -        0x115890ff7  libJPEG.dylib (1042) <33648F26-A1DA-3C30-B15B-E9FFD41DB25C> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x11589e000 -        0x1158f7fff  libTIFF.dylib (1042) <51D02EEC-0D0C-34C1-91C8-D316473A3FEA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x11590d000 -        0x115928ff7  libPng.dylib (1042) <36FF1DDA-9804-33C5-802E-3FCA9879F0E6> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x115936000 -        0x11593aff7  libGIF.dylib (1042) <C57840F6-1C11-3273-B4FC-956950B94034> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x11593f000 -        0x115a2dfff  libJP2.dylib (1042) <01D988D4-E36F-3120-8BA4-EF6282ECB010> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x115a5c000 -        0x115a5efff  libRadiance.dylib (1042) <B91D4B97-7BF3-3285-BCB7-4948BAAC23EE> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x115a64000 -        0x115aabff7  libcups.2.dylib (372.2) <37802F24-BCC2-3721-8E12-82B29B61B2AA> /usr/lib/libcups.2.dylib
           0x115ac7000 -        0x115ae0ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x115b00000 -        0x115b1cfff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x115b2b000 -        0x115c1cff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x115c2d000 -        0x115c92ff5  com.apple.Heimdal (4.0 - 2.0) <523EC6C4-BD9B-3840-9376-E617BA627F59> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x115cc1000 -        0x115cc2fff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x115cc8000 -        0x115cccff7  libheimdal-asn1.dylib (323.15) <B8BF2B7D-E913-3544-AA6D-CAC119F81C7C> /usr/lib/libheimdal-asn1.dylib
           0x115cd8000 -        0x115ce4ff7  com.apple.OpenDirectory (10.9 - 173.90.1) <E5EF8E1A-7214-36D0-AF0D-8D030DF6C2FC> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x115cfe000 -        0x115d07ffb  com.apple.CommonAuth (4.0 - 2.0) <70FDDA03-7B44-37EC-B78E-3EC3C8505C76> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x115d0e000 -        0x115d49fff  com.apple.bom (14.0 - 193.1) <EF24A562-6D3C-379E-8B9B-FAE0E4A0EF7C> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x115d60000 -        0x115d85ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x115da1000 -        0x116071ffc  com.apple.CoreImage (9.2.7) <BF88A02E-994E-3970-AC62-04248CA8DC46> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x11616d000 -        0x1161c0fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x1161e6000 -        0x116225fff  libGLU.dylib (9.6) <EE4907CA-219C-34BD-A84E-B85695F64C05> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x116235000 -        0x11623dffc  libGFXShared.dylib (9.6) <E276D384-3616-3511-B5F2-92621D6372D6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x116247000 -        0x116252fff  libGL.dylib (9.6) <A2EF4E15-EA08-396D-A1D4-29E1CED6876A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x11626a000 -        0x1162a8ff7  libGLImage.dylib (9.6) <DCF2E131-A65E-33B2-B32D-28FF01605AB1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x1162b4000 -        0x1162b6fff  libCVMSPluginSupport.dylib (9.6) <FFDA2811-060E-3591-A280-4A726AA82436> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x1162bd000 -        0x1162c0fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x1162c7000 -        0x1166faffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x116917000 -        0x116965fff  com.apple.opencl (2.3.59 - 2.3.59) <8C2ACCC6-B0BA-3FE7-98A1-5C67284DEA4E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x11697f000 -        0x11698bff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x116995000 -        0x1169aeff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x1169c5000 -        0x1169f5fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x116a24000 -        0x116a49ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x116a5c000 -        0x116adcfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x116af9000 -        0x116b51ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x116b9c000 -        0x116bcbfff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x116be7000 -        0x116c46fff  com.apple.framework.CoreWLAN (4.3.2 - 432.47) <AE6FAE44-918C-301C-A0AA-C65CAB6B5668> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x116c87000 -        0x116cb1ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x116cc4000 -        0x116d2afff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x116d8b000 -        0x116d8ffff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x116d9b000 -        0x116d9efff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x116da6000 -        0x116db8fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x116dd5000 -        0x116dedff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x116e01000 -        0x116e02ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x116e0c000 -        0x116e0eff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x116e19000 -        0x116fd7fff  com.apple.GeoServices (1.0 - 702.15.12) <5A4D463F-689F-3822-BF26-A19D51503019> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
           0x117136000 -        0x117140ff7  com.apple.ProtocolBuffer (1 - 182.1.3) <82E68598-A8AA-3AF1-843E-2A64F19472D4> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
           0x117152000 -        0x117fa0fff  com.apple.WebCore (9537 - 9537.74.11) <9683BA7C-A04B-3E33-B195-DCF1C2CABF95> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x11a4c2000 -        0x11a4eefff  com.apple.CoreServicesInternal (184.9 - 184.9) <4DEA54F9-81D6-3EDB-AA3C-1F9C497B3379> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesIn ternal
           0x11a560000 -        0x11a56dff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Librarian
           0x11a589000 -        0x11a591ff3  libCGCMS.A.dylib (599.20.11) <BB1E8D63-9FA1-3588-AC5D-1980576ED62C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
           0x11a6be000 -        0x11a6c1ffa  libCGXType.A.dylib (599.20.11) <C0B41DDE-0988-3652-B03B-9E5EB0DABAEB> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
           0x11b361000 -        0x11b389ffb  libRIP.A.dylib (599.20.11) <D79461A6-2E24-3531-ADA2-EAC972384A7D> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
           0x11ccaf000 -        0x11cf40fff  com.apple.RawCamera.bundle (5.04 - 736) <0C8A3629-BEAC-34A7-A3A3-B9AF4B3AB4B4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff68bd8000 -     0x7fff68c0b817  dyld (239.4) <2B17750C-ED1B-3060-B64E-21897D08B28B> /usr/lib/dyld
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 2
        thread_create: 1
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 5660
        thread_create: 892
        thread_set_state: 883
    VM Region Summary:
    ReadOnly portion of Libraries: Total=161.7M resident=73.7M(46%) swapped_out_or_unallocated=88.0M(54%)
    Writable regions: Total=1.1G written=10.3M(1%) resident=28.2M(3%) swapped_out=0K(0%) unallocated=1.1G(97%)
    REGION TYPE                        VIRTUAL
    ===========                        =======
    CG backing stores                     124K
    CG image                              264K
    CG shared images                      180K
    CoreServices                           16K
    Foundation                              4K
    JS JIT generated code                   8K
    JS JIT generated code (reserved)      1.0G        reserved VM address space (unallocated)
    Kernel Alloc Once                       8K
    MALLOC                               48.8M
    MALLOC (admin)                         32K
    Memory Tag 242                         12K
    SQLite page cache                     384K
    STACK GUARD                          56.0M
    Stack                                12.1M
    VM_ALLOCATE                          16.4M
    WebKit Malloc                        1232K
    __DATA                               23.5M
    __IMAGE                               528K
    __LINKEDIT                           41.9M
    __TEXT                              119.9M
    __UNICODE                             544K
    mapped file                          42.1M
    shared memory                           4K
    ===========                        =======
    TOTAL                                 1.4G
    TOTAL, minus reserved VM space      364.0M
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i5, 2.5 GHz, 4 GB, SMC 2.2f44
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 1024 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1600 MHz, 0x02FE, 0x45424A3230554638424455302D474E2D4620
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (5.106.98.100.22)
    Bluetooth: Version 4.2.3f10 13477, 3 services, 15 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE HDD HTS547550A9E384, 500.11 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: IR Receiver
    USB Device: Apple Internal Keyboard / Trackpad
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1

    You installed the "Genieo" search-hijacking rootkit. The product is a fraud, and the developer knowingly distributes an uninstaller that doesn't work. I suggest the tedious procedure below to disable Genieo. This procedure may leave a few small files behind, but it will deactivate any version of the rootkit that I know of.
    Back up all data. You must know how to restore from a backup even if the system becomes unbootable. If you don't know how to do that, or if you don't have any backups, stop here and ask for guidance.
    Step 1
    Triple-click anywhere in the line below on this page to select it:
    /etc/launchd.conf
    Right-click or control-click the line and select
    Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.
    If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination command-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.
    A folder may open with a file selected, or the file may not exist, in which case you'll get a message that it can't be found. If it does exist, it's a configuration file created or replaced by the Genieo installer. Any software installer that does this should be considered ipso facto malware. Move the file to the Trash. You'll be prompted for your administrator password. Then restart, empty the Trash, and continue as below.
    IMPORTANT: If the launchd.conf file exists, you must move it to the Trash and restart before continuing. Otherwise the system may become unbootable. In that case, restore from your backup and start over. That's how badly Genieo has sabotaged your system. If you're not sure you can complete this step, stop here and ask for guidance.
    Some installations of Genieo don't include the launchd.conf file, perhaps because it has already been removed. The absence of that file doesn't mean that Genieo is not installed.
    Step 2
    Quit the Genieo application, if it's running. Force quit if necessary.
    Move each of these items to the Trash in the same way as above:
    /Applications/Genieo.app
    /Applications/Uninstall Genieo.app
    /Library/Frameworks/GenieoExtra.framework
    /Library/LaunchAgents/com.genieo.engine.plist
    /Library/LaunchAgents/com.genieoinnovation.macextension.plist
    /Library/LaunchDaemons/com.genieoinnovation.macextension.client.plist
    /Library/PrivilegedHelperTools/com.genieoinnovation.macextension.client
    /usr/lib/libgenkit.dylib/usr/lib/libgenkitsa.dylib
    /usr/lib/libimckit.dylib
    /usr/lib/libimckitsa.dylib
    There's no need to restart after each one. Again, some of these items may be absent, in which case you'll get a message that the file can't be found. Skip that item and go on to the next one.
    Restart and empty the Trash. Don't try to empty the Trash until you have restarted.
    Step 3
    From the Safari menu bar, select
    Safari ▹ Preferences... ▹ Extensions
    Uninstall any extensions you don't know you need, including ones called "Genieo" or "Omnibar," and any that have the word "Spigot" or "InstallMac" in the description. If in doubt, uninstall all extensions. Do the equivalent for the Firefox and Chrome browsers, if you use either of those.
    Your web browser(s) should now be working, and you should be able to reset the home page and search engine. If not, stop here and post your results.
    Make sure you don't repeat the mistake that led you to install this undesirable software. Chances are you got it from one of the Internet's open sewers such as "Softonic" or "CNET Download." Never visit either of those sites again. You might also have downloaded it from an ad in a page on some other site. Typically the ad is a large green button labeled "Download Now" in white letters. The button is designed to mislead people who want to download something else on the same page. If you ever download a file that isn't obviously what you expected, delete it immediately.
    You may be wondering why you didn't get a warning from Gatekeeper about installing software from an unknown developer, as you should have. The reason is that the Genieo developer has a codesigning certificate issued by Apple, which causes Gatekeeper to give the installer a pass. Apple could revoke the certificate, but as of this writing, has not done so, even though it's aware of the problem. It must be said that this failure of oversight is inexcusable and has seriously compromised the value of Gatekeeper and the Developer ID program. You cannot rely on Gatekeeper alone to protect you from harmful software.
    Finally, be forewarned that when Genieo is mentioned on this site, the developer sometimes shows up under the name "Genieo support." If that happens, don't believe anything he says, but feel free to tell him what you think of his scam.

  • HELP. My Safari won't open. It keeps crashing unexpectedly

    Everytime I open Safari it crashing almost instantly. It started after I download this vpn app from the internet. I can't find a bad plugin and I have the latest version of Safari.  I have no idea what to do.
    I have 10.10.1 of vosemite, 
    Here is a copy of one of the crash reports.
    Process:               Safari [522]
    Path:                  /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:            com.apple.Safari
    Version:               8.0.2 (10600.2.5)
    Build Info:            WebBrowser-7600002005000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Safari [522]
    User ID:               501
    Date/Time:             2014-12-28 11:22:12.096 +0900
    OS Version:            Mac OS X 10.10.1 (14B25)
    Report Version:        11
    Anonymous UUID:        454AC66C-0429-F02B-9B8C-89D427EB1023
    Time Awake Since Boot: 510 seconds
    Crashed Thread:        69
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
        __TEXT                 000000010163f000-0000000101640000 [    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Enabled Extensions:
    com.genieo.safari-K444F5Z2ZH (1 - 1.2) Omnibar
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit               0x00007fff8fa3c548 _NSShortAppName + 0
    1   com.apple.AppKit               0x00007fff8f74a5be __55-[NSPersistentUIRestorer promptToIgnorePersistentState]_block_invoke + 878
    2   com.apple.AppKit               0x00007fff8f74a20e -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 28
    3   com.apple.AppKit               0x00007fff8f74a1ad -[NSPersistentUIRestorer promptToIgnorePersistentState] + 247
    4   com.apple.AppKit               0x00007fff8f749e9a -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 255
    5   com.apple.AppKit               0x00007fff8f749c69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    6   com.apple.AppKit               0x00007fff8f7496b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    7   com.apple.Foundation           0x00007fff8aa5e458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    8   com.apple.Foundation           0x00007fff8aa5e2c9 _NSAppleEventManagerGenericHandler + 102
    9   com.apple.AE                   0x00007fff88cbb99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    10  com.apple.AE                   0x00007fff88cbb719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    11  com.apple.AE                   0x00007fff88cbb623 aeProcessAppleEvent + 295
    12  com.apple.HIToolbox           0x00007fff908bb37e AEProcessAppleEvent + 56
    13  com.apple.AppKit               0x00007fff8f745d76 _DPSNextEvent + 2665
    14  com.apple.AppKit               0x00007fff8f744e80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    15  com.apple.Safari.framework     0x00000001016bdad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    16  com.apple.AppKit               0x00007fff8f738e23 -[NSApplication run] + 594
    17  com.apple.AppKit               0x00007fff8f7242d4 NSApplicationMain + 1832
    18  libdyld.dylib                 0x00007fff8f4765c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8a77822e kevent64 + 10
    1   libdispatch.dylib             0x00007fff81df9a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib         0x00007fff8a777132 __psynch_cvwait + 10
    1   com.apple.WebCore             0x000000010326f88b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore             0x000000010326c9d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore       0x000000010242ca9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff87f8f2fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff87f8f279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff87f8d4b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 8:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff8a77252e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a77169f mach_msg + 55
    2   com.apple.QuartzCore           0x00007fff861eed63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore           0x00007fff861eec96 thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff87f8f2fc _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff87f8f279 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff87f8d4b1 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff8a77252e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8a77169f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8c6bfb14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8c6befdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8c6be838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff9069dd20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff8aaa4b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff87f8f2fc _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff87f8f279 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff87f8d4b1 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff8a7773f6 __select + 10
    1   libsystem_pthread.dylib       0x00007fff87f8f2fc _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff87f8f279 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff87f8d4b1 thread_start + 13
    Thread 13:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 18:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 20:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 24:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 29:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 31:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 32:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 33:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 34:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 35:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 36:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 37:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 38:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 39:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 40:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 41:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 42:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 43:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 44:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 45:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 46:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 47:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 48:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 49:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 50:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 51:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 52:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 53:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 54:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 55:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 56:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 57:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 58:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 59:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 60:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 61:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 62:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 63:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 64:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 65:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 66:
    0   libsystem_kernel.dylib         0x00007fff8a777946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff87f8d4a1 start_wqthread + 13
    Thread 67:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff8a777132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8f393d2e std::__1::condition_variable::__do_timed_wait(std::__1::unique_lock<std::__1::m utex>&, std::__1::chrono::time_point<std::__1::chrono::system_clock, std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000000000l> > >) + 126
    2   com.apple.JavaScriptCore       0x00000001026483fa JSC::BlockAllocator::waitForDuration(std::__1::chrono::duration<long long, std::__1::ratio<1l, 1000l> >) + 170
    3   com.apple.JavaScriptCore       0x0000000102437244 JSC::BlockAllocator::blockFreeingThreadMain() + 84
    4   com.apple.JavaScriptCore       0x000000010242ca9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff87f8f2fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff87f8f279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff87f8d4b1 thread_start + 13
    Thread 68:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff8a777132 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8f393c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x000000010243786b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00000001024376c8 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x000000010242ca9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff87f8f2fc _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff87f8f279 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff87f8d4b1 thread_start + 13
    Thread 69 Crashed:
    0   libsystem_pthread.dylib       0x00007fff87f8d695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib             0x00007fff842b7b78 vfprintf_l + 28
    2   libsystem_c.dylib             0x00007fff842b0620 fprintf + 186
    3   ???                           0x000000010c4185dc 0 + 4500587996
    Thread 69 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff71ced1d8  rcx: 0x00007fff71ced1f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff71ced1f0  rsi: 0x00007fff87f8db14  rbp: 0x000000010b74de30  rsp: 0x000000010b74ddb0
       r8: 0x000000010c41c000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff71cec6b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff87f8d695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:     1
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10163f000 -        0x10163ffff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
           0x101647000 -        0x101f80ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
           0x102422000 -        0x102935ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
           0x102a9b000 -        0x102d4ffff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
           0x10302b000 -        0x10302bfff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
           0x103037000 -        0x103173ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
           0x103268000 -        0x10420dff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
           0x109590000 -        0x1095a9ff7  com.apple.WebInspector (10600 - 10600.2.1) <3586BC26-3AD6-3ED6-B50B-945DDBA82999> /System/Library/StagedFrameworks/Safari/WebInspector.framework/Versions/A/WebIn spector
           0x1095c5000 -        0x1096ddfff  com.apple.mobiledevice (757.1.5.0.2 - 757.1.5.0.2) <364C6894-934B-3844-A77F-7DFEC21F8AEE> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
           0x109759000 -        0x10978eff7  libssl.0.9.8.dylib (52) <70680606-475F-3C89-BB5F-E274253DC7C6> /usr/lib/libssl.0.9.8.dylib
           0x1097a4000 -        0x1097a4fff  com.apple.WebInspectorUI (10600 - 10600.2.1) <284BA94F-BD22-3E25-921A-6EE265AF2F0C> /System/Library/StagedFrameworks/Safari/WebInspectorUI.framework/Versions/A/Web InspectorUI
           0x10b6ae000 -        0x10b6aeff5 +cl_kernels (???) <026868C5-D9E6-4FA6-92F4-3D1DD3C36D48> cl_kernels
           0x10b745000 -        0x10b745fff +cl_kernels (???) <6BDF818F-4E39-447F-A96E-8C68140B7C33> cl_kernels
           0x10c1fe000 -        0x10c2e4fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
        0x7fff64206000 -     0x7fff6423c837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff81698000 -     0x7fff81709ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff81743000 -     0x7fff81746fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff81750000 -     0x7fff81787ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff81788000 -     0x7fff8178ffff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff81790000 -     0x7fff81792ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff81793000 -     0x7fff81794ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff81795000 -     0x7fff8183dff7  com.apple.PackageKit (3.0 - 434) <B6C2831E-914D-3E5F-B0E9-A7079489A6FD> /System/Library/PrivateFrameworks/PackageKit.framework/Versions/A/PackageKit
        0x7fff81880000 -     0x7fff81889ff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8188a000 -     0x7fff818aafff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff818ab000 -     0x7fff819efff7  com.apple.QTKit (7.7.3 - 2890) <6F6CD79F-CFBB-3FE4-82C6-47991346FB17> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff819f0000 -     0x7fff81b22ff7  com.apple.MediaControlSender (2.0 - 215.10) <8ECF208C-587A-325F-9866-09890D58F1B1> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff81b9c000 -     0x7fff81b9eff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff81b9f000 -     0x7fff81bccfff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff81bcd000 -     0x7fff81bdffff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff81bf7000 -     0x7fff81c02fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81c03000 -     0x7fff81c52ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff81c53000 -     0x7fff81c5aff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff81c5b000 -     0x7fff81d6affb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff81d6b000 -     0x7fff81ddffff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff81df5000 -     0x7fff81e1fff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff81e20000 -     0x7fff81e2dfff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff81e2e000 -     0x7fff81e3bff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff81e3c000 -     0x7fff81e58fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff81e5b000 -     0x7fff81e5cfff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff81e5d000 -     0x7fff81e72ff7  com.apple.AppContainer (4.0 - 238) <9481F305-359A-33E6-93F1-89A25FA14E00> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
        0x7fff81e73000 -     0x7fff81ef4ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff81ef5000 -     0x7fff81efdff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff81efe000 -     0x7fff81f03ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff81f2c000 -     0x7fff82111267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8212e000 -     0x7fff8212eff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff8212f000 -     0x7fff823a9fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff823aa000 -     0x7fff823c3ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff823c4000 -     0x7fff823cdff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff823ce000 -     0x7fff823d9fff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff823da000 -     0x7fff8270dff7  libmecabra.dylib (666.1) <CAFBC813-4894-3352-9B22-FFF116773A06> /usr/lib/libmecabra.dylib
        0x7fff8270e000 -     0x7fff82a79fff  com.apple.VideoToolbox (1.0 - 1562.19) <C08228FE-FA1E-394C-98CB-2AFD8E566C3F> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff82a7a000 -     0x7fff82a9fff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff82aa0000 -     0x7fff82abaff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff82abb000 -     0x7fff82bddff7  com.apple.LaunchServices (644.12 - 644.12) <D7710B20-0561-33BB-A3C8-463691D36E02> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff82bde000 -     0x7fff8300efff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff832a6000 -     0x7fff832d8ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff832d9000 -     0x7fff832f0ff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff832f1000 -     0x7fff83337ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff83338000 -     0x7fff83385ff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff83386000 -     0x7fff83394fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
        0x7fff83395000 -     0x7fff833c5ffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8343a000 -     0x7fff83467fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff83468000 -     0x7fff83710ff7  com.apple.RawCamera.bundle (6.02 - 768) <3156D0F8-335C-3380-A849-D47ED4163D3A> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff83711000 -     0x7fff83841fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff8384f000 -     0x7fff83877fff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff83878000 -     0x7fff8388ffff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
        0x7fff83890000 -     0x7fff83898fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff83899000 -     0x7fff83899fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8417e000 -     0x7fff84180fff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff841b8000 -     0x7fff841bafff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff841d3000 -     0x7fff841d5fff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff84223000 -     0x7fff84272ff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
        0x7fff84273000 -     0x7fff842fffff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff84300000 -     0x7fff84301ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
        0x7fff84305000 -     0x7fff84309ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8430a000 -     0x7fff84318ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
        0x7fff84319000 -     0x7fff84842ff7  com.apple.QuartzComposer (5.1 - 325) <2007FD9E-A5CF-361E-A7DD-ACAF976860AD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff84b9e000 -     0x7fff84bcefff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff84bcf000 -     0x7fff84c20ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff84cbd000 -     0x7fff84d31ff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84d32000 -     0x7fff84d8dfff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff84d8e000 -     0x7fff84dcffff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff84dd0000 -     0x7fff84de1ff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff84de2000 -     0x7fff84df4ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff84df5000 -     0x7fff84e01ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff84e02000 -     0x7fff84e03fff  libquit.dylib (182) <62510786-F686-3AC4-B315-D05A4B7A896F> /usr/lib/libquit.dylib
        0x7fff84e22000 -     0x7fff84e7aff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
        0x7fff84e7b000 -     0x7fff84f6fff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff85100000 -     0x7fff851e3fff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff851e4000 -     0x7fff8520ffff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff85213000 -     0x7fff8524bffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff85251000 -     0x7fff85289fff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8528a000 -     0x7fff8529bfff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8529c000 -     0x7fff85788fff  com.apple.MediaToolbox (1.0 - 1562.19) <36062C5F-CC37-3F50-8383-07A9C8C75F33> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff85789000 -     0x7fff857b8fff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff857b9000 -     0x7fff85a23ff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff85a3d000 -     0x7fff85e90fc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff85e91000 -     0x7fff85f4cff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff85f62000 -     0x7fff86089fff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff861c7000 -     0x7fff86377ff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff86378000 -     0x7fff863d6fff  com.apple.StoreFoundation (1.0 - 1) <50F9E283-FCE4-306C-AF5D-D0AEA434C04E> /System/Library/PrivateFrameworks/StoreFoundation.framework/Versions/A/StoreFou ndation
        0x7fff863d7000 -     0x7fff863e6fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff863e7000 -     0x7fff863f4ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff8642f000 -     0x7fff8642fff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff86430000 -     0x7fff86430fff  com.apple.quartzframework (1.5 - 1.5) <4944127A-F319-3689-AAEC-58591D3CAC07> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff86471000 -     0x7fff86474fff  libScreenReader.dylib (390.2) <96ACAA49-21B6-3D10-ADF8-FF6C8F22FD9F> /usr/lib/libScreenReader.dylib
        0x7fff86475000 -     0x7fff8649dffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8649e000 -     0x7fff8649efff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff86538000 -     0x7fff8662afff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff8664f000 -     0x7fff867ddfff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff867de000 -     0x7fff86854fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff86855000 -     0x7fff868a2fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff868aa000 -     0x7fff86969fff  com.apple.backup.framework (1.6.1 - 1.6.1) <A7BBE57D-D5E7-39DD-812C-31190159F679> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8696a000 -     0x7fff86c16fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff86c17000 -     0x7fff86c1dff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff86c1e000 -     0x7fff86c1ffff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff86c43000 -     0x7fff86c59ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff86c5a000 -     0x7fff86c7bfff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff86c7c000 -     0x7fff86cebfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff86d06000 -     0x7fff86d94ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff86d95000 -     0x7fff86d97ff7  com.apple.SecCodeWrapper (4.0 - 238) <F450AB10-B0A4-3B55-A1B9-563E55C99333> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff86d98000 -     0x7fff86df3fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff86df4000 -     0x7fff86f31fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff86f32000 -     0x7fff86f3bfff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff86f3c000 -     0x7fff86f3cfff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff86f3d000 -     0x7fff86fa4ff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86fe0000 -     0x7fff86fe7fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff86fe8000 -     0x7fff86ff3ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff86ff4000 -     0x7fff86ff8fff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff870d5000 -     0x7fff87240ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8730d000 -     0x7fff87313fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8732e000 -     0x7fff8739cffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8739e000 -     0x7fff873a6ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff873a7000 -     0x7fff873d5fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff873d6000 -     0x7fff87404ff7  com.apple.CommerceKit (1.2.0 - 376.0.5) <651BD237-2055-3D9D-8B12-8A4474D26AC1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/CommerceKit
        0x7fff87405000 -     0x7fff8740ffff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
        0x7fff8748a000 -     0x7fff8748fff7  com.apple.ServerInformation (2.0 - 1) <020F4A0E-F1A2-38AE-8F2B-22200CF1FC82> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
        0x7fff87490000 -     0x7fff874b6ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff874b8000 -     0x7fff874ddff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff874de000 -     0x7fff874e9ff7  com.apple.AppSandbox (4.0 - 238) <BC5EE1CA-764A-303D-9989-4041C1291026> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff874f5000 -     0x7fff874f8ff7  com.apple.AppleSystemInfo (3.0 - 3.0) <E54DA0B2-3515-3B1C-A4BD-54A0B02B5612> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff874f9000 -     0x7fff874fdfff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
        0x7fff87516000 -     0x7fff875bcfff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff875bd000 -     0x7fff87624ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff87f8c000 -     0x7fff87f95fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff88726000 -     0x7fff88743fff  com.apple.DistributionKit (700 - 920) <079B0A4A-97CD-34D6-B50D-AB5D656B2A38> /System/Library/PrivateFrameworks/Install.framework/Frameworks/DistributionKit. framework/Versions/A/DistributionKit
        0x7fff88744000 -     0x7fff88752fff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
        0x7fff88753000 -     0x7fff8878efff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8878f000 -     0x7fff88a76ffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88a77000 -     0x7fff88a93ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff88a94000 -     0x7fff88bf2ff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff88bf3000 -     0x7fff88c17ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff88c18000 -     0x7fff88c1bfff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88c1c000 -     0x7fff88cadfff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff88cae000 -     0x7fff88d0dff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88d0e000 -     0x7fff88d13ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff88d20000 -     0x7fff88dbfdf7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff88ef5000 -     0x7fff88f30fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF

    i have the same problem:
    Process:          
    Safari [1542]
    Path:             
    /Applications/Safari.app/Contents/MacOS/Safari
    Identifier:       
    com.apple.Safari
    Version:          
    8.0.2 (10600.2.5)
    Build Info:       
    WebBrowser-7600002005000000~1
    Code Type:        
    X86-64 (Native)
    Parent Process:   
    ??? [1]
    Responsible:      
    Safari [1542]
    User ID:          
    501
    Date/Time:        
    2014-12-28 23:13:15.986 +0100
    OS Version:       
    Mac OS X 10.10.1 (14B25)
    Report Version:   
    11
    Anonymous UUID:   
    6DDDB3DF-3770-6348-7AE5-9A769B44B9E2
    Time Awake Since Boot: 13000 seconds
    Crashed Thread:   
    16
    Exception Type:   
    EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:  
    KERN_INVALID_ADDRESS at 0x0000000000000020
    External Modification Warnings:
    Thread creation by external task.
    VM Regions Near 0x20:
    -->
    __TEXT            
    0000000105857000-0000000105858000 [
    4K] r-x/rwx SM=COW  /Applications/Safari.app/Contents/MacOS/Safari
    Application Specific Information:
    Process Model:
    Multiple Web Processes
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_malloc.dylib  
    0x00007fff92d8b933 _nano_malloc_check_clear + 73
    1   libsystem_malloc.dylib  
    0x00007fff92d8b8cc nano_malloc + 35
    2   libsystem_malloc.dylib  
    0x00007fff92d8b877 malloc_zone_malloc + 71
    3   libsystem_malloc.dylib  
    0x00007fff92d8a395 malloc + 42
    4   libsystem_blocks.dylib  
    0x00007fff9332d955 _Block_object_assign + 316
    5   libsystem_blocks.dylib  
    0x00007fff9332d5a5 _Block_copy_internal + 341
    6   com.apple.CoreFoundation
    0x00007fff84aa2d25 _CFXNotificationRegisterObserver + 1253
    7   com.apple.Foundation    
    0x00007fff8dc25c59 -[NSDistributedNotificationCenter addObserver:selector:name:object:suspensionBehavior:] + 226
    8   com.apple.Foundation    
    0x00007fff8dc47570 -[NSDistributedNotificationCenter addObserver:selector:name:object:] + 29
    9   com.apple.AppKit        
    0x00007fff912ec137 -[NSVisualEffectView _commonInit] + 266
    10  com.apple.AppKit        
    0x00007fff912ec237 -[NSVisualEffectView initWithFrame:] + 94
    11  com.apple.AppKit        
    0x00007fff91643bfb -[NSTitlebarView initWithFrame:] + 77
    12  com.apple.AppKit        
    0x00007fff913bdf0c -[NSThemeFrame _makeTitlebarViewWithFrame:] + 88
    13  com.apple.AppKit        
    0x00007fff913bfea9 __49-[NSThemeFrame _floatTitlebarAndToolbarFromInit:]_block_invoke + 548
    14  com.apple.AppKit        
    0x00007fff90da9339 +[NSAnimationContext runAnimationGroup:completionHandler:] + 82
    15  com.apple.AppKit        
    0x00007fff913bfc41 -[NSThemeFrame _floatTitlebarAndToolbarFromInit:] + 104
    16  com.apple.AppKit        
    0x00007fff913baa72 -[NSThemeFrame setLayer:] + 106
    17  com.apple.AppKit        
    0x00007fff90d73bfc -[NSView(NSInternal) _createLayerAndInitialize] + 208
    18  com.apple.AppKit        
    0x00007fff90d73a4c -[NSView _doSetWantsLayerYES] + 497
    19  com.apple.AppKit        
    0x00007fff90d73533 -[NSView setWantsLayer:] + 465
    20  com.apple.AppKit        
    0x00007fff90db4007 -[NSThemeFrame setWantsLayer:] + 56
    21  com.apple.AppKit        
    0x00007fff90d1a725 -[NSThemeFrame initWithFrame:styleMask:owner:] + 202
    22  com.apple.AppKit        
    0x00007fff90d18c96 -[NSWindow _commonInitFrame:styleMask:backing:defer:] + 614
    23  com.apple.AppKit        
    0x00007fff90d183fc -[NSWindow _initContent:styleMask:backing:defer:contentView:] + 1477
    24  com.apple.AppKit        
    0x00007fff90d17e2a -[NSWindow initWithContentRect:styleMask:backing:defer:] + 45
    25  com.apple.Safari.framework  
    0x000000010596287c -[BrowserWindowControllerMac loadWindow] + 236
    26  com.apple.AppKit        
    0x00007fff90f24684 -[NSWindowController window] + 80
    27  com.apple.Safari.framework  
    0x0000000105964053 -[BrowserWindowControllerMac showWindow:] + 66
    28  com.apple.AppKit        
    0x00007fff90fe9c0a -[NSDocument showWindows] + 93
    29  com.apple.AppKit        
    0x00007fff90fe8741 -[NSDocumentController openUntitledDocumentAndDisplay:error:] + 470
    30  com.apple.AppKit        
    0x00007fff90fe852c -[NSDocumentController newDocument:] + 36
    31  com.apple.Safari.framework  
    0x000000010595b7c0 +[BrowserWindowControllerMac reopen] + 256
    32  com.apple.Safari.framework  
    0x000000010586a67f -[AppController applicationOpenUntitledFile:] + 22
    33  com.apple.AppKit        
    0x00007fff90f1ea5a -[NSApplication _doOpenUntitled] + 424
    34  com.apple.AppKit        
    0x00007fff90e57b91 __58-[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:]_block_invoke + 252
    35  com.apple.AppKit        
    0x00007fff91161389 __97-[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:]_block_invoke_3 + 140
    36  com.apple.AppKit        
    0x00007fff91160d81 -[NSDocumentController(NSInternal) _autoreopenDocumentsIgnoringExpendable:withCompletionHandler:] + 798
    37  com.apple.AppKit        
    0x00007fff90cffee6 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 331
    38  com.apple.AppKit        
    0x00007fff90cffc69 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 561
    39  com.apple.AppKit        
    0x00007fff90cff6b5 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 244
    40  com.apple.Foundation    
    0x00007fff8dc3a458 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 290
    41  com.apple.Foundation    
    0x00007fff8dc3a2c9 _NSAppleEventManagerGenericHandler + 102
    42  com.apple.AE            
    0x00007fff83b5c99c aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 531
    43  com.apple.AE            
    0x00007fff83b5c719 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 31
    44  com.apple.AE            
    0x00007fff83b5c623 aeProcessAppleEvent + 295
    45  com.apple.HIToolbox     
    0x00007fff8709c37e AEProcessAppleEvent + 56
    46  com.apple.AppKit        
    0x00007fff90cfbd76 _DPSNextEvent + 2665
    47  com.apple.AppKit        
    0x00007fff90cfae80 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    48  com.apple.Safari.framework  
    0x00000001058d3ad0 -[BrowserApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 246
    49  com.apple.AppKit        
    0x00007fff90ceee23 -[NSApplication run] + 594
    50  com.apple.AppKit        
    0x00007fff90cda2d4 NSApplicationMain + 1832
    51  libdyld.dylib           
    0x00007fff8f9365c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib  
    0x00007fff92dee22e kevent64 + 10
    1   libdispatch.dylib       
    0x00007fff87380a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 6:: WebCore: IconDatabase
    0   libsystem_kernel.dylib  
    0x00007fff92ded132 __psynch_cvwait + 10
    1   com.apple.WebCore       
    0x000000010748688b WebCore::IconDatabase::syncThreadMainLoop() + 411
    2   com.apple.WebCore       
    0x00000001074839d9 WebCore::IconDatabase::iconDatabaseSyncThread() + 361
    3   com.apple.JavaScriptCore
    0x000000010663fa9f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib 
    0x00007fff8597c2fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8597c279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8597a4b1 thread_start + 13
    Thread 7:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 8:: Dispatch queue: com.apple.notification_center.server_conn.0x00006080000fba00.dq
    0   libsystem_kernel.dylib  
    0x00007fff92de852e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff92de769f mach_msg + 55
    2   libsystem_kernel.dylib  
    0x00007fff92ddc40b host_create_mach_voucher + 162
    3   libdispatch.dylib       
    0x00007fff8739a890 _voucher_create_mach_voucher_with_priority + 350
    4   libdispatch.dylib       
    0x00007fff873837ce _dispatch_mach_msg_send + 364
    5   libdispatch.dylib       
    0x00007fff873842d6 _dispatch_mach_send_drain + 189
    6   libdispatch.dylib       
    0x00007fff87382bc0 _dispatch_mach_invoke + 664
    7   libdispatch.dylib       
    0x00007fff87381154 _dispatch_queue_drain + 571
    8   libdispatch.dylib       
    0x00007fff87382ecc _dispatch_queue_invoke + 202
    9   libdispatch.dylib       
    0x00007fff873806b7 _dispatch_root_queue_drain + 463
    10  libdispatch.dylib       
    0x00007fff8738efe4 _dispatch_worker_thread3 + 91
    11  libsystem_pthread.dylib 
    0x00007fff8597c6cb _pthread_wqthread + 729
    12  libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 10:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib  
    0x00007fff92de852e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff92de769f mach_msg + 55
    2   com.apple.QuartzCore    
    0x00007fff92e41d63 CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore    
    0x00007fff92e41c96 thread_fun + 25
    4   libsystem_pthread.dylib 
    0x00007fff8597c2fc _pthread_body + 131
    5   libsystem_pthread.dylib 
    0x00007fff8597c279 _pthread_start + 176
    6   libsystem_pthread.dylib 
    0x00007fff8597a4b1 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib  
    0x00007fff92de852e mach_msg_trap + 10
    1   libsystem_kernel.dylib  
    0x00007fff92de769f mach_msg + 55
    2   com.apple.CoreFoundation
    0x00007fff84b03b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation
    0x00007fff84b02fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation
    0x00007fff84b02838 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork     
    0x00007fff85140d20 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation    
    0x00007fff8dc80b7a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib 
    0x00007fff8597c2fc _pthread_body + 131
    8   libsystem_pthread.dylib 
    0x00007fff8597c279 _pthread_start + 176
    9   libsystem_pthread.dylib 
    0x00007fff8597a4b1 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib  
    0x00007fff92ded946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib 
    0x00007fff8597a4a1 start_wqthread + 13
    Thread 16 Crashed:
    0   libsystem_pthread.dylib 
    0x00007fff8597a695 _pthread_mutex_lock + 87
    1   libsystem_c.dylib       
    0x00007fff93372b78 vfprintf_l + 28
    2   libsystem_c.dylib       
    0x00007fff9336b620 fprintf + 186
    3   ???                     
    0x000000010c68e5dc 0 + 4503168476
    Thread 16 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff760821d8  rcx: 0x00007fff760821f0  rdx: 0x00000000000000a0
      rdi: 0x00007fff760821f0  rsi: 0x00007fff8597ab14  rbp: 0x000000010c68ae30  rsp: 0x000000010c68adb0
       r8: 0x000000010c692000   r9: 0x0000000000000054  r10: 0x0000000000000000  r11: 0x0000000000000206
      r12: 0x00007fff760816b8  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x0000000000000000
      rip: 0x00007fff8597a695  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU:
    0
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x105857000 -   
    0x105857fff  com.apple.Safari (8.0.2 - 10600.2.5) <2225AE13-780E-3234-9A05-9DD6D94EE96C> /Applications/Safari.app/Contents/MacOS/Safari
    0x10585d000 -   
    0x106196ff7  com.apple.Safari.framework (10600 - 10600.2.5) <70257BE2-5D89-3EAA-8863-269880160EEE> /System/Library/StagedFrameworks/Safari/Safari.framework/Versions/A/Safari
    0x106635000 -   
    0x106b48ff3  com.apple.JavaScriptCore (10600 - 10600.2.1) <ABEF8FB3-6DC5-3FCF-9B4A-1DF6411063B0> /System/Library/StagedFrameworks/Safari/JavaScriptCore.framework/Versions/A/Jav aScriptCore
    0x106cb1000 -   
    0x106f65fff  com.apple.WebKit (10600 - 10600.2.5) <11CA89A1-A002-3FEB-8046-B31E92003AED> /System/Library/StagedFrameworks/Safari/WebKit.framework/Versions/A/WebKit
    0x10723e000 -   
    0x10723efff  com.apple.WebKit2 (10600 - 10600.2.5) <ED09F7D3-1F46-3925-8E11-D6AC3492658E> /System/Library/StagedFrameworks/Safari/WebKit2.framework/Versions/A/WebKit2
    0x10724a000 -   
    0x107386ffb  com.apple.WebKitLegacy (10600 - 10600.2.5) <0A88D3D6-F5BA-30F4-9D09-87DF653759FC> /System/Library/StagedFrameworks/Safari/WebKitLegacy.framework/Versions/A/WebKi tLegacy
    0x10747f000 -   
    0x108424ff7  com.apple.WebCore (10600 - 10600.2.1) <628CB849-0E8D-3071-98A3-55E7D24087DF> /System/Library/StagedFrameworks/Safari/WebCore.framework/Versions/A/WebCore
    0x10c67f000 -   
    0x10c67ffef +cl_kernels (???) <1D2D5156-455D-4326-8173-2BE5B72A7FE4> cl_kernels
    0x10d6ab000 -   
    0x10d6abff5 +cl_kernels (???) <710CD521-52E8-42F4-8E4B-91FF3CC1E56B> cl_kernels
    0x10e3d1000 -   
    0x10e4b7fef  unorm8_bgra.dylib (2.4.5) <90797750-141F-3114-ACD0-A71363968678> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x7fff6f5d4000 -
    0x7fff6f60a837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
    0x7fff83aff000 -
    0x7fff83b4eff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x7fff83b4f000 -
    0x7fff83baeff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x7fff83baf000 -
    0x7fff83baffff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x7fff83bb0000 -
    0x7fff83cf6fef  libsqlite3.dylib (168) <8B78BED1-7B9B-3943-80DC-0871015AEAC4> /usr/lib/libsqlite3.dylib
    0x7fff83cf7000 -
    0x7fff83d4bfff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
    0x7fff83d4c000 -
    0x7fff83fc6fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff84195000 -
    0x7fff8420bfe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
    0x7fff8420c000 -
    0x7fff8420cfff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x7fff8420d000 -
    0x7fff84230fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x7fff84231000 -
    0x7fff84235fff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x7fff84236000 -
    0x7fff844e2fff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x7fff84a11000 -
    0x7fff84a27ff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
    0x7fff84a28000 -
    0x7fff84a35ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
    0x7fff84a36000 -
    0x7fff84a3eff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
    0x7fff84a4a000 -
    0x7fff84a52fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
    0x7fff84a5a000 -
    0x7fff84a6bfff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
    0x7fff84a6c000 -
    0x7fff84a90ff7  com.apple.quartzfilters (1.10.0 - 1.10.0) <1AE50F4A-0098-34E7-B24D-DF7CB94073CE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x7fff84a91000 -
    0x7fff84e27fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff84e28000 -
    0x7fff84e2aff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
    0x7fff84e2b000 -
    0x7fff84ec0ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x7fff84ec1000 -
    0x7fff84ec8ff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x7fff84ec9000 -
    0x7fff84f30ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x7fff84f31000 -
    0x7fff85025ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x7fff85026000 -
    0x7fff8502bffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
    0x7fff85031000 -
    0x7fff8504dfff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x7fff850a0000 -
    0x7fff852a3ff3  com.apple.CFNetwork (720.1.1 - 720.1.1) <A82E71B3-2CDB-3840-A476-F2304D896E03> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff852a4000 -
    0x7fff852e4ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x7fff852e5000 -
    0x7fff853d7ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff853d8000 -
    0x7fff85466ff7  com.apple.CorePDF (4.0 - 4) <9CD7EC6D-3593-3D60-B04F-75F612CCB99A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x7fff8548e000 -
    0x7fff8548ffff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
    0x7fff8554d000 -
    0x7fff8565cffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x7fff856d6000 -
    0x7fff856defff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
    0x7fff856df000 -
    0x7fff85947ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x7fff85948000 -
    0x7fff85962ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x7fff85979000 -
    0x7fff85982fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
    0x7fff85983000 -
    0x7fff8599fff7  com.apple.pluginkit.framework (1.0 - 1) <566FECEA-620F-3E70-8B87-C69A4486811F> /System/Library/PrivateFrameworks/PlugInKit.framework/Versions/A/PlugInKit
    0x7fff859a0000 -
    0x7fff85afeff3  com.apple.avfoundation (2.0 - 889.10) <4D1735C4-D055-31E9-8051-FED29F41F4F6> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x7fff85aff000 -
    0x7fff85b0aff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
    0x7fff85b0b000 -
    0x7fff85bfdfff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
    0x7fff85bfe000 -
    0x7fff85c19fff  com.apple.PackageKit.PackageUIKit (3.0 - 434) <BE4B6C6F-4A32-3DB1-B81B-EF9ADD70E6EA> /System/Library/PrivateFrameworks/PackageKit.framework/Frameworks/PackageUIKit. framework/Versions/A/PackageUIKit
    0x7fff85c1a000 -
    0x7fff85c57ff3  com.apple.bom (14.0 - 193.6) <3CE5593D-DB28-3BFD-943E-6261006FA292> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x7fff85c5a000 -
    0x7fff85cc8ffb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff86552000 -
    0x7fff8659fff3  com.apple.CoreMediaIO (601.0 - 4749) <DDB756B3-A281-3791-9744-1F52CF8E5EDB> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x7fff865a0000 -
    0x7fff865b7fff  com.apple.login (3.0 - 3.0) <95726FE9-E732-3A3C-A7A1-2566678967D3> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
    0x7fff865cc000 -
    0x7fff86737ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x7fff86738000 -
    0x7fff86793fef  libTIFF.dylib (1231) <115791FB-8C49-3410-AC23-56F4B1CFF124> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x7fff86794000 -
    0x7fff86794ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
    0x7fff86795000 -
    0x7fff86797fff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
    0x7fff86798000 -
    0x7fff86fd1ff3  com.apple.CoreGraphics (1.600.0 - 772) <936D081F-37B3-3DA3-B725-118D0B07DDD2> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x7fff86fd2000 -
    0x7fff86fd8ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff86fe8000 -
    0x7fff86ffeff7  com.apple.CoreMediaAuthoring (2.2 - 951) <B5E5ADF2-BBE8-30D9-83BC-74D0D450CF42> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x7fff86fff000 -
    0x7fff87049fff  com.apple.DiskManagement (7.0 - 847) <A57A181E-7C50-38F6-BE0A-4F437BB8C45F> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x7fff87061000 -
    0x7fff87363fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x7fff8737c000 -
    0x7fff873a6ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
    0x7fff873a7000 -
    0x7fff87429fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x7fff87443000 -
    0x7fff87457ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
    0x7fff87458000 -
    0x7fff87507fe7  libvMisc.dylib (512) <AFBA45DE-7F55-3E4E-B8DF-5E8E21C407AD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x7fff87508000 -
    0x7fff875deff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x7fff875df000 -
    0x7fff87a0ffff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff87a10000 -
    0x7fff87a1efff  libIASAuthReboot.dylib (920) <B165E345-197F-3DC7-A52B-64C34FD95D0A> /usr/lib/libIASAuthReboot.dylib
    0x7fff87a1f000 -
    0x7fff87a2dff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff87a51000 -
    0x7fff87a76fff  libPng.dylib (1231) <759DF465-B08C-3E97-9A07-3CD447F84F78> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x7fff87af5000 -
    0x7fff87b01ff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff87b02000 -
    0x7fff87b28ff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
    0x7fff87b32000 -
    0x7fff87b40ff7  com.apple.ToneLibrary (1.0 - 1) <3E6D130D-77B0-31E1-98E3-A6052AB09824> /System/Library/PrivateFrameworks/ToneLibrary.framework/Versions/A/ToneLibrary
    0x7fff87c5a000 -
    0x7fff87c5afff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff882c3000 -
    0x7fff8869afe7  com.apple.CoreAUC (211.0.0 - 211.0.0) <C8B2470F-3994-37B8-BE10-6F78667604AC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x7fff8869b000 -
    0x7fff8869cff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
    0x7fff8869d000 -
    0x7fff8869effb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
    0x7fff887e8000 -
    0x7fff88834ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
    0x7fff88835000 -
    0x7fff88840ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
    0x7fff88848000 -
    0x7fff88861ff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7fff88862000 -
    0x7fff88862fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x7fff88863000 -
    0x7fff88863ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
    0x7fff88883000 -
    0x7fff88914fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
    0x7fff88ba4000 -
    0x7fff88bb7ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
    0x7fff88bb8000 -
    0x7fff88bc6fff  com.apple.AddressBook.ContactsFoundation (9.0 - 1499) <1F879F4E-369A-38F7-A768-8B9009617479> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/Conta ctsFoundation
    0x7fff89b6c000 -
    0x7fff89b6ffff  libScreenReader.dylib (390.2) <96ACAA49-21B6-3D10-ADF8-FF6C8F22FD9F> /usr/lib/libScreenReader.dylib
    0x7fff89c43000 -
    0x7fff89c7cfff  com.apple.AirPlaySupport (2.0 - 215.10) <E4159036-4C38-3F28-8AF3-4F074DAF01AC> /System/Library/PrivateFrameworks/AirPlaySupport.framework/Versions/A/AirPlaySu pport
    0x7fff89c7d000 -
    0x7fff89d01ff7  com.apple.ViewBridge (99.1 - 99.1) <B36779D4-BEAF-36DD-83AF-E67F639BFF36> /System/Library/PrivateFrameworks/ViewBridge.framework/Versions/A/ViewBridge
    0x7fff89d02000 -
    0x7fff89d1dff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x7fff89d6b000 -
    0x7fff89da6fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x7fff89da7000 -
    0x7fff89df4fff  com.apple.ImageCaptureCore (6.0 - 6.0) <93B4D878-A86B-3615-8426-92E4C79F8482> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x7fff89df5000 -
    0x7fff89ed2ff7  com.apple.QuickLookUIFramework (5.0 - 675) <84FEB409-7D7A-35AC-83BE-F79FB293E23E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x7fff89ed3000 -
    0x7fff89eedff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
    0x7fff89eee000 -
    0x7fff89eeeff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
    0x7fff89eef000 -
    0x7fff8a0d4267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
    0x7fff8a16d000 -
    0x7fff8a19afff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x7fff8a19b000 -
    0x7fff8a22ffff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x7fff8a230000 -
    0x7fff8a251fff  com.apple.framework.Apple80211 (10.0.1 - 1001.57.4) <E449B57F-1AC3-3DF1-8A13-4390FB3A05A4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x7fff8a277000 -
    0x7fff8a281fff  com.apple.IntlPreferences (2.0 - 150.1) <F2DE1784-F780-3E3F-A626-D9CBD38F20EE> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x7fff8a28d000 -
    0x7fff8a28fffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
    0x7fff8a290000 -
    0x7fff8a298fe7  libcldcpuengine.dylib (2.4.5) <DF810F9A-1755-3283-82C3-D8192BCD8016> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x7fff8a2f6000 -
    0x7fff8a5ddffb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x7fff8a5de000 -
    0x7fff8a667fff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x7fff8a668000 -
    0x7fff8a6c3fff  com.apple.QuickLookFramework (5.0 - 675) <D71CD23B-643B-341B-A890-57FE099B36C7> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x7fff8a6c4000 -
    0x7fff8a6c4fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <C7278843-2462-32F6-B0E3-D33C681399A2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff8a6d7000 -
    0x7fff8a6dafff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7fff8a787000 -
    0x7fff8a7cdffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x7fff8a829000 -
    0x7fff8a82cfff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7fff8a82d000 -
    0x7fff8a8a1fff  com.apple.ShareKit (1.0 - 323) <9FC7280E-DB42-37F0-AE57-29E28C9B4E16> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x7fff8a8a2000 -
    0x7fff8a948fff  com.apple.PDFKit (3.0 - 3.0) <C55D8F39-561D-32C7-A701-46F76D6CC151> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x7fff8a949000 -
    0x7fff8a974fff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
    0x7fff8a975000 -
    0x7fff8a97dfff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
    0x7fff8a97e000 -
    0x7fff8a982ff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff8a983000 -
    0x7fff8a984ff7  com.apple.AddressBook.ContactsData (9.0 - 1499) <A3D84EBD-3007-3A49-BEE5-F05790DCF38E> /System/Library/PrivateFrameworks/ContactsData.framework/Versions/A/ContactsDat a
    0x7fff8a985000 -
    0x7fff8a9b8ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x7fff8a9b9000 -
    0x7fff8a9e4ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
    0x7fff8a9e5000 -
    0x7fff8a9ecfff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8a9ed000 -
    0x7fff8a9effff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8aad2000 -
    0x7fff8aadfff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
    0x7fff8aae0000 -
    0x7fff8ab31ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x7fff8ab49000 -
    0x7fff8abb8fff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x7fff8abb9000 -
    0x7fff8abd3ff7  libextension.dylib (55.1) <ECBDCC15-FA19-3578-961C-B45FCC994BAF> /usr/lib/libextension.dylib
    0x7fff8abd4000 -
    0x7fff8ac21ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x7fff8ac22000 -
    0x7fff8ac4bffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
    0x7fff8ac4c000 -
    0x7fff8ac53fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
    0x7fff8ac54000 -
    0x7fff8ac5cffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff8afad000 -
    0x7fff8aff9fff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x7fff8b004000 -
    0x7fff8b014ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
    0x7fff8b01a000 -
    0x7fff8b14afff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
    0x7fff8b14b000 -
    0x7fff8b16bfff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
    0x7fff8b177000 -
    0x7fff8b25afff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff8b25b000 -
    0x7fff8b262fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
    0x7fff8b263000 -
    0x7fff8b26efff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8b26f000 -
    0x7fff8b2affff  com.apple.CloudDocs (1.0 - 280.1.2) <49E75BC1-6556-36B4-804A-E49BC41241CF> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
    0x7fff8b3b1000 -
    0x7fff8b3d5fef  libJPEG.dylib (1231) <3F87A0CA-14FA-3034-A332-DD57A092B08F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x7fff8b3d6000 -
    0x7fff8b3f0ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff8b3f1000 -
    0x7fff8b631ff7  com.apple.AddressBook.framework (9.0 - 1499) <8D5C9530-4D90-32C7-BB5E-3A686FE36BE9> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff8b632000 -
    0x7fff8b632fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x7fff8b661000 -
    0x7fff8b67cff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff8ba4a000 -
    0x7fff8bb84ff7  com.apple.ImageIO.framework (3.3.0 - 1038) <AB3C40DB-FCBE-3315-B7B2-4E16522E20CB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff8bb85000 -
    0x7fff8bba4fff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
    0x7fff8bba5000 -
    0x7fff8bbc3ff7  com.apple.addressbook.vCard (9.0 - 1499) <B1BC7C0A-A783-3574-8248-BC689F43A0A0> /System/Library/PrivateFrameworks/vCard.framework/Versions/A/vCard
    0x7fff8bbc4000 -
    0x7fff8be2eff7  com.apple.imageKit (2.6 - 838) <DDFE019E-DF3E-37DA-AEC0-9182454B7312> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x7fff8be87000 -
    0x7fff8be8dff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff8be8e000 -
    0x7fff8bea8ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x7fff8bea9000 -
    0x7fff8beb2fff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x7fff8beb3000 -
    0x7fff8bf0bff7  com.apple.accounts.AccountsDaemon (113 - 113) <E0074FA1-1872-3F20-8445-3E2FEA290CFB> /System/Library/PrivateFrameworks/AccountsDaemon.framework/Versions/A/AccountsD aemon
    0x7fff8bf0c000 -
    0x7fff8bf17ff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x7fff8bf4c000 -
    0x7fff8bfddfff  com.apple.SoftwareUpdate.framework (6 - 744) <4EBCE244-C676-3228-BF4B-645B143C1B97> /System/Library/PrivateFrameworks/SoftwareUpdate.framework/Versions/A/SoftwareU pdate
    0x7fff8c09d000 -
    0x7fff8c0b6fff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7fff8c0b7000 -
    0x7fff8c0bbfff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
    0x7fff8c0bc000 -
    0x7fff8c0c2fff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
    0x7fff8c119000 -
    0x7fff8c11bff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
    0x7fff8c15e000 -
    0x7fff8c1b8ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
    0x7fff8c1bc000 -
    0x7fff8c1befff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
    0x7fff8c1bf000 -
    0x7fff8c20dfff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
    0x7fff8c20e000 -
    0x7fff8c212fff  libspindump.dylib (182) <7BD8C0AC-1CDA-3864-AE03-470B50160148> /usr/lib/libspindump.dylib
    0x7fff8c213000 -
    0x7fff8c21efdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x7fff8c21f000 -
    0x7fff8c2a0ff3  com.apple.CoreUtils (1.0 - 101.1) <45E5E51B-947E-3F2D-BD9C-480E72555C23> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff8cbe7000 -
    0x7fff8cbeeff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib

Maybe you are looking for