Router Hacked

I recently installed Avast Internet security and I ran a scan for network threats. 
It says that "Your router has been hacked and its DNS settings have been modified to serve malicious contents" and Avast recommends "to change the DNS records on your router through its admin interface."
Does anyone know how or if I can change DNS settings on my broadband router? 

It could be that you have malware on your computer that has change the DNS setting on your computer and it is that which is being picked up by Avast and Chrome.
You should download and run the free version of Malwarebytes and see what it comes up with. See link for Malwarebytes.
https://www.malwarebytes.org/
Check the DNS setting on your computer by going to Start > Control Panel > Network & Sharing > Click on your connection  which will open another box > Go to Properties > click on Internet Protocol IPv4 > make sure it is set to obtain IP & DNS automatically or if you previously changed them make sure it is the ones you entered.

Similar Messages

  • Names of devices connected to router

    How can I tell the names of the devices that are connected to my E2000 router? Cisco connect says I have 4 devices connected but I only have 3. I am trying to figure out where the 4th device is coming from.
    Solved!
    Go to Solution.

    lindalinda wrote:
    Cisco says I have 40 and I only have 4, huge difference. maybe because when I first installed my linksys. I called company for help and got some guy calling himself shibo and he hacked my computer and will not leave my router nor my computer. I have tried for 8 months to get rid of him, but he hacked into my dos. and as long as I remain with cisco linksys  he is going to be on my router hacking my stuff. I think this company should not hire foreigners to maintain the business. I talked to cisco headquarters and they could not do anything, they just suggest that I ask for american based help only...so everyone. please beware!! 
    Hi! Where were you able to see the 40 devices connected to your network? Have you tried powering off your router and see if it shows the same number of devices connected to your network?

  • Howto: Zones in private subnets using ipfilter's NAT and Port forwarding

    This setup supports the following features:
    * Requires 1 Network interface total.
    * Supports 1 or more public ips.
    * Allows Zone to Zone private network traffic.
    * Allows internet access from the global zones.
    * Allows direct (via ipfilter) internet access to ports in non-global zones.
    (change networks to suit your needs, the number of public and private ip was lowered to simplify this doc)
    Network setup:
    iprb0 65.38.103.1/24
    defaultrouter 65.38.103.254
    iprb0:1 192.168.1.1/24 (in global zone)
    Create a zone on iprb0 with an ip of 192.168.1.2
    ### Example /etc/ipf/ipnat.conf
    # forward from a public port to a private zone port
    rdr iprb0 65.38.103.1/32 port 2222 -> 192.168.1.2 port 22
    # force outbound zone traffic thru a certain ip address
    # required for mail servers because of reverse lookup
    map iprb0 192.168.1.2/32 -> 65.38.103.1/32 proxy port ftp ftp/tcp
    map iprb0 192.168.1.2/32 -> 65.38.103.1/32 portmap tcp/udp auto
    map iprb0 192.168.1.2/32 -> 65.38.103.1
    # allow any 192.168.1.x zone to use the internet
    map iprb0 192.168.1.0/24 -> 0/32 proxy port ftp ftp/tcp
    map iprb0 192.168.1.0/24 -> 0/32 portmap tcp/udp auto
    map iprb0 192.168.1.0/24 -> 0/32For testing purposes you can leave /etc/ipf/ipf.conf empty.
    Be aware the you must "svcadm disable ipfilter; svcadm enable ipfilter" to reload rules and the rules stay loaded if they are just disabled(bug).
    Zones can't modify their routes and inherit the default routes of the global zone. Because of this we have to trick the non-global zones into using a router that doesn't exist.
    Create /etc/init.d/zone_route_hack
    Link this file to /etc/rc3.d/S99zone_route_hack.
    #/bin/sh
    # based on information found at
    # http://blogs.sun.com/roller/page/edp?entry=using_branded_zones_on_a
    # http://forum.sun.com/jive/thread.jspa?threadID=75669&messageID=275741
    fake_router=192.168.1.254
    public_net=65.38.103.0
    router=`netstat -rn | grep default | grep -v " $fake_router " | nawk '{print $2}'`
    # send some data to the real network router so we look up it's arp address
    ping -sn $router 1 1 >/dev/null
    # record the arp address of the real router
    router_arp=`arp $router | nawk '{print $4}'`
    # delete any existing arp address entry for our fake private subnet router
    arp -d $fake_router >/dev/null
    # assign the real routers arp address to our fake private subnet router
    arp -s $fake_router $router_arp
    # route our private subnet through our fake private subnet router
    route add default $fake_router
    # Can't create this route until the zone/interface are loaded
    # Adjust this based on your hardware and number of zones
    sleep 300
    # Duplicate this line for every non-global zone with a private ip that
    # will have ipfilter rdr (redirects) pointing to it
    route add -net $public_net 192.168.1.2 -ifaceNow we have both public and private ip addresses on our one iprb0 interface. If we'd really like our private zone network to really be private we don't want any non-NAT'ed 192.168.1.x traffic leaving the interface. Since ipfilter can't block traffic between zones because they use loopbacks we can just block the 192.168.1.x traffic and the zones can still talk.
    The following /etc/ipf/ipf.conf defaults to deny.
    # ipf.conf
    # IP Filter rules to be loaded during startup
    # See ipf(4) manpage for more information on
    # IP Filter rules syntax.
    # INCOMING DEFAULT DENY
    block in all
    block return-rst in proto tcp all
    # two open ports one of which is redirected in ipnat.conf
    pass in quick on iprb0 proto tcp from any to any port = 22 flags S keep state keep frags
    pass in quick on iprb0 proto tcp from any to any port = 2222 flags S keep state keep frags
    # INCOMING PING
    pass in quick on iprb0 proto icmp from any to 65.38.103.0/24 icmp-type 8 keep state
    # INCOMING GLOBAL ZONE UNIX TRACEROUTE FIX PART 1
    #pass in quick on iprb0 proto udp from any to 65.38.103.0/24 keep state
    # OUTGOING RULES
    block out all
    # ALL INTERNAL TRAFFIC STAYS INTERNAL (Zones use non-filtered loopback)
    # remove/edit as needed to actually talk to local private physical networks
    block out quick from any to 192.168.0.0/16
    block out quick from any to 172.16.0.0/12
    block out quick from any to 10.0.0.0/8
    block out quick from any to 0.0.0.0/8
    block out quick from any to 127.0.0.0/8
    block out quick from any to 169.254.0.0/16
    block out quick from any to 192.0.2.0/24
    block out quick from any to 204.152.64.0/23
    block out quick from any to 224.0.0.0/3
    # Allow traffic out the public interface on the public address
    pass out quick on iprb0 from 65.38.103.1/32 to any flags S keep state keep frags
    # OUTGOING PING
    pass out quick on iprb0 proto icmp from 65.38.103.1/32 to any icmp-type 8 keep state
    # Allow traffic out the public interface on the private address (needs nat and router arp hack)
    pass out quick on iprb0 from 192.168.1.0/24 to any flags S keep state keep frags
    # OUTGOING PING
    pass out quick on iprb0 proto icmp from 192.168.1.0/24 to any icmp-type 8 keep state
    # INCOMING TRACEROUTE FIX PART 2
    #pass out quick on iprb0 proto icmp from 65.38.103.1/32 to any icmp-type 3 keep stateIf you want incoming and outgoing internet in your zones it is easier if you just give them public ips and setup a firewall in the global zone. If you have limited public ip address(I'm setting up a colocation 1u server) then you might take this approach. One of the best things about doing thing this way is that any software configured in the non-global zones will never be configured to listen on an ip address that might change if you change public ips.

    Instead of using the script as a legacy_run script, set it up in SMF.
    First create the file /var/svc/manifest/system/ip-route-hack.xml with
    the following
    ---Start---
    <?xml version="1.0"?>
    <!DOCTYPE service_bundle SYSTEM
    "/usr/share/lib/xml/dtd/service_bundle.dtd.1">
    <!--
    ident "@(#)ip-route-hack.xml 1.0 09/21/06"
    -->
    <service_bundle type='manifest' name='NATtrans:ip-route-hack'>
    <service
    name='system/ip-route-hack'
    type='service'
    version='1'>
    <create_default_instance enabled='true' />
    <single_instance />
    <dependency
    name='physical'
    grouping='require_all'
    type='service'
    restart_on='none'>
    <service_fmri value='svc:/network/physical:default' />
    </dependency>
    <dependency
    name='loopback'
    grouping='require_all'
    type='service'
    restart_on='none'>
    <service_fmri value='svc:/network/loopback:default' />
    </dependency>
    <exec_method
    type='method'
    name='start'
    exec='/lib/svc/method/svc-ip-route-hack start'
    timeout_seconds='0' />
    <property_group name='startd' type='framework'>
    <propval name='duration' type='astring'
    value='transient' />
    </property_group>
    <stability value='Unstable' />
    <template>
    <common_name>
    <loctext xml:lang='C'>
    Hack to allow zone to NAT translate.
    </loctext>
    </common_name>
    <documentation>
    <manpage
    title='zones'
    section='1M'
    manpath='/usr/share/man' />
    </documentation>
    </template>
    </service>
    </service_bundle>
    ---End---
    then modify /var/svc/manfiest/system/zones.xml and add the following
    dependancy
    ---Start---
    <dependency
    name='inet-ip-route-hack'
    type='service'
    grouping='require_all'
    restart_on='none'>
    <service_fmri value='svc:/system/ip-route-hack' />
    </dependency>
    ---End---
    Finally create the file /lib/svc/method/svc-ip-route-hack with the
    contents of S99zone_route_hack, minus the sleep timer (perms 0755). Run
    'svccfg import /var/svc/manifest/system/ip-route-hack.xml' and 'svccfg
    import /var/svc/manifest/system/zones.xml'.
    This will guarantee that ip-route-hack is run before zones are started,
    but after the interfaces are brought on line. It is worth noting that
    zones.xml may get overwritten during a patch, so if it suddenly stops
    working, that could be why.

  • Flash player errors

    the player keeps showing errors, on most websites inc facebook,
    bmw, mercedes etc. Never had this problem before. It shows some actionscript error - like if it was in debug mode for some reason.... got the latest one 10.1 - using firefox 4 - same thing happens on firefox 3.6.6 & opera 10.6

    It's possibly a router hack.
    http://hackersnewsbulletin.com/2014/03/hackers-hacked-300000-wireless-routers-check-now.ht ml
    If the systems are in two different locations, that might explain it.

  • Flash player update

    i repeatedly get the message that flash player may need to be updated evan after i update i still get the message and it will not let me do a google search.  This happens on my windows 7 pc and android.f

    There is no Flash Player for Android, so you CAN'T update that.
    If you're using IE11 with Windows 7, you're probably seeing the result of...
    "User-Agent Strings"
    That doesn't mean a lot, I'm sure, but it's the root of your problems, and Flash Player has nothing to do with it.
    Microsoft "rewrote" the User-Agent Strings for the abomination they call their latest and greatest browser (Read more here).
    User-Agent Strings are what websites use to identify the browser you're using and provide the proper content for it's browser engine, like ActiveX stuff, and Flash or HTML5 video.
    Thanks to the geniuses in Redmond, WA, the User-Agent Strings for IE11 (which has a Trident engine), ID it as either "Gecko" (Firefox) or "Webkit" (Chrome).
    Trouble is: when the site the directs to the content for one of these two engines, the Trident engine in IE can't interpret it and the site then sees IE as an "unidentified" browser.
    The problem with an unidentified browser is that the plug-ins in that browser aren't recognized either, so even though you're up to date, it says you need the latest Flash Player when you use IE11.
    YouTube... has converted to HTML5 video so if it doesn't detect Flash Player, it can display HTML5 (MP4) video which requires no plug-in to play.
    Facebook can't do that, because HTML5 doesn't apply to games... only video.
    Microsoft has no plans to "fix" the mess they've created because they think it's a great idea to block you out of the websites you visit.
    They recommend using "Compatibility View" and pretending that you're using an older version of IE...
    The Problem with THAT is that it's seen limited success, and you have to enable it for EVERY page that has problems... individually.
    I'm not big on "pretending" so I recommend actually using another browser.
    Firefox (from Mozilla)
    Opera (from Opera)
    Safari (from Apple)
    Chrome (from Google)
    ANY of those will work where IE11 won't, with the Flash Player Plug-in (For all other browsers), and Chrome doesn't even need that, because it has its own Flash Player plugin built in.
    There is one other possibility, being as you're seeing this with multiple devices on multiple platforms..
    If you're seeing THIS:
    Specifically, "FlashPlayer Pro"... then you could be a victim of a router hack.
    Hackers have hacked 300000+ wireless routers, Check yours NOW!

  • Possible Malware or Virus on IMac?

    Today one of my family members visited the site Neopets, as she does almost everyday. What is strange is that every link she clicks on the site, be it for playing a game, checking contact information at the bottom of the site, starting a game etc,would cause a pop up to appear saying that we do not have the updated player. By pressing ok, it redirects us to a site called updateplayer.us. It is almost identical to the adobe/flash site which makes me believe that its some type of phishing scam. Furthermore, it will again redirect us to other sites, all similar but with different names (i.e. bamplay.net, and fatplay.net). These sites were identical to one another (bamplay and fatplay). So my question is, do we have a virus or malware on or mac? We have the lion OS. Everything is up to date, (flash player is 13.0.0.214) and our system updates are all up to date. We only download updates through system preferences/ software update. Other than pictures that we have recieved from friends and family, and the occasional pdf we download for school/taxes, the only downloading/installing we have done is from the system/flash updates. We don't visit any malicious websites and are fairly cautious internet users. This just started happening today for the first time ever, and it only appears to be happening on Neopets. Do we have a virus or malicious software installed? Everything else seems to be running fine. Safari still seems to be fast. Or is this something on Neopets end? I'm not very skilled with computers so any help would be appreciated!
    Thanks!
    P.S.
    Has anyone else who visits the site been experiencing this?

    If Neopets requires Adobe Flash Player, always navigate on your own to Adobe's website and download the installer from them, and never from within someone else's website including this one. Fortunately, thousands of Apple Support Communities participants are here to rapidly respond to anyone's malicious intent.
    Adobe's website is as follows, which you will be able to see for yourself exactly as it appears, in your browser's URL field:
    https://get.adobe.com/flashplayer/
    Ignore unexpected popups or solicitations to update Flash Player; they can direct you to fraudulent sites that will attempt to convince you to install malicious software, or to reveal personal information such as your Apple ID credentials.
    Or is this something on Neopets end?
    That is another possibility, as are other potential causes, but the malicious router hacking I described is a serious concern and must be ruled out at your earliest opportunity.

  • Medchemexpress is an app? or virus????

    Hi everyone!!!!There's something strange on my Mac...Every page I'm going to visit on internet has this site as advertising...www.medchemexpress.com...I'm not a doctor or medicine interested....but it's not possible..in every single page I'm visiting...I found this adv...
    Is it possible It s a malware, trojan or a virus???I launched Viruss barrier, and I antvirus...they didn't find anything
    any suggestion??
    thank you all

    So, if I'm understanding you correctly, it doesn't matter where you go - google.com, apple.com, facebook.com, wherever - instead, you get redirected to that site? If so, that is most likely to be a network compromise, probably a wireless router hack. See How to manage a hacked wireless router.
    There's a chance that you have adware installed, but this is not documented behavior for any of the adware programs I'm aware of.
    (Fair disclosure: The Safe Mac is my site, and contains a Donate button, so I may receive compensation for providing links to The Safe Mac. Donations are not required.)

  • Is Time Capsule as safe as we think?

    Had used Time Capsule as a router, but never actually used it to back up. Has anyone ever had their router hacked? If so, conceivably could one hack into Time Capsule? If so, could they then hack into your hard drive? And if so, what info would they need to remotely connect to your computer.
    Do not laugh, this has happened to me. Trying to figure out how to safeguard my computer from these jerks. I work in a very sensitive job from my home and cannot have any outsiders hacking into my computer.

    Carol Wells wrote:
    Beware of the Apple false sense of security.
    Beware of installing software on your Mac (or giving your administrative password for something that claims to need to be installed) unless you understand what you're installing and are completely convinced that it's safe.
    If your job is that sensitive, you may also consider creating a "standard" (non-administrative) account on your Mac and moving all your routine work to that. That would reduce the chances that something like a key logger could be installed.

  • Windows  process showing up on pc free LAN - hacked? router? printer?

    In our firewall log we can see a samba connection being made from an ip on our LAN - we have no windows pcs or vritualisation software running. Our firewall is set to allow AFP + printer sharing. There is a wireless network so could someone have hacked it?
    Feb 2 09:04:43 Mac-Pro Firewall[47]: Allow smbd connecting from 192.168.0.4:49161 uid = 0 proto=6
    What could this be? I thought it could be a printer? Is there any way of identifying a printers IP? A few weeks ago our firewall was set to block all connections and we were getting this print related message
    Jan 29 12:04:44 Mac-Pro Firewall[47]: Deny cupsd data in from 192.168.0.3:631 uid = 0 proto=17
    We no longer get that, but we now get the smb one. The IPs are different though, but i've heard they can change. Many thanks

    You may have turned on file sharing on a machine at 192.168.0.4. It's definitely a message coming from a machine on your local net, though.
    The cupsd is printer sharing, on a machine at 192.168.0.3. It even has the proper port number, 631, unlike the smbd message, which appears to have a UDP port.

  • How do I know if my router is broken or has been hacked?

    I have a WRT54G and it stopped working. It's wifi gives off a single but no one can connect to it, and neither can I. The only way I can get online is by directly hooking my computer into my modem. I've reset the factory defaults and made my domain name my isp (satx.rr.com) Are there any other settings I need to fill in so I can get online? Thanks.

    1)connect the modem to the router's internet port and the computer to the port#1
    2)from the wired computer ,access the router using http://192.168.1.1 .. the default login password is admin
    3)on the web ui , click on the "mac add clone" subtab , enable it and click clone..save the settings and do a power cycle
    4)go to the "status" tab and check whether it has a valid internet ip add
    5)if there is one , try going online ..

  • Error Message: iDVD doesn't work because someone hacked onto your HTM CSS Programmed Intel Device and changed up the format of your DL router.  Therefore, the application IDVD was destroyed in the process

    Does anybody know what this is about?  I've tried looking it up on google, but with no success.  Thanks.

    Try reinstalling iDVD from your system DVD.  http://support.apple.com/kb/HT3415

  • My roommates's boyfriend is hacking my mac

    Can Anyone translate these logs to lamens terms as to what is going on?   My computer's name is Chris or wetherjc.   however, kevos-ipad is another persons Ipad whcih is not authorized to connect.
    Nov 19 22:33:44 kevos-ipad configd[18]: setting hostname to "kevos-ipad"
    Nov 19 22:33:46 kevos-ipad awacsd[59]: InnerStore GetWakeInfoForZone: no external port for 196666541.members.btmm.icloud.com.
    Nov 19 22:33:47 kevos-ipad CalendarAgent[190]: AOSKit ERROR: XPC CLIENT: Connection [0x7fdabeb5b2c0] event handler received event with type: [XPC_TYPE_ERROR].  Description: [Connection interrupted]
    Nov 19 22:33:48 kevos-ipad digest-service[4059]: label: default
    Nov 19 22:33:48 kevos-ipad digest-service[4059]:           dbname: od:/Local/Default
    Nov 19 22:33:48 kevos-ipad digest-service[4059]:           mkey_file: /var/db/krb5kdc/m-key
    Nov 19 22:33:48 kevos-ipad digest-service[4059]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Nov 19 22:33:48 kevos-ipad digest-service[4059]: digest-request: uid=0
    Nov 19 22:33:48 kevos-ipad rpcsvchost[4060]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    Nov 19 22:33:48 kevos-ipad digest-service[4059]: digest-request: init request
    Nov 19 22:33:48 kevos-ipad digest-service[4059]: digest-request: init return domain: CHRIS server: KEVOS-IPAD
    Nov 19 22:34:07 kevos-ipad imagent[180]: [Warning] Fatal error 5 parsing Jabber XML stream: Extra content at the end of the document
    Nov 19 22:34:07 kevos-ipad imagent[180]: [Warning] XMPPNodeStream: XML parse error 5 at EOF
    Nov 19 22:34:07 kevos-ipad imagent[180]: [Warning] XMPPConnection: Error: Error Domain=LibXML2ErrorDomain Code=5 "The operation couldn’t be completed. (LibXML2ErrorDomain error 5.)"
    Nov 19 22:36:16 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 22:42:05 kevos-ipad Dock[161]: LSOpenFromURLSpec(file://localhost/Users/wetherjc/Downloads/VNC-Viewer-5.0.3-Ma cOSX.dmg.download) failed with -43
    Nov 19 22:42:14 kevos-ipad DiskImages UI Agent[4087]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    Nov 19 22:42:19 kevos-ipad CoreServicesUIAgent[4082]: Error: qtn_file_apply_to_path error: Read-only file system
    Nov 19 22:42:31 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 22:42:31 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.realvnc.vncview er.playlist failed: 13 Permission denied
    Nov 19 22:55:19 kevos-ipad WindowServer[103]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    Nov 19 22:55:19 kevos-ipad loginwindow[45]: find_shared_window: WID -1
    Nov 19 22:55:19 kevos-ipad loginwindow[45]: CGSGetWindowTags: Invalid window 0xffffffff
    Nov 19 22:55:19 kevos-ipad loginwindow[45]: find_shared_window: WID -1
    Nov 19 22:55:19 kevos-ipad loginwindow[45]: CGSSetWindowTags: Invalid window 0xffffffff
    Nov 19 22:55:19 kevos-ipad WindowServer[103]: Created shield window 0x77a for display 0x042728c0
    Nov 19 22:55:19 kevos-ipad WindowServer[103]: device_generate_desktop_screenshot: authw 0x7fbbdc50e100(2000), shield 0x7fbbe2131b80(2001)
    Nov 19 22:55:19 kevos-ipad WindowServer[103]: device_generate_lock_screen_screenshot: authw 0x7fbbdc50e100(2000), shield 0x7fbbe2131b80(2001)
    Nov 19 22:55:19 kevos-ipad com.apple.launchd.peruser.501[143] (com.apple.SystemUIServer.agent[162]): The following job tried to hijack the service "com.apple.tsm.uiserver" from this job: 0x7fa9a2005b70.anonymous.loginwindow
    Nov 19 22:55:19 kevos-ipad CVMServer[122]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.apple.Messages.FontColor] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.id] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.category] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom1] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom2] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom3] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom4] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.yahoo.addressbook.customURL] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.apple.Messages.FontSize] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.apple.Messages.FontFamily] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:56:23 kevos-ipad AddressBookSourceSync[4127]: -[ABPerson valueForProperty:com.apple.Messages.BalloonColor] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 19 22:57:29 kevos-ipad WindowServer[103]: handle_will_sleep_auth_and_shield_windows: releasing authw 0x7fbbdc50e100(2000), shield 0x7fbbe2131b80(2001), lock state 3
    Nov 19 22:57:29 kevos-ipad WindowServer[103]: handle_will_sleep_auth_and_shield_windows: err 0x0
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got user: wetherjc
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got ruser: wetherjc
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got service: screensaver
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in od_principal_for_user(): No authentication authority returned
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in od_principal_for_user(): failed: 7
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Done cleanup3
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Nov 19 22:57:32 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): OpenDirectory - The authtok is incorrect.
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got user: wetherjc
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got ruser: wetherjc
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got service: screensaver
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in od_principal_for_user(): No authentication authority returned
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in od_principal_for_user(): failed: 7
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Done cleanup3
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in od_record_check_pwpolicy(): retval: 0
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Establishing credentials
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Got user: wetherjc
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Context initialised
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Got euid, egid: 501 20
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done getpwnam()
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done setegid() & seteuid()
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): pam_sm_setcred: krb5 user wetherjc doesn't have a principal
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done cleanup3
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done seteuid() & setegid()
    Nov 19 22:57:35 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done cleanup4
    Nov 19 23:02:48 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:03:40 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:04:55 kevos-ipad System Preferences[4150]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 19 23:04:55 kevos-ipad System Preferences[4150]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 19 23:05:00 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:05:00 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.apple.systempre ferences.playlist failed: 13 Permission denied
    Nov 19 23:05:36 kevos-ipad System Preferences[4150]: Could not find image named 'InvalidDataIcon'.
    Nov 19 23:06:22 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:06:54 kevos-ipad Skype[4157]: Address book access is denied for executable at path: /Applications/Skype.app/Contents/MacOS/Skype
    Nov 19 23:06:54 kevos-ipad Skype[4157]: Application is not entitled to access AddressBook contacts
    Nov 19 23:06:59 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:06:59 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.skype.skype.pla ylist failed: 13 Permission denied
    Nov 19 23:06:59 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:06:59 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.ooVoo.playlist failed: 13 Permission denied
    Nov 19 23:07:04 kevos-ipad com.apple.launchd[1] (com.apple.qtkitserver[3595]): Exited: Killed: 9
    Nov 19 23:07:04 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 3595 [com.apple.qtkits]
    Nov 19 23:07:05 kevos-ipad JavaApplicationStub[4159]: Audio device detected [name = Built-in Microphone, uniq ID = AppleHDAEngineInput:1B,0,1,0:1, core devise ID = 58]
    Nov 19 23:07:05 kevos-ipad JavaApplicationStub[4159]: Audio device detected [name = Built-in Input, uniq ID = AppleHDAEngineInput:1B,0,1,1:2, core devise ID = 48]
    Nov 19 23:07:05 kevos-ipad JavaApplicationStub[4159]: Audio device detected [name = Built-in Output, uniq ID = AppleHDAEngineOutput:1B,0,1,2:0, core devise ID = 40]
    Nov 19 23:07:07 kevos-ipad com.apple.launchd[1] (com.apple.audio.ComponentHelper[3594]): Exited: Killed: 9
    Nov 19 23:07:07 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 3594 [com.apple.audio.]
    Nov 19 23:07:09 kevos-ipad com.apple.launchd[1] (com.apple.audio.SandboxHelper[3593]): Exited: Killed: 9
    Nov 19 23:07:09 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 3593 [com.apple.audio.]
    Nov 19 23:07:17 kevos-ipad com.apple.launchd[1] (com.apple.iCloudHelper[4129]): Exited: Killed: 9
    Nov 19 23:07:17 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 4129 [com.apple.iCloud]
    Nov 19 23:07:18 kevos-ipad com.apple.launchd.peruser.501[143] (com.apple.lookupd[2714]): Exited: Killed: 9
    Nov 19 23:07:18 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 2714 [com.apple.lookup]
    Nov 19 23:07:18 kevos-ipad com.apple.launchd.peruser.501[143] (com.apple.rcd[2291]): Exited: Killed: 9
    Nov 19 23:07:18 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 2291 [rcd]
    Nov 19 23:07:18 kevos-ipad com.apple.launchd.peruser.501[143] (com.apple.printtool.agent[1896]): Exited: Killed: 9
    Nov 19 23:07:18 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 1896 [printtool]
    Nov 19 23:07:19 kevos-ipad com.apple.launchd[1] (com.apple.NotesMigratorService[442]): Exited: Killed: 9
    Nov 19 23:07:19 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 442 [com.apple.NotesM]
    Nov 19 23:07:19 kevos-ipad com.apple.launchd[1] (com.apple.audio.SandboxHelper[314]): Exited: Killed: 9
    Nov 19 23:07:19 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 314 [com.apple.audio.]
    Nov 19 23:07:30 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:07:40 kevos-ipad JavaApplicationStub[4159]: Audio device detected [name = Built-in Microphone, uniq ID = AppleHDAEngineInput:1B,0,1,0:1, core devise ID = 58]
    Nov 19 23:07:40 kevos-ipad JavaApplicationStub[4159]: Audio device detected [name = Built-in Input, uniq ID = AppleHDAEngineInput:1B,0,1,1:2, core devise ID = 48]
    Nov 19 23:07:40 kevos-ipad JavaApplicationStub[4159]: Audio device detected [name = Built-in Output, uniq ID = AppleHDAEngineOutput:1B,0,1,2:0, core devise ID = 40]
    Nov 19 23:08:25 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:08:37 kevos-ipad kernel[0]: USBMSC Identifier (non-unique): 015D62C31601101E 0x22b8 0x4287 0x216
    Nov 19 23:08:56 kevos-ipad XBMC[4168]: CPSGetCurrentProcess(): This call is deprecated and should not be called anymore.
    Nov 19 23:08:56 kevos-ipad XBMC[4168]: CPSSetForegroundOperationState(): This call is deprecated and should not be called anymore.
    Nov 19 23:09:03 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:09:03 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.teamxbmc.xbmc.p laylist failed: 13 Permission denied
    Nov 19 23:09:09 kevos-ipad XBMCHelper[4174]: XBMCHelper 0.7 starting up...
    Nov 19 23:09:10 kevos-ipad WindowServer[103]: CGXMuxCapture: Starting
    Nov 19 23:09:10 kevos-ipad WindowServer[103]: CGXMuxCapture: Acquired
    Nov 19 23:09:10 kevos-ipad WindowServer[103]: Display 0x42728c0 captured by conn 0x1bebb
    Nov 19 23:09:10 kevos-ipad WindowServer[103]: CGXMuxCapture: Released
    Nov 19 23:09:10 kevos-ipad WindowServer[103]: Display 0x42728c0 released by conn 0x1bebb
    Nov 19 23:10:23 kevos-ipad kernel[0]: (default pager): [KERNEL]: ps_select_segment - send HI_WAT_ALERT
    Nov 19 23:10:23 kevos-ipad kernel[0]: macx_swapon SUCCESS
    Nov 19 23:10:56 kevos-ipad WindowServer[103]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x10dd1c320  isBackBuffered: 1 numComp: 3 numDisp: 3
    Nov 19 23:10:57 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 19 23:11:15 kevos-ipad WindowServer[103]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    Nov 19 23:11:15 kevos-ipad loginwindow[45]: find_shared_window: WID -1
    Nov 19 23:11:15 kevos-ipad loginwindow[45]: CGSGetWindowTags: Invalid window 0xffffffff
    Nov 19 23:11:15 kevos-ipad loginwindow[45]: find_shared_window: WID -1
    Nov 19 23:11:15 kevos-ipad loginwindow[45]: CGSSetWindowTags: Invalid window 0xffffffff
    Nov 19 23:11:16 kevos-ipad WindowServer[103]: Created shield window 0x805 for display 0x042728c0
    Nov 19 23:11:16 kevos-ipad WindowServer[103]: device_generate_desktop_screenshot: authw 0x7fbbe216c500(2000), shield 0x7fbbd915d6f0(2001)
    Nov 19 23:11:16 kevos-ipad WindowServer[103]: device_generate_lock_screen_screenshot: authw 0x7fbbe216c500(2000), shield 0x7fbbd915d6f0(2001)
    Nov 19 23:11:16 kevos-ipad kernel[0]: hibernate image path: /var/vm/sleepimage
    Nov 19 23:11:16 kevos-ipad kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Nov 19 23:11:16 kevos-ipad kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    Nov 19 23:11:16 kevos-ipad kernel[0]: kern_open_file_for_direct_io(0) took 112 ms
    Nov 19 23:11:16 kevos-ipad kernel[0]: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    Nov 19 23:11:16 kevos-ipad kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 5
    Nov 19 23:11:16 kevos-ipad kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Nov 19 23:11:16 kevos-ipad kernel[0]: hibernate_setup(0) took 0 ms
    Nov 19 23:11:27 kevos-ipad kernel[0]: hibernate_page_list_setall start 0xffffff8077a7f000, 0xffffff8077a9f000
    Nov 19 23:11:27 kevos-ipad kernel[0]: hibernate_page_list_setall time: 211 ms
    Nov 19 23:11:27 kevos-ipad kernel[0]: pages 786308, wire 205517, act 139837, inact 3, cleaned 0 spec 2, zf 79998, throt 0, could discard act 149889 inact 143569 purgeable 2137 spec 55806 cleaned 9550
    Nov 19 23:11:27 kevos-ipad kernel[0]: hibernate_page_list_setall found pageCount 425357
    Nov 19 23:11:27 kevos-ipad kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Nov 19 23:11:27 kevos-ipad kernel[0]: IOHibernatePollerOpen(0)
    Nov 19 23:11:27 kevos-ipad kernel[0]: encryptStart 13230
    Nov 19 23:11:27 kevos-ipad kernel[0]: writing 422825 pages
    Nov 19 23:11:27 kevos-ipad kernel[0]: encryptEnd b4b5400
    Nov 19 23:11:27 kevos-ipad kernel[0]: image1Size 0xf695800, encryptStart1 0x13230, End1 0xb4b5400
    Nov 19 23:11:27 kevos-ipad kernel[0]: encryptStart f695800
    Nov 19 23:11:27 kevos-ipad kernel[0]: encryptEnd 2409a200
    Nov 19 23:11:27 kevos-ipad kernel[0]: PMStats: Hibernate write took 7132 ms
    Nov 19 23:11:27 kevos-ipad kernel[0]: all time: 7132 ms, comp bytes: 1732304896 time: 1693 ms 975 Mb/s, crypt bytes: 535456720 time: 1056 ms 483 Mb/s,
    Nov 19 23:11:27 kevos-ipad kernel[0]: image 604611072, uncompressed 1732304896 (422926), compressed 591926960 (34%), sum1 c76a93b9, sum2 a54463dc
    Nov 19 23:11:27 kevos-ipad kernel[0]: wired_pages_encrypted 155632, wired_pages_clear 47454, dirty_pages_encrypted 219840
    Nov 19 23:11:27 kevos-ipad kernel[0]: hibernate_write_image done(0)
    Nov 19 23:11:27 kevos-ipad kernel[0]: sleep
    Nov 19 23:19:50 kevos-ipad kernel[0]: Wake reason: EHC2
    Nov 19 23:19:50 kevos-ipad kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Nov 19 23:19:50 kevos-ipad kernel[0]: Previous Sleep Cause: 5
    Nov 19 23:19:50 kevos-ipad kernel[0]: The USB device HubDevice (Port 1 of Hub at 0xfa000000) may have caused a wake by issuing a remote wakeup (2)
    Nov 19 23:19:50 kevos-ipad kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    Nov 19 23:19:50 kevos-ipad kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Nov 19 23:19:50 kevos-ipad kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Nov 19 23:19:50 kevos-ipad kernel[0]: en1: 802.11d country code set to 'X0'.
    Nov 19 23:19:50 kevos-ipad kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    Nov 19 23:19:50 kevos-ipad kernel[0]: TBT W (1): 0 [x]
    Nov 19 23:19:50 kevos-ipad kernel[0]: The USB device MB810 (Port 3 of Hub at 0xfa100000) may have caused a wake by being disconnected
    Nov 19 23:19:50 kevos-ipad kernel[0]: [0xffffff8019f08600](0)/(5) Device not responding
    Nov 19 23:19:58 kevos-ipad kernel[0]: Graphics suppressed 8505 ms
    Nov 19 23:11:27 kevos-ipad ypbind[3918]: direct: sendto: Network is down
    Nov 19 23:19:58 kevos-ipad ypbind[3918]: Can't contact any servers listed in /var/yp/binding/gateway.2wire.net.ypservers.  Aborting
    Nov 19 23:19:59 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind[3918]): Exited with code: 1
    Nov 19 23:20:00 kevos-ipad configd[18]: network changed: v4(en1-:192.168.1.72) DNS- Proxy- SMB
    Nov 19 23:20:02 kevos-ipad configd[18]: setting hostname to "kevos-ipad"
    Nov 19 23:20:03 kevos-ipad airportd[4179]: _doAutoJoin: Already associated to “2WIRE243”. Bailing on auto-join.
    Nov 19 23:20:07 kevos-ipad kernel[0]: hibernate image path: /var/vm/sleepimage
    Nov 19 23:20:07 kevos-ipad kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Nov 19 23:20:07 kevos-ipad kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    Nov 19 23:20:07 kevos-ipad kernel[0]: kern_open_file_for_direct_io(0) took 228 ms
    Nov 19 23:20:07 kevos-ipad kernel[0]: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    Nov 19 23:20:07 kevos-ipad kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 5
    Nov 19 23:20:07 kevos-ipad kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Nov 19 23:20:07 kevos-ipad kernel[0]: hibernate_setup(0) took 0 ms
    Nov 19 23:20:11 kevos-ipad kernel[0]: en1: BSSID changed to 3c:ea:4f:82:72:d9
    Nov 19 23:20:11 kevos-ipad kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    Nov 19 23:20:11 kevos-ipad kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Nov 19 23:20:11 kevos-ipad kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Nov 19 23:20:11 kevos-ipad kernel[0]: hibernate_page_list_setall start 0xffffff8077a7f000, 0xffffff8077a9f000
    Nov 19 23:20:19 kevos-ipad kernel[0]: hibernate_page_list_setall time: 185 ms
    Nov 19 23:20:19 kevos-ipad kernel[0]: pages 787743, wire 205817, act 140267, inact 2, cleaned 0 spec 2, zf 77218, throt 0, could discard act 149907 inact 143560 purgeable 4837 spec 55835 cleaned 10298
    Nov 19 23:20:19 kevos-ipad kernel[0]: hibernate_page_list_setall found pageCount 423306
    Nov 19 23:20:19 kevos-ipad kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Nov 19 23:20:19 kevos-ipad kernel[0]: IOHibernatePollerOpen(0)
    Nov 19 23:20:19 kevos-ipad kernel[0]: encryptStart 13230
    Nov 19 23:20:19 kevos-ipad kernel[0]: writing 420774 pages
    Nov 19 23:20:19 kevos-ipad kernel[0]: encryptEnd b561c00
    Nov 19 23:20:19 kevos-ipad kernel[0]: image1Size 0xf74c200, encryptStart1 0x13230, End1 0xb561c00
    Nov 19 23:20:19 kevos-ipad kernel[0]: encryptStart f74c200
    Nov 19 23:20:19 kevos-ipad kernel[0]: encryptEnd 23ffd800
    Nov 19 23:20:19 kevos-ipad kernel[0]: PMStats: Hibernate write took 6948 ms
    Nov 19 23:20:19 kevos-ipad kernel[0]: all time: 6948 ms, comp bytes: 1723904000 time: 1690 ms 972 Mb/s, crypt bytes: 534773712 time: 1054 ms 483 Mb/s,
    Nov 19 23:20:19 kevos-ipad kernel[0]: image 603969536, uncompressed 1723904000 (420875), compressed 591300000 (34%), sum1 5f68cb08, sum2 ff75a51e
    Nov 19 23:20:19 kevos-ipad kernel[0]: wired_pages_encrypted 155938, wired_pages_clear 47448, dirty_pages_encrypted 217489
    Nov 19 23:20:19 kevos-ipad kernel[0]: hibernate_write_image done(0)
    Nov 19 23:20:19 kevos-ipad kernel[0]: sleep
    Nov 19 23:20:19 kevos-ipad ypbind[4180]: direct: sendto: Network is down
    Nov 19 23:20:19 kevos-ipad ypbind[4180]: Can't contact any servers listed in /var/yp/binding/gateway.2wire.net.ypservers.  Aborting
    Nov 19 23:20:19 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind[4180]): Exited with code: 1
    Nov 20 01:44:31 kevos-ipad loginwindow[45]: ERROR | -[LWScreenLock(Private) screenIsLockedTimeExpired:] | No lock state found, use built in check
    Nov 20 01:44:31 kevos-ipad WindowServer[103]: handle_will_sleep_auth_and_shield_windows: no lock state data
    Nov 20 01:44:31 kevos-ipad kernel[0]: Wake reason: EC.LidOpen (User)
    Nov 20 01:44:31 kevos-ipad kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    Nov 20 01:44:31 kevos-ipad kernel[0]: Previous Sleep Cause: 5
    Nov 20 01:44:31 kevos-ipad kernel[0]: TBT W (1): 0 [x]
    Nov 20 01:44:32 kevos-ipad mDNSResponder[42]: ConfigResolvers: interface specific index 5 not found
    Nov 20 01:44:33 kevos-ipad ypbind[4184]: direct: sendto: No route to host
    Nov 20 01:44:33 kevos-ipad ypbind[4184]: Can't contact any servers listed in /var/yp/binding/gateway.2wire.net.ypservers.  Aborting
    Nov 20 01:44:33 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind[4184]): Exited with code: 1
    Nov 20 01:44:33 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind): Throttling respawn: Will start in 7 seconds
    Nov 20 01:44:33 kevos-ipad configd[18]: network changed: v4(en1-:192.168.1.72) DNS- Proxy- SMB
    Nov 20 01:44:40 Chris.local digest-service[4191]: digest-request: init return domain: KEVOS-IPAD server: CHRIS
    Nov 20 03:18:50 kevos-ipad configd[18]: setting hostname to "kevos-ipad"
    Nov 20 03:18:51 kevos-ipad awacsd[59]: InnerStore GetWakeInfoForZone: zero address for 196666541.members.btmm.icloud.com.
    Nov 20 03:18:52 kevos-ipad airportd[4523]: _doAutoJoin: Already associated to “2WIRE243”. Bailing on auto-join.
    Nov 20 03:18:53 kevos-ipad awacsd[59]: InnerStore GetWakeInfoForZone: zero address for 196666541.members.btmm.icloud.com.
    Nov 20 03:18:55 kevos-ipad digest-service[4582]: label: default
    Nov 20 03:18:55 kevos-ipad digest-service[4582]:           dbname: od:/Local/Default
    Nov 20 03:18:55 kevos-ipad digest-service[4582]:           mkey_file: /var/db/krb5kdc/m-key
    Nov 20 03:18:55 kevos-ipad digest-service[4582]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Nov 20 03:18:55 kevos-ipad digest-service[4582]: digest-request: uid=0
    Nov 20 03:18:55 kevos-ipad rpcsvchost[4583]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    Nov 20 03:18:55 kevos-ipad digest-service[4582]: digest-request: init request
    Nov 20 03:18:55 kevos-ipad digest-service[4582]: digest-request: init return domain: CHRIS server: KEVOS-IPAD
    Nov 20 03:19:13 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 03:19:13 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.apple.Safari.pl aylist failed: 13 Permission denied
    Nov 20 03:19:27 kevos-ipad WebProcess[4605]: objc[4605]: Object 0x7fd6d241c850 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    Nov 20 03:20:19 kevos-ipad Mail[4609]: Using V2 Layout
    Nov 20 03:20:20 kevos-ipad librariand[4611]: MMe quota status changed: under quota
    Nov 20 03:20:20 kevos-ipad com.apple.SecurityServer[15]: Session 100033 created
    Nov 20 03:20:23 kevos-ipad IP Scanner Home[4614]: NSWindow does not support utility styleMask 0x10
    Nov 20 03:20:24 kevos-ipad IP Scanner Home[4614]: auth: C8:2A:14:12:3F:58
    Nov 20 03:20:24 kevos-ipad IP Scanner Home[4614]: receipt exists
    Nov 20 03:20:25 kevos-ipad IP Scanner Home[4614]: use live receipt
    Nov 20 03:20:25 kevos-ipad IP Scanner Home[4614]: ..all systems go..
    Nov 20 03:20:25 kevos-ipad IP Scanner Home[4614]: home version
    Nov 20 03:20:25 kevos-ipad IP Scanner Home[4614]: OS Version: Version 10.8.2 (Build 12C60)
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: final archiveURL: http://updates.10base-t.com/new_devices/add3.0.php?custom=D8D1CB%7CiPhone%0A
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: final archiveURL: http://updates.10base-t.com/new_devices/add3.0.php?custom=Hon%20Hai%20Precision% 20Ind.%20Co.,Ltd.%7CWindows%0A
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: final archiveURL: http://updates.10base-t.com/new_devices/add3.0.php?custom=AboCom%7CAppleTV%0A
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: final archiveURL: http://updates.10base-t.com/new_devices/add3.0.php?custom=Motorola%20Mobility,%2 0Inc.%7CWireless%0A
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: archiving custom devices:
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: <NSSplitView: 0x247bd00>: the delegate <PrioritySplitViewDelegate: 0x22a2ea0> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: Split view bounds: {{0, 0}, {1442, 768}}
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]:     Subview frame: {{0, 0}, {2280, 768}}
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]:     Subview frame: {{2281, 0}, {320, 768}}
    Nov 20 03:20:26 kevos-ipad IP Scanner Home[4614]: The outer edges of the subview frames are supposed to line up with the split view's bounds' edges. NSSplitView is working around the problem, perhaps at the cost of more redrawing. (This message is only logged once per NSSplitView.)
    Nov 20 03:20:27 kevos-ipad IP Scanner Home[4614]: getVersionConfirmation URL: http://10base-t.com/supportfiles/scanner/IPScannerMacLiteBadgeConfirmation_3.04. txt
    Nov 20 03:20:27 kevos-ipad IP Scanner Home[4614]: getVersionConfirmation: 0
    Nov 20 03:20:29 kevos-ipad IP Scanner Home[4614]: numLaunches: 2
    Nov 20 03:20:29 kevos-ipad IP Scanner Home[4614]: Initializing iCloud access...
    Nov 20 03:20:29 kevos-ipad IP Scanner Home[4614]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 20 03:20:29 kevos-ipad IP Scanner Home[4614]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 20 03:20:29 kevos-ipad IP Scanner Home[4614]: IPScanner...go!
    Nov 20 03:20:35 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 03:20:35 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.apple.mail.play list failed: 13 Permission denied
    Nov 20 03:20:35 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 03:20:35 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.10baseT.IPScann erHomeMac.playlist failed: 13 Permission denied
    Nov 20 03:28:09 kevos-ipad SubmitDiagInfo[4731]: Failed to write network signature cache at path /Library/Caches/com.apple.DiagnosticReporting.Networks.plist
    Nov 20 03:28:13 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: SampleWeight value: 1 for url: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-052240 _Chriss-Mac.crash, error: 13 Permission denied
    Nov 20 03:28:13 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: SampleWeight value: 1 for url: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-162641 _Chriss-Mac.crash, error: 13 Permission denied
    Nov 20 03:28:13 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: SampleWeight value: 1 for url: file://localhost/Library/Logs/DiagnosticReports/syspolicyd_2012-11-18-064010_Ch riss-Mac.crash, error: 13 Permission denied
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.apple.Messages.FontColor] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.id] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.category] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom1] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom2] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom3] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.custom4] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.yahoo.addressbook.customURL] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.apple.Messages.FontSize] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.apple.Messages.FontFamily] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:28:21 kevos-ipad AddressBookSourceSync[4732]: -[ABPerson valueForProperty:com.apple.Messages.BalloonColor] - unknown property. This warning will be displayed only once per unknown property, per session.
    Nov 20 03:29:22 kevos-ipad SubmitDiagInfo[4731]: Rewrite: File open failed /Library/Logs/DiagnosticReports/.PluginProcess_2012-11-18-052240_Chriss-Mac.cra sh.plist - uid: 501 gid: 20, euid: 501 egid: 20 - error 0: Undefined error: 0
    Nov 20 03:29:22 kevos-ipad SubmitDiagInfo[4731]: Rewrite: File open failed /Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-052240_Chriss-Mac.cras h - uid: 501 gid: 20, euid: 501 egid: 20 - error 3: No such process
    Nov 20 03:29:22 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: SubmissionTimeStamp value: 2012-11-20-032922 for url: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-052240 _Chriss-Mac.crash, error: 13 Permission denied
    Nov 20 03:29:22 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: InternalProblemUUID value:  for url: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-052240 _Chriss-Mac.crash, error: 13 Permission denied
    Nov 20 03:29:22 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-052240 _Chriss-Mac.crash
    Nov 20 03:29:23 kevos-ipad SubmitDiagInfo[4731]: Rewrite: File open failed /Library/Logs/DiagnosticReports/.syspolicyd_2012-11-18-064010_Chriss-Mac.crash. plist - uid: 501 gid: 20, euid: 501 egid: 20 - error 0: Undefined error: 0
    Nov 20 03:29:23 kevos-ipad SubmitDiagInfo[4731]: Rewrite: File open failed /Library/Logs/DiagnosticReports/syspolicyd_2012-11-18-064010_Chriss-Mac.crash - uid: 501 gid: 20, euid: 501 egid: 20 - error 3: No such process
    Nov 20 03:29:23 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: SubmissionTimeStamp value: 2012-11-20-032923 for url: file://localhost/Library/Logs/DiagnosticReports/syspolicyd_2012-11-18-064010_Ch riss-Mac.crash, error: 13 Permission denied
    Nov 20 03:29:23 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: InternalProblemUUID value:  for url: file://localhost/Library/Logs/DiagnosticReports/syspolicyd_2012-11-18-064010_Ch riss-Mac.crash, error: 13 Permission denied
    Nov 20 03:29:23 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Library/Logs/DiagnosticReports/syspolicyd_2012-11-18-064010_Ch riss-Mac.crash
    Nov 20 03:29:25 kevos-ipad SubmitDiagInfo[4731]: Rewrite: File open failed /Library/Logs/DiagnosticReports/.PluginProcess_2012-11-18-162641_Chriss-Mac.cra sh.plist - uid: 501 gid: 20, euid: 501 egid: 20 - error 0: Undefined error: 0
    Nov 20 03:29:25 kevos-ipad SubmitDiagInfo[4731]: Rewrite: File open failed /Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-162641_Chriss-Mac.cras h - uid: 501 gid: 20, euid: 501 egid: 20 - error 3: No such process
    Nov 20 03:29:25 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: SubmissionTimeStamp value: 2012-11-20-032925 for url: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-162641 _Chriss-Mac.crash, error: 13 Permission denied
    Nov 20 03:29:25 kevos-ipad SubmitDiagInfo[4731]: Failed to set xattr key: InternalProblemUUID value:  for url: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-162641 _Chriss-Mac.crash, error: 13 Permission denied
    Nov 20 03:29:25 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Library/Logs/DiagnosticReports/PluginProcess_2012-11-18-162641 _Chriss-Mac.crash
    Nov 20 03:29:26 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/mbicloudsetup_20 12-11-16-220800_Chriss-MacBook-Pro.crash
    Nov 20 03:29:29 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/XBMC_2012-11-17- 201712_Chriss-Mac.crash
    Nov 20 03:29:32 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/com.apple.dock.e xtra_2012-11-18-122950_Chriss-Mac.crash
    Nov 20 03:29:34 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/Safari_2012-11-1 8-140923_Chriss-Mac.crash
    Nov 20 03:29:37 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/PluginProcess_20 12-11-18-140923_Chriss-Mac.crash
    Nov 20 03:29:40 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/PluginProcess_20 12-11-18-164914_Chriss-Mac.crash
    Nov 20 03:29:42 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/com.apple.dock.e xtra_2012-11-18-191144_Chriss-Mac.crash
    Nov 20 03:29:45 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/Safari_2012-11-1 9-152822_Chris.crash
    Nov 20 03:29:48 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/iNet_2012-11-19- 163341_Chris.crash
    Nov 20 03:29:51 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/iNet_2012-11-19- 163409_Chris.crash
    Nov 20 03:29:53 kevos-ipad SubmitDiagInfo[4731]: Submitted crash report: file://localhost/Users/wetherjc/Library/Logs/DiagnosticReports/iNet_2012-11-19- 164748_Chris.crash
    Nov 20 03:29:54 kevos-ipad SubmitDiagInfo[4731]: Failed to write network signature cache at path /Library/Caches/com.apple.DiagnosticReporting.Networks.plist
    Nov 20 03:29:56 kevos-ipad SubmitDiagInfo[4731]: Diagnostic Message store has been re-created since previous submission.
    Nov 20 03:29:57 kevos-ipad SubmitDiagInfo[4731]: SubmitDiagInfo successfully uploaded 189 diagnostic messages.
    Nov 20 03:29:57 kevos-ipad SubmitDiagInfo[4731]: Failed to write network signature cache at path /Library/Caches/com.apple.DiagnosticReporting.Networks.plist
    Nov 20 03:32:30 kevos-ipad WindowServer[103]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    Nov 20 03:32:30 kevos-ipad loginwindow[45]: find_shared_window: WID -1
    Nov 20 03:32:30 kevos-ipad loginwindow[45]: CGSGetWindowTags: Invalid window 0xffffffff
    Nov 20 03:32:30 kevos-ipad loginwindow[45]: find_shared_window: WID -1
    Nov 20 03:32:30 kevos-ipad loginwindow[45]: CGSSetWindowTags: Invalid window 0xffffffff
    Nov 20 03:32:30 kevos-ipad WindowServer[103]: Created shield window 0x945 for display 0x042728c0
    Nov 20 03:32:30 kevos-ipad WindowServer[103]: device_generate_desktop_screenshot: authw 0x7fbbd913d470(2000), shield 0x7fbbe217aa30(2001)
    Nov 20 03:32:30 kevos-ipad WindowServer[103]: device_generate_lock_screen_screenshot: authw 0x7fbbd913d470(2000), shield 0x7fbbe217aa30(2001)
    Nov 20 03:32:30 kevos-ipad kernel[0]: hibernate image path: /var/vm/sleepimage
    Nov 20 03:32:30 kevos-ipad kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Nov 20 03:32:30 kevos-ipad kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    Nov 20 03:32:30 kevos-ipad kernel[0]: kern_open_file_for_direct_io(0) took 3 ms
    Nov 20 03:32:30 kevos-ipad kernel[0]: Opened file /var/vm/sleepimage, size 4294967296, partition base 0x0, maxio 400000 ssd 0
    Nov 20 03:32:30 kevos-ipad kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 5
    Nov 20 03:32:30 kevos-ipad kernel[0]: hibernate_alloc_pages flags 00000000, gobbling 0 pages
    Nov 20 03:32:30 kevos-ipad kernel[0]: hibernate_setup(0) took 0 ms
    Nov 20 03:32:33 kevos-ipad kernel[0]: en1: BSSID changed to 3c:ea:4f:82:72:d9
    Nov 20 03:32:33 kevos-ipad kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    Nov 20 03:32:33 kevos-ipad kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    Nov 20 03:32:33 kevos-ipad kernel[0]: en1::IO80211Interface::postMessage bssid changed
    Nov 20 03:32:33 kevos-ipad kernel[0]: USBF:          14701.864          AppleUSBEHCI[0xffffff8017c61000]::SuspendUSBBus - port 2 was NOT already suspended (as it should have been) PROBLEMS AHEAD
    Nov 20 03:32:33 kevos-ipad kernel[0]: hibernate_page_list_setall start 0xffffff8077af5000, 0xffffff8077b15000
    Nov 20 03:32:42 kevos-ipad kernel[0]: hibernate_page_list_setall time: 202 ms
    Nov 20 03:32:42 kevos-ipad kernel[0]: pages 918883, wire 217964, act 230212, inact 5, cleaned 0 spec 96, zf 33032, throt 0, could discard act 170706 inact 153450 purgeable 5240 spec 84244 cleaned 23934
    Nov 20 03:32:42 kevos-ipad kernel[0]: hibernate_page_list_setall found pageCount 481309
    Nov 20 03:32:42 kevos-ipad kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    Nov 20 03:32:42 kevos-ipad kernel[0]: IOHibernatePollerOpen(0)
    Nov 20 03:32:42 kevos-ipad kernel[0]: encryptStart 13230
    Nov 20 03:32:42 kevos-ipad kernel[0]: writing 479521 pages
    Nov 20 03:32:42 kevos-ipad kernel[0]: encryptEnd c70d200
    Nov 20 03:32:42 kevos-ipad kernel[0]: image1Size 0x10cb1e00, encryptStart1 0x13230, End1 0xc70d200
    Nov 20 03:32:42 kevos-ipad kernel[0]: encryptStart 10cb1e00
    Nov 20 03:32:42 kevos-ipad kernel[0]: encryptEnd 29bca200
    Nov 20 03:32:42 kevos-ipad kernel[0]: PMStats: Hibernate write took 8405 ms
    Nov 20 03:32:42 kevos-ipad kernel[0]: all time: 8405 ms, comp bytes: 1964531712 time: 1987 ms 942 Mb/s, crypt bytes: 627123152 time: 1236 ms 483 Mb/s,
    Nov 20 03:32:42 kevos-ipad kernel[0]: image 700228096, uncompressed 1964531712 (479622), compressed 690110848 (35%), sum1 4a3c6cd, sum2 a4ed9cc6
    Nov 20 03:32:42 kevos-ipad kernel[0]: wired_pages_encrypted 167206, wired_pages_clear 49071, dirty_pages_encrypted 263345
    Nov 20 03:32:42 kevos-ipad kernel[0]: hibernate_write_image done(0)
    Nov 20 03:32:42 kevos-ipad kernel[0]: sleep
    Nov 20 03:32:42 kevos-ipad ypbind[4587]: direct: sendto: Network is down
    Nov 20 03:32:42 kevos-ipad ypbind[4587]: Can't contact any servers listed in /var/yp/binding/gateway.2wire.net.ypservers.  Aborting
    Nov 20 03:32:42 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind[4587]): Exited with code: 1
    Nov 20 03:32:42 kevos-ipad ypbind[4796]: direct: sendto: Can't assign requested address
    Nov 20 03:32:42 kevos-ipad ypbind[4796]: Can't contact any servers listed in /var/yp/binding/gateway.2wire.net.ypservers.  Aborting
    Nov 20 03:32:42 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind[4796]): Exited with code: 1
    Nov 20 03:32:42 kevos-ipad com.apple.launchd[1] (com.apple.nis.ypbind): Throttling respawn: Will start in 10 seconds
    Nov 20 04:18:39 Chris.local digest-service[4816]: digest-request: init return domain: KEVOS-IPAD server: CHRIS
    Nov 20 06:35:27 kevos-ipad configd[18]: setting hostname to "kevos-ipad"
    Nov 20 06:35:28 kevos-ipad awacsd[59]: InnerStore GetWakeInfoForZone: zero address for 196666541.members.btmm.icloud.com.
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got user: wetherjc
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got ruser: wetherjc
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Got service: screensaver
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in od_principal_for_user(): No authentication authority returned
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in od_principal_for_user(): failed: 7
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Failed to determine Kerberos principal name.
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Done cleanup3
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_authenticate(): Kerberos 5 refuses you
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_acct_mgmt(): OpenDirectory - Membership cache TTL set to 1800.
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in od_record_check_pwpolicy(): retval: 0
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Establishing credentials
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Got user: wetherjc
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Context initialised
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Got euid, egid: 501 20
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done getpwnam()
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done setegid() & seteuid()
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): pam_sm_setcred: krb5 user wetherjc doesn't have a principal
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done cleanup3
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done seteuid() & setegid()
    Nov 20 06:35:30 kevos-ipad loginwindow[45]: in pam_sm_setcred(): Done cleanup4
    Nov 20 06:35:30 kevos-ipad awacsd[59]: InnerStore GetWakeInfoForZone: zero address for 196666541.members.btmm.icloud.com.
    Nov 20 06:35:32 kevos-ipad digest-service[6223]: label: default
    Nov 20 06:35:32 kevos-ipad digest-service[6223]:           dbname: od:/Local/Default
    Nov 20 06:35:32 kevos-ipad digest-service[6223]:           mkey_file: /var/db/krb5kdc/m-key
    Nov 20 06:35:32 kevos-ipad digest-service[6223]:           acl_file: /var/db/krb5kdc/kadmind.acl
    Nov 20 06:35:32 kevos-ipad digest-service[6223]: digest-request: uid=0
    Nov 20 06:35:32 kevos-ipad airportd[6216]: _doAutoJoin: Already associated to “2WIRE243”. Bailing on auto-join.
    Nov 20 06:35:32 kevos-ipad rpcsvchost[6224]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    Nov 20 06:35:32 kevos-ipad kernel[0]: en1: BSSID changed to 3c:ea:4f:82:72:d9
    Nov 20 06:35:32 kevos-ipad digest-service[6223]: digest-request: init request
    Nov 20 06:35:32 kevos-ipad digest-service[6223]: digest-request: init return domain: CHRIS server: KEVOS-IPAD
    Nov 20 06:35:40 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 06:35:40 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.apple.Safari.pl aylist failed: 13 Permission denied
    Nov 20 06:35:42 kevos-ipad Safari[6230]: CGContextClipToRect: invalid context 0x0
    Nov 20 06:36:09 kevos-ipad WebProcess[6232]: *** WARNING: -[NSImage dissolveToPoint:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 20 06:36:09 kevos-ipad WebProcess[6232]: *** WARNING: -[NSImage dissolveToPoint:fromRect:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 20 06:36:09 kevos-ipad WebProcess[6232]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 20 06:36:09 kevos-ipad WebProcess[6232]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    Nov 20 06:36:15 kevos-ipad mDNSResponder[42]:  91: Could not write data to clientPID[-1]()  because of error - aborting connection
    Nov 20 06:36:15 kevos-ipad mDNSResponder[42]:  91: DNSServiceGetAddrInfo      v4v6 cdnet.vs.com.cdngc.net. PID[-1]()
    Nov 20 06:36:15 kevos-ipad mDNSResponder[42]:  94: Could not write data to clientPID[-1]()  because of error - aborting connection
    Nov 20 06:36:15 kevos-ipad mDNSResponder[42]:  94: DNSServiceGetAddrInfo      v4v6 cdnet.vs.com.cdngc.net. PID[-1]()
    Nov 20 06:38:35 kevos-ipad CalendarAgent[190]: Date validation error: RDATE = '20130308Z'
    Nov 20 06:38:35 kevos-ipad CalendarAgent[190]: Date validation error: RDATE = '20120308Z'
    Nov 20 06:38:35 kevos-ipad CalendarAgent[190]: Unexpected EOF, returning last token as fallback
    Nov 20 06:38:35 kevos-ipad CalendarAgent[190]: Date validation error: RDATE = '20110308Z'
    Nov 20 06:38:35 kevos-ipad CalendarAgent[190]: Date validation error: RDATE = '20130308Z'
    Nov 20 06:38:35 kevos-ipad CalendarAgent[190]: Unexpected EOF, returning last token as fallback
    Nov 20 06:45:40 kevos-ipad Safari[6230]: CGContextClipToRect: invalid context 0x0
    Nov 20 06:46:51 kevos-ipad Safari[6230]: CGContextClipToRect: invalid context 0x0
    Nov 20 06:48:40 kevos-ipad WindowServer[103]: CoreAnimation: context hosting changed while locked!
    Nov 20 06:48:55 kevos-ipad WindowServer[103]: CGXGetWindowType: Invalid window 2610
    Nov 20 06:48:55 kevos-ipad Dock[161]: find_shared_window: Invalid depth WindowID 0xa32
    Nov 20 06:48:55 kevos-ipad Dock[161]: CGSGetWindowTags: Invalid window 0xa32
    Nov 20 06:48:55 kevos-ipad Dock[161]: find_shared_window: WID 2609
    Nov 20 06:48:55 kevos-ipad Dock[161]: CGSGetWindowTags: Invalid window 0xa31
    Nov 20 06:48:55 kevos-ipad Dock[161]: find_shared_window: WID 2608
    Nov 20 06:48:55 kevos-ipad Dock[161]: CGSGetWindowTags: Invalid window 0xa30
    Nov 20 06:48:55 kevos-ipad Dock[161]: find_shared_window: WID 2607
    Nov 20 06:48:55 kevos-ipad Dock[161]: CGSGetWindowTags: Invalid window 0xa2f
    Nov 20 06:48:59 kevos-ipad Skype[6261]: Address book access is denied for executable at path: /Applications/Skype.app/Contents/MacOS/Skype
    Nov 20 06:48:59 kevos-ipad Skype[6261]: Application is not entitled to access AddressBook contacts
    Nov 20 06:49:02 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Microphone, uniq ID = AppleHDAEngineInput:1B,0,1,0:1, core devise ID = 58]
    Nov 20 06:49:02 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Input, uniq ID = AppleHDAEngineInput:1B,0,1,1:2, core devise ID = 48]
    Nov 20 06:49:02 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Output, uniq ID = AppleHDAEngineOutput:1B,0,1,2:0, core devise ID = 40]
    Nov 20 06:49:04 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 06:49:04 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.skype.skype.pla ylist failed: 13 Permission denied
    Nov 20 06:49:04 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 06:49:04 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.ooVoo.playlist failed: 13 Permission denied
    Nov 20 06:49:46 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Microphone, uniq ID = AppleHDAEngineInput:1B,0,1,0:1, core devise ID = 58]
    Nov 20 06:49:46 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Input, uniq ID = AppleHDAEngineInput:1B,0,1,1:2, core devise ID = 48]
    Nov 20 06:49:46 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Output, uniq ID = AppleHDAEngineOutput:1B,0,1,2:0, core devise ID = 40]
    Nov 20 06:59:32 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 06:59:32 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.apple.systempre ferences.playlist failed: 13 Permission denied
    Nov 20 07:01:28 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 07:01:28 kevos-ipad WindowServer[103]: Received display connect changed for display 0x42728c0
    Nov 20 07:01:28 kevos-ipad WindowServer[103]: CGXMuxAcknowledge: Posting glitchless acknowledge
    Nov 20 07:01:29 kevos-ipad WindowServer[103]: Received display connect changed for display 0x42728c0
    Nov 20 07:01:29 kevos-ipad WindowServer[103]: Received display connect changed for display 0x3f003d
    Nov 20 07:01:29 kevos-ipad WindowServer[103]: Received display connect changed for display 0x3f003e
    Nov 20 07:01:44 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 07:01:44 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.org.mozilla.firefox .playlist failed: 13 Permission denied
    Nov 20 07:01:56 kevos-ipad com.apple.launchd.peruser.501[143] (com.apple.rcd[6258]): Exited: Killed: 9
    Nov 20 07:01:56 kevos-ipad kernel[0]: memorystatus_thread: idle exiting pid 6258 [rcd]
    Nov 20 07:04:10 kevos-ipad kernel[0]: USBF:          20741.226          [0xffffff8017e77400] The IOUSBFamily is having trouble enumerating a USB device that has been plugged in.  It will keep retrying.  (Port 3 of Hub at 0xfa100000)
    Nov 20 07:04:10 kevos-ipad kernel[0]: USBF:          20741.964          [0xffffff8017e77400] The IOUSBFamily has successfully enumerated the device.
    Nov 20 07:04:10 kevos-ipad kernel[0]: USBMSC Identifier (non-unique): 015D62C31601101E 0x22b8 0x4287 0x216
    Nov 20 07:04:14 kevos-ipad XBMC[6308]: CPSGetCurrentProcess(): This call is deprecated and should not be called anymore.
    Nov 20 07:04:14 kevos-ipad XBMC[6308]: CPSSetForegroundOperationState(): This call is deprecated and should not be called anymore.
    Nov 20 07:04:15 kevos-ipad XBMCHelper[6314]: XBMCHelper 0.7 starting up...
    Nov 20 07:04:15 kevos-ipad WindowServer[103]: Received display connect changed for display 0x42728c0
    Nov 20 07:04:15 kevos-ipad WindowServer[103]: Received display connect changed for display 0x3f003d
    Nov 20 07:04:15 kevos-ipad WindowServer[103]: Received display connect changed for display 0x3f003e
    Nov 20 07:04:15 kevos-ipad WindowServer[103]: CGXMuxAcknowledge: Posting glitchless acknowledge
    Nov 20 07:04:15 kevos-ipad WindowServer[103]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x10dd1c320  isBackBuffered: 1 numComp: 3 numDisp: 3
    Nov 20 07:04:15 kevos-ipad WindowServer[103]: Received display connect changed for display 0x42728c0
    Nov 20 07:04:16 kevos-ipad WindowServer[103]: CGXMuxCapture: Starting
    Nov 20 07:04:16 kevos-ipad WindowServer[103]: CGXMuxCapture: Acquired
    Nov 20 07:04:16 kevos-ipad WindowServer[103]: Display 0x42728c0 captured by conn 0x1313b
    Nov 20 07:04:16 kevos-ipad WindowServer[103]: CGXMuxCapture: Released
    Nov 20 07:04:16 kevos-ipad WindowServer[103]: Display 0x42728c0 released by conn 0x1313b
    Nov 20 07:04:32 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Microphone, uniq ID = AppleHDAEngineInput:1B,0,1,0:1, core devise ID = 58]
    Nov 20 07:04:32 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Input, uniq ID = AppleHDAEngineInput:1B,0,1,1:2, core devise ID = 48]
    Nov 20 07:04:32 kevos-ipad JavaApplicationStub[6263]: Audio device detected [name = Built-in Output, uniq ID = AppleHDAEngineOutput:1B,0,1,2:0, core devise ID = 40]
    Nov 20 07:04:33 kevos-ipad WindowServer[103]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x10dd1c320  isBackBuffered: 1 numComp: 3 numDisp: 3
    Nov 20 07:04:33 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 07:04:45 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.teamxbmc.xbmc.p laylist failed: 13 Permission denied
    Nov 20 07:04:46 kevos-ipad warmd[29]: [_bootcachectl_playlist_dir_for_user:2452] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569 failed: 13 Permission denied
    Nov 20 07:04:46 kevos-ipad warmd[29]: [_bootcachectl_playlist_exists:466] Assertion failed: ((*__error()) == 2): stat'ing /var/db/BootCaches/1D6E2B9F-598E-463B-8D44-C489BA0F6569/app.com.prosofteng.Data Rescue3.playlist failed: 13 Permission denied
    Nov 20 07:05:00 kevos-ipad KernelEventAgent[47]: tid 00000000 received event(s) VQ_LOWDISK, VQ_VERYLOWDISK (516)
    Nov 20 07:05:00 kevos-ipad kernel[0]: HFS: Vol: Data Rescue 3 Very Low Disk: freeblks: 0, dangerlimit: 76
    Nov 20 07:05:00 kevos-ipad mds[41]: (/)(Warning) IndexQuery in bool preIterate_FSI(SISearchCtx_FSI *):Throttling inefficient file system query
    Nov 20 07:09:02 kevos-ipad Safari[6230]: CGContextClipToRect: invalid context 0x0
    Nov 20 07:09:05 kevos-ipad Safari[6230]: CGContextClipToRect: invalid context 0x0
    Nov 20 07:13:14 kevos-ipad System Preferences[6281]: Unable to open IOHIDSystem (e00002bd)
    Nov 20 07:13:14 kevos-ipad kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    Nov 20 07:13:23 kevos-ipad System Preferences[6281]: httpdEnabled is deprecated !!
    Nov 20 07:13:29 kevos-ipad authorizationhost[6356]: in pam_sm_a

    Hi wetherjc
    I am very sorry this happened to you...I too have been dealing w hackers but they have penetrated my net remotely. I have read the entire log you posted above and saw several items I'd like to point out. Since you posted this 9 months ago I hope it is still usefull to you and should be for others as your log is a good case for others to study.
    But I also must tell you. He used some off-the-shelf Hacking tools (which should be ILLEGAL) but also used some somewhat sophisticated techniques. If you haven't already done so, or when you encounter something of this magnitude in the future, I recommend you call Dispatch of your local Police Dept and report him. He was monitoring your audio and video and streaming it to his iPad from what I can tell.
    So, what can you do?
    1) Mountain Lion caught MANY attempts made to subvert OS X to the hacker's commands as they have been deprecated for security purposes. So running OS X 10.8.x w latest Security Updates is first step.
    2) When sharing a network (if you were or in the future) go to the advanced settings on your router, change it so it does not broadcast it's SSID. Then, use MAC addresses to allow your devices access and block all others. BUT...
    Apple computers and Unix/Linux based computers allow for peer-to-peer connections so it's possible to bypass the router when within a close proximity and connect directly to your computer. That said, the simplest thing to do is turn off your Apple device when not using it.
    3)Reset your root password (there are instructions for how to do so) Be sure to only use random characters, numbers & special characters (upper and lower case alpha) w at LEAST 32 characters. Write it down as I know I can't remember mine!!
    There are many more things you can do, like setting your Firewall in OS X to block all incoming connections, don't allow any type of sharing, disable Java if you don't need it (he instantiated it) and be careful w FLASH
    Finally, unless you are a Computer/IT/Sec professional w hours on your hands, make a backup of your USER and Shared directory using Time Machine (adjust settings so it only backs those directories up) and reimage your harddrive, reinstall OS X and then restore from Time Machine.
    Best to you!
    Musician, Engineer & NiceGuy
    <Edited by Host>

  • Have no access to apple id email account hacked how do i get my music back?

    Hello,
      If anyone can help me I would greatly appreciate it.  All my microsoft  email accounts or any email account I have ever own was hacked back in 2009.  Now I would really like to be able to get all the itunes music I purchased but I don't have access to the email account it is associated with.  Not even sure which one it is.   I spoke with Apple on the phone and they informed me that every email account I thought was listed with my Apple id never was. Also that my apple  id revolved around a hotmail account.  I had no clue because I don't recall ever associating it with one.  Needless to say I can't access or close my hotmail accounts due to something about them being associated with a microsoft account.  STill not sure what they are talking about. I have been trying for years to close my email accounts or access them but so far nothing.  They are being used just not by me.  I did send a letter to Microsoft for support welll that was a waste of time.My question is how do I get the 100s of songs I paid for when I can't access my orginal apple id?   I can't get past the birthdate for security questions and apple can't help me.   Last October I spent hours on the phone with apple and they sent me a reset password email to my internet provider Fibrant.  Sad thing is I never got it until about 3 weeks ago.   Alittle to late.  I assumed someone or something kept it from me so I could not access my apple id.   The only thing I have as an apple id is an expired . me account.   You would think that would be enough to prove the music I purchased was listed with that me  account and one time but nope its not.   I just need to know how to get access to my apple id the original one.   I have went out of my was to get a mac computer and apple router , I also took all my microsoft pcs and got rid of them.  But it doesn't matter because evidently who ever third party or what not that has my apple id is associated with microsoft.  I didn't even realized all my music on my ipod was formatted for windows.  so I try to restore it and I lost a 100 and some songs.   I bought itunes match last october and that was a waste I am not sure but I think it was associated with microsoft too.   When I speak with apple on the phone  they usually say that account doesn't exist.  Or that there is no record of the hours I spent on the phone speaking with them.  Or they can access the case number but there are no details.  If someone has a good idea of how I can reclaim my orginal apple id besides my old @ me account I would greatly appreciate it.  I can't get pass the birthdate that states is wrong and if i get a reset email it seems to be intercepted or something.     Please help.
    Thanks,
    Suzanne Stegall McCabe
    UnitedSTates
    Eastern time zone

    I did back up my computer and then put everything back on ( or so I thought) but it did not work properly ( I don't know why) maybe I hit the wrong button, but know on my back up for iTunes it is the one  I have  on my computer now without all my music and photos. Guess I'll just have to start again, I did manage to work out how to get any purchases I got from iTunes. So it's just all my own music bit of a bummer really but still you live and learn, so I'm told.
    Thanks for the help thought much appreciated.  

  • I am hacked on all my apple devices. How to solve the issue? Please help!

    Hi everyone,
    So whenever I open certain websites on Safari, suddenly I am redirected to either a women's health or a doctor's ad. (I am guessing this is called phishing)
    1)I've asked my friends if they've had the same problem with those certain sites and they replied no. Does this mean it is about my network? (I am the only one using this network at my home as I live alone)
    2)This happens on all my Apple devices including iPad and iPhone (when I tried to open the same website on my İphone while using mobile data, the problem did not happen- when I opened wifi on my phone it happened. same for iPad as well)
    Admedic said there were no adware, I have never changed my DNS so it has always stayed the way it always was also. So I am guessing my network is the problem.  (I am also guessing that this happened after I tried to watch a movie free online) BUT, this problem does not occur with Google Chrome on the same website. So is this about my network or my safari?
    I am now so scared if this person who hacked me gets all my information. What am I supposed to do? Please help!

    Hi! Thanks for your quick reply.
    A few things happened since I've posted this.
    1)I've deleted all the history and cookies from my macbook safari and when I opened the website with the issue, the problem did not happen this time.
    2)Seeing this, I've deleted my history on iPhone's safari and opened the same website but the problem was there again.
    3)The problem does not happen on iPad.
    So, I do not have the problem at all on Google Chrome but on Safari (now just on iPhone)
    Is this still about my router settings? If so would changing my phone DNS settings would suffice? Or do you think the problem might still remain on my computer as well?
    This is so frustrating for a person who does not know anything about technology at all
    Thank you!

  • Need help on which router to buy for my BB 8320

    Now i know 8320 is dated but at this point i am not planning to change anytime soon .
    So I have a router which is kinda old, it didnt really occur to me since it worked. When i got my bb 8320 i was in a hotel and i could connect through their wireless without any hassle. I could surf, use youtube, name it.
    When i got home i couldnt do anything, i spent countless nights trying to figure out waht was wrong then i realized its my router. If only BB said somethign it wont support old routers then i wouldve saved myself hours of self-loathing.
    Anyways I also have gone to my friends house, and i could connect to her linksys router without any hassle. i was the one who set her router up and we bought it this year. i didnt do anything special, configuration-wise or w/e.
    So NOW i am just going to buy a new router. I really need help!!!!
    I was wondering if this one is good:
    W311R Wireless-N Broadband Router
    W311R integrates the wireless AP, router, four-port switch and firewall in one, and increases over 4 times transmission range of ordinary 802.11g products. Compatible with IEEE802.11n (Draft 2.0) and IEEE802.11g/b standards, it can provide up to 150Mbps stable transmission rate. It is dedicated to SOHOs and students’ dormitory. In addition, URL and MAC address filtering can take it easy for parents and network administrator to manage network life, and QoS bandwidth control over specific computer’s downloading speed is supported as well. Moreover, UPnP and WMM support can smooth your MSN voice better, and the included Setup Wizard on CD-ROM will be easy and fast for non-savvy users to install the device and access to the Internet.
    Overview:
    * Includes router, wireless access point, four-port switch and firewall in one
    * Provides up to 150Mbps uploading and downloading speed
    * Supports two WPS (Wi-Fi Protected Setup) encryption methods: PBC and PIN
    * Compliant to IEEE802.11n, IEEE802.11g, IEEE802.11b, IEEE802.3 and IEEE802.3u standards
    * Supports far-distance transmission, 100 meters indoor, 400 meters outdoor (depends on the environments around)
    * Supports 64/128-bit WEP encryption, WPA and the latest WPA2 encryption security authentication
    * Supports RTS/CTS protocol and data partitioning function
    * Provides one 10/100Mbps Auto-Negotiation Ethernet WAN ports for WAN connection
    * Provides four 10/100Mbps Auto-Negotiation Ethernet LAN ports for LAN connections
    * Supports xDSL/Cable MODEM, static and dynamic IP in community networking
    * Supports remote/local Web management
    * Supports WMM to better smooth your voice and video
    * Supports SSID stealth mode and access control based over MAC address (up to 30 entries)
    * Supports Auto MDI/MDIX
    * Supports wireless Roaming technology and ensures high-efficient wireless connections
    * Supports auto negotiation/manual mode for 802.11b/802.11g/802.11n
    * Supports UPnP and DDNS
    * Supports Firefox 1.0, IE5.5 or above
    * Supports SNTP
    * Supports virtual server, DMZ host
    * Built-in firewall for hacker’s attack prevention
    * Supports DHCP server/client
    * Supports auto wireless channel selection
    * Supports the control over LAN access to Internet
    * Provides syslog to record the status of the router
    * Supports WDS wireless network extension
    * Supports QoS function
    Input Voltage Range
    AC 110~240V
    Output Voltage Range
    9V~1000mA
    Consumption
    20dbm
    Operating Temperature
    0? ~ 40?
    Storage Temperature
    -40? ~ 70?
    Operating Humidity
    10% ~ 90% RH non-condensing
    Storage Humidity
    5% ~ 90% RH non-condensing
    Antenna
    One Non-detachable external antenna (5dBi)
    Frequency Range
    2.4GHz-2.5GHz
    EVM
    -30dB
    Sensitivity
    54M:-74dBm@10% PER; 11M:-85dBm@8% PER; 6M:-88dBm@10% PER; 1M:-90dBm@8% PER
    Outdoor
    400m
    Indoor
    100m
    WLAN?LAN
    93Mbps
    WLAN?WLAN
    93Mbps
    Frequency Range
    2.4GHz
    Gain
    5dBi
    Nominal Impedance
    50
    Polarization
    Linear; Vertical
    Maximum Power
    1W
    * Vertical Beamwidth 360º

    Flip UltraHD.
    Shoots mp4 H264 format files. Fits in a shirt pocket and records 2 hrs worth of material to an internal card. Charges from your USB port as you download. If you are just trimming clips, you can use QT Pro without conversion. If you need to edit, convert to ProRes 720p30. Works like a dream.
    Just make sure you have it solidly placed when you pull the trigger as there is no image stabilization.
    Oh, and it is only $199 US.
    x

Maybe you are looking for