Showing posts with label apple. Show all posts
Showing posts with label apple. Show all posts

Sunday, October 13, 2013

Apple Releases iTunes 10 5 Beta 8 For Developers

Yesterday, Apple has seeded iTunes 10.5 Beta 8 to developers with support to iTunes Match.


Change Log:
    • Songs in unsupported formats will not be uploaded to iCloud at this time.
    • The scan & match feature is not yet complete.
    • Some songs may not match (even if they is available in the iTunes Store) and will be uploaded to iCloud.
    • Other songs may match to a different version of the same song on the iTunes Store.
    • You can only add music to iCloud from more than one computer at a time.
    • After updating to iOS 5 beta 7, your music may fail to play.  If this happens, turn of
    • Songs in unsupported formats will not be uploaded to iCloud at this time.
    • The scan & match feature is not yet complete.
    • Some songs may not match (even if they is available in the iTunes Store) and will be uploaded to iCloud.
    • Other songs may match to a different version of the same song on the iTunes Store.
    • You can only add music to iCloud from more than one computer at a time.
    • After updating to iOS 5 beta 7, your music may fail to play.  If this happens, turn off iTunes Match in Settings > Music, and turn it back on.
Download iTunes 10.5 Beta 8 For Mac From HERE [Direct Link]
Read More..

Saturday, October 5, 2013

iOS 6 Beta 3 For Apple TV Brings Expanded AirPlay Control

iOS 6 beta 3 of Apple TV adds the ability to streaming audio through the headphones AirPlay.
Apple has released
iOS 6 Beta 3 to developers a few days ago, we mentioned to you many of the features that came to your iPhone, iPad, iPod Touch in this demo version, and now its time to talk a little bit about one of the new features that came for the Apple TV.




Running the latest software, the Apple TV will detect any AirPlay-enabled speakers on a users home network, and they will be available to select for sound output. The new feature is said to be fully operational in the latest pre-release build of iOS 6, allowing users to send audio from any content, including video, to wireless AirPlay-capable speakers.

Currently, an Apple TV running the latest publicly released version of iOS only has the ability to receive AirPlay content. The existing AirPlay settings on the Apple TV simply to turn the feature on or off, and set a password.

 
Apples interest in the Apple TV interface since the reform began, and feature the ability to reorder the applications available, and now adds support for streaming audio through the AirPlay
Read More..

Apple iPhone Brute force attacks are foiled Why

Apples iPhone is a prime example for a well-engineered netlock protection. To this day, it has been uncracked in principle: the current unlock solutions just patch the firmware running on the baseband modem to the effect that the netlock checks are overriden. These solutions basically inject code into the firmware on the fly by exploiting buffer/heap overflows. A small piece of homebrew software runs on the application processor for just doing that - a jailbreak is therefore a prerequisite for an unlock. The patches cant be permanently applied to the firmware of 3G and later devices because it is signature-checked by the baseband bootloader before it is executed. Whenever Apple decides to update the baseband firmware, they fix the injection holes. Firmware downgrades are blocked, so a way to permanently unlock the baseband has yet to be found for models other than the first iPhone 2G. In a nutshell, the protection works like this:

  • Two identification numbers unique to each device are generated from the NOR flash and baseband CPU serials: the norID and the chipID, 8 respectively 12 bytes in size.

  • The device-specific deviceKey is generated from truncating a SHA1 hash of the concatenated and padded norID and chipID.

  • A supposedly random NCK (network control key) is SHA1-hashed. With the hashed NCK and the norID and chipID, the second key nckKey is generated. The hashing algorithm uses Tiny Encryption Algorithm (TEA). The nckKey is also device-specific since both the norID and chipID are used.

  • A device-specific RSA signature is generated: two SHA1 hashes are generated from the norID and chipID. The status that the lock has after the correct NCK has been entered is also embedded into this message. The PCKS 1.5 format is used to pad the hashes and the status from (2*160+32) bit to 2048 bit (256 byte).

  • The asymmetric RSA algorithm is used for the encryption of the unlock signature. Keep in mind that the algorithm uses two different keys: a private key for encryption and a public key for decryption. With the private RSA key, the signature is encrypted and stored in protected memory.

  • This signature is encrypted with TEA once again using the device-specific deviceKey in CBC mode.

In pseudo code, it looks like this:
deviceKey = SHA1_hash(norID+chipID)
nckKey = custom_hash(norID, chipID, SHA1_hash(NCK), deviceKey)
rawSignature = generateSignature(SHA1_hash(norID+chipID), SHA1_hash(chipID))
Signature = RSA_encrypt(rawSignature, privateRSAkey)
encryptedSignature = TEA_encrypt_cbc(Signature, nckKey)
 
The encryptedSignature is then saved to a protected memory area - the device has been locked. This happens when Apple issues the AT+CLCK="PN",1,"NCK" command presumably directly after manufacturing the phone.

When testing a network code key, the baseband firmware reads the encryptedSignature, calculates the deviceKey and the nckKey from the entered NCK, decrypts the encryptedSignature with the nckKey using TEA, decrypts it once more with the public RSA key and verifies the signature with the SHA1 hashes of the chipID / norID.

Heres the pseudo code:
deviceKey = SHA1_hash(norID+chipID)
nckKey = custom_hash(norID, chipID, SHA1_hash(NCK), deviceKey)
encryptedSignature = readEncryptedSignature()
Signature = TEA_decrypt_cbc(encryptedSignature, nckKey)
rawSignature = RSA_decrypt(Signature, publicRSAKey)
if ( (rawSignature has correct format) and (rawSignature contains both SHA1_hash(norID+chipID), SHA1_hash(chipID)) and (Lock status byte in rawSignature is OK) )
.. accept every SIM card
else
.. block non-authorized SIMs

If the NCK key is correct, it is stored on the application processor part of device and a flag is set which makes the application firmware (iOS) feed the NCK into the baseband modem during the boot-up. If the decrypted rawSignature passes the check, the baseband unlocks. This is what happens in factory-unlocked devices and iPhones which have been officially unlocked. It remains unknown whether some iPhones can never be unlocked by design even with the knowledge of the correct NCK: in the US, AT&T does not give out NCKs for any iPhone, even for those devices on which the contract has run out. This practice suggests that AT&T iPhones have a permanent barrier.

Various lessons can be learned from this:
  1. The NCK is only stored indirectly on the device in a protected area.

  2. The signature which contains the information about the NCK is directly linked to the device. Hence, replicating a signature from another device will not work.

  3. The NCK is a 15 digit number which is presumably not dependent on the IMEI or any other serial number, but completely random.

  4. Brute force attacks are foiled because a few expensive operations are necessary just to verify the code and the key space is large, e.g. the number of possible key combinations is big.

  5. A valid signature is implicitly required for an unlocked device. Factory-unlocked devices are shipped with such a signature, and during the official unlock process, this signature is generated.

  6. A fake signature for a device with known norID, chipID and NCK can not be generated because the private RSA key is unknown.

  7. Consequent code signing makes permanent firmware patches impossible.

  8. Interestingly, the signature check itself is executed in the bootloader which isnt touched during a firmware upgrade.

As a result, the protection withstands most attacks commonly used for unlocking.


EDIT: Here is the re-implementation in python. 

We welcome all to GUAR FORUM for more input and Testing.

Read More..

Wednesday, October 2, 2013

Apple Releases iOS 4 2 2 for Apple TV

Apple late last night issued iOS 4.2.2 (It’s actually 4.3, but Apple TV updates are numbered differently ) update for the current-generation Apple TV. The update specifically addresses a number of minor bugs, such as audio and video output problems experienced with some content.
Here’s the full list of fixes from Apple’s release documentation:
- Audio: Addresses an issue in which audio is not output when playing some video content.
- Video playback: Addresses an issue in which video is not displayed when playing some content.
- Audio output setting: Adds an audio output setting for switching to 16-bit audio for compatibility with some TVs and AV receivers.
- Live FF/RW improvements: Improves the performance of fast-forwarding and rewinding live events.
- Movie description: Addresses an issue in which the description information is not displayed for some movies.
- YouTube video order: Addresses an issue in which YouTube subscription videos were not ordered by date.
As usual, you can get this update over-the-air via the settings menu on your Apple TV.
Read More..

Thursday, September 26, 2013

Apple Cheap iPhone 4 Leaked In Brazil

Even before Apple confirmed iPhone 5 release event, we had been hearing about the possibility of two iPhone releasing in 2011. It really does look like Apple will release two iPhones at the October 4 iPhone 5 release event, as a cheap iPhone 4 has been leaked in Brazil.



Gizmodo Brazil have got their hands on leaked cheap iPhone 4 pictures. Supposedly, the Foxconn factory in Brazil supposed to manufacture iPads has a lot more on their hands other than Apples magical tablet.
Most of these photos don’t look like anything special—just snapshots of a familiar face. But when you get to the last one, a picture of a Foxconn Brazil quality control form, you’ll notice something strange: a different model number, N90A
Just so youre not confused, N90A iPhone model is not the iPhone 4S weve been hearing about. The iPhone 4S is codenamed N94, while this cheap iPhone 4 model is codenamed N90A. If reports about cheap iPhone 4 are correct, it is going to have 8GB of on board memory and will heavily use iCloud. The other iPhone is going to be the iPhone 5 which is going to have a new design, new processor and a better camera.
Read More..

Sunday, September 22, 2013

Apple iPad 2 launching in 13 more countries This Week Confirmed

According to Apple that iPad 2 launching in 13 more countries, 
China will get WiFi iPad 2 beginning Friday, May 6.
The device will go on sale in:
Japan on Thursday, April 28, 2011
and in eleven additional countries on Friday, April 29, 2011: 
Hong Kong,
India,
Israel,
Korea,
Macau,
Malaysia,
Philippines,
Singapore,
South Africa,
Turkey 
UAE.
CUPERTINO, California—April 27, 2011—Apple® today announced that iPad® 2, the second-generation of its breakthrough post-PC device, will arrive in Japan on Thursday, April 28 and Hong Kong, Korea, Singapore and eight additional countries on Friday, April 29. iPad 2 will be available at Apple retail stores at 9 a.m. local time, select Apple Authorized Resellers, and online through the Apple Store® (http://www.apple.com/) beginning at 1 a.m. Additionally, iPad 2 with Wi-Fi will be available in China beginning Friday, May 6.

iPad 2 features an entirely new design that is 33 percent thinner and up to 15 percent lighter than the original iPad, while maintaining the same stunning 9.7-inch LED-backlit LCD screen. iPad 2 features Apple’s new dual-core A5 processor for blazing fast performance and stunning graphics and now includes two cameras, a front-facing VGA camera for FaceTime® and Photo Booth®, and a rear-facing camera that captures 720p HD video, bringing the innovative FaceTime feature to iPad users for the first time. Though it is thinner, lighter, faster and packed with new features, iPad 2 still delivers up to 10 hours of battery life* that users have come to expect.

Pricing & Availability
iPad 2 with Wi-Fi will be available in Japan on April 28 and Hong Kong, India, Israel, Korea, Macau, Malaysia, Philippines, Singapore, South Africa, Turkey and UAE on April 29 for a suggested retail price of $499 (US) for the 16GB model, $599 (US) for the 32GB model and $699 (US) for the 64GB model. iPad 2 with Wi-Fi + 3G will be available for a suggested retail price of $629 (US) for the 16GB model, $729 (US) for the 32GB model and $829 (US) for the 64GB model. iPad 2 with Wi-Fi will be available in China on May 6, and further international availability will be announced at a later date.iMovie® and GarageBand® for iPad apps are available for $4.99 (US) each from the App Store℠ on iPad orwww.itunes.com/appstore. The Smart Cover is available in a range of colors in vibrant polyurethane for $39 (US) or rich leather for $69 (US).


Read More..

Tuesday, September 17, 2013

Safari 5 1 2 Is Now Released By Apple With Along Bug Fixes

Recently Apple releases safari 5.1.2 with more improvements and updates to fix bugs.From today you can say Good-bye for bugs and live in security while browsing at your iphone.

Apple has released Safari 5.1.2 to users this afternoon, available by direct download or by hitting up Software Update. The update is relatively minor, but brings along bug fixes that address issues of stability, extensive memory usage, fixing web pages that were flashing white, and now allows PDFs to be displayed within web content. Go ahead and download!
The update is including fixes that :

  • Improve stability 
  • Allow PDFs to be displayed within web content
  • Address issues that could cause hangs and excessive memory usage
  • Address issues that could cause web pages to flash white
Read More..

Sunday, September 15, 2013

Apple Released iOS 5 Beta 2 Changes And New Features

After three weeks of iOS 5 beta 1 release Apple today seeded iOS 5 beta 2 for developers only. iOS 5 Beta 2 Build 9A5248d is now available for download in Apple developers portal. Do not download it from any other external links as you won’t be able to activate your device and no trick is working to activate it till now.

WiFi syncing is now active in iOS 5 beta two you can sync your device with iTunes over WiFi, but you’ll also be needing iTunes 10.5 beta which also has been seeded and is available in developers portal.
In iOS 5.0 beta 2, wireless syncing is now available for the Mac. It requires iTunes 10.5 beta 2 and OS X 10.6.8 or Lion. You will see an option to enable wireless syncing when you connect your device to iTunes with the USB cable. It is recommended you perform your initial sync with a cable after restoring your device.
Wireless syncing is triggered automatically when the device is connected to power and on the same network as the paired computer. Or, you can manually trigger a sync from iTunes or from Settings -> General -> iTunes Sync (same network as paired computer required). Be sure your device is plugged into a power source when performing Wireless syncs.
After restoring  iOS 5 beta 2 firmware, a new animation will welcome you as the device turns on displaying the Apple logo, which will “grow” on screen until it disappears. Similarly, in the very first screen with the “iPhone” brand, a new “i” icon lets you see the IMEI code of the device. You’ll have to provide iPhone with your Apple ID after the setup to access Springboard, whilst beta 1 allowed you skip this process.

This video by iPhoneDownloadBlog shows perfectly how this all works:


Things which you should remember here:
  • iTunes 10.5 beta 1 won’t work with iOS 5 beta 2
  • iMessage seed 2 will be unable to communicate with iMessage users on seed 1.
Talking about the changes Apple made in this new beta 2, a lot of developers are posting their result on the web, some of the major changes are :
  • OTA updates have been released, though none are currently available
  • iCloud has a new logo in the Settings.app
  • You can now backup to iCloud or the computer when setting the device up
  • If no notifications are available, Notification Center shows the text “No New Notifications”
  • Stock widget in the Notification Center is now off by default
  • Stock wallpapers are back, but are the same that were in iOS 4
Notification System on lock-screen has been modified a little, it now stacks notifications on top of each other yet making only the latest one visible as a “bubble” in the middle of the screen. Let’s suppose you receive a  text message, the notification appears in a bubble like on iOS 4. As soon as another notification is received, the previous one goes to the top of the lock screen and is accessible by dragging down from the top of the time area. The new notification is shown in a bubble again.
Guys over ItsAllTech sent this picture for better understanding:

New pictures and videos will b added soon!
Read More..

Friday, September 13, 2013

Apple Drops iOS 4 3 4 To Fix JailbreakMe Jailbreakers And Unlockers Do Not Update

Click here to enlarge

Just a quick heads-up: Apple jsut dropped iOS 4.3.4. Nothing new in this update, except for Apple patching the JailbreakMe exploit. Jailbreakers and especially unlockers stay away from this update and save your 4.3.3 blobs NOW ( using TinyUmbrella ).
Products compatible with this software update:
  • iPhone 4 (GSM model)
  • iPhone 3GS
  • iPad 2
  • iPad
  • iPod touch (4th generation)
  • iPod touch (3rd generation)
Read More..

How to find the serial number of all your Apple hardware product

Summary


Learn how to find the serial number of your Apple hardware product.

Products Affected

iPhone, iPad, Mice and Trackpad, iSight, Portable Computers, AirPort, iPod, Displays, Xserve, Desktop Computers, Keyboards, Apple TV

If the product is with you and can start up

Depending on the product, you can find your serial number:
  • On the surface of the product
  • Within the products software (such as from the About This Mac window)
  • In iTunes (for products that sync with iTunes)
If the product is not with you or wont start up

Depending on the product, you can find your serial number:
  • On the surface of the product
  • In iTunes (for products that sync with iTunes)
  • On the original product packaging
  • On the original product receipt (or invoice)
Choose a product below for detailed information about finding the serial number.




Additional Information

Apple registration numbers and Apple hardware product serial numbers may sometimes contain the number "0" (zero), but not the letter "O".
Read More..

Wednesday, September 11, 2013

Apple iPhone 5 Announcement Live Blog

Apple Confirming Officially iPhone 5 Event On October 4th!

iPhone 4S / 5 Event To Be Streamed Live At Covent Garden Apple Store in London

Apple will be live streaming their October 4th iPhone Media Event at one of its stores in London for members from the press.
Click here to enlarge
(image via Apple)
The news comes from MacRumors – a blog dedicated to covering rumors related to Apple – in a post published recently where they cited a memo Apple sent to staff members at one of their Apple retail Stores in London.

Although Apple recently started live-streaming their events, this is the first time Apple is actually holding an event for it for members who cannot fly to California to attend it.


This live-streaming event will be held at the world’s largest Apple Store i.e. Covent Garden, London on October 4th and will be exclusive to members from the press. The Store will be closed at 3:30 PM on the day of the event in order to get things ready for 6:00 PM local time when the live streaming will begin.
Here is the message Apple sent to its team:
Hello Team,
As we begin to start a very exciting quarter in Apple Retail, I am pleased to let you know that our Covent Garden Store will be hosting a keynote streaming event next Tuesday 4th October. This event will be a press only event and currently we have no further details on what will be presented. The store will be closing at 3.30pm to accommodate this.
This is a really exciting event for our store and we are passionate about delivering an outstanding Covent Garden experience.
The iPhone Media Event was officially announced two days ago after months upon months of speculation. It is the first high-scale media event to be held at Apple’s own campus (instead of some place in San Francisco) at Apple Town Hall Auditorium, Cupertino, CA.

It is quite clear to us that this is the event where a new iPhone (or iPhones, according to Al Gore) and, reportedly, a new iPod touch will be announced. It has been reported that CEO Tim Cook will present the keynote, along with help from other Apple executives like Phil Schiller and Scott Forstall.


Once again, we repeat that the event will be held at 10 AM Pacific Time on Tuesday, October 4th. We will be covering the event as it happens, so stay tuned!

also


Apple iPhone 5 Announcement Live Blog
Read More..

iTunes 10 5 Releases by Apple



Click here to enlarge

Apple today released iTunes 10.5, a new version of its media manager that adds a number of improvements and official support for devices running iOS 5. The next major version of Apple’s iOS is coming out this week on Wednesday, October 12th, and iTunes 10.5 will be required to sync devices that will be upgraded to the new software. iTunes 10.5 also enables iTunes Match, a new music service by Apple based on iCloud; iTunes Match, however, will publicly launch in the United States only at the end of October


iTunes 10.5 was originally seeded to developers in June, when Apple also released the first beta version of iOS 5. Since then, we noted iTunes 10.5 included some minor graphical updates to the interface; this summer Apple also rewrote iTunes’ codebase to take advantage of Lion with full 64-bit support, and this new version of the app includes the changes we originally reported here. iTunes 10.5 also adds support for iCloud, Apple’s new cloud service that allows users to store digital purchases in the cloud, and re-download them at any time on any device. This functionality was previously activated as “beta” and called iTunes in the Cloud; as Apple notes, “iTunes in the Cloud is now part of iCloud”, but that doesn’t change the way songs have been able to be pushed across devices since last June. iCloud will also be officially launched on October 12th alongside iOS 5.

As we detailed in June with the release of “iTunes in the Cloud” as beta for iOS 4.3 and iTunes 10.3, iCloud support in iTunes allows users to re-download all previously purchased songs, TV shows, apps and books at no additional charge. In the new Purchased section of iTunes, users will find a link to browse previous downloads and re-download them at any time. Another option to automatically fetch all new downloads from any device and save them on a Mac or PC — called Automatic Downloads — is also enabled with iCloud on iTunes 10.5.

The ‘Purchased’ screen is a really handy feature to easily and quickly find a previous purchase and instantly download it or even download all of your previous purchases with just one click. The feature, which is also included in iOS 5, is part of Apple’s iCloud, which was unveiled at yesterday’s WWDC keynote. The ‘Purchased’ screen also gives you some fairly powerful tools to find the exact purchase you want, either from just searching, only displaying items not downloaded to your iTunes library or just list the purchases alphabetically.

Download iTunes v10.5:
Windows x32
Windows x64
Mac
Read More..

Sunday, September 8, 2013

Apple extends complimentary iCloud storage for MobileMe users until September 30th 2013

From: iCloud <noreply@icloud.com>
Date: October 5, 2012, 3:38:18 PM PDT
To: 9to5mac
Subject:Your complimentary iCloud storage upgrade has been extended at no charge
Reply-To:no-reply@apple.com

When you moved your MobileMe account to iCloud, we provided you with a complimentary storage upgrade beyond the standard 5GB that comes with an iCloud account to help you with the transition. Originally, this storage upgrade was set to expire on September 30, 2012.
As a thank you to our former MobileMe members, we will continue to provide you with this complimentary storage upgrade at no charge, for an additional year, until September 30, 2013. No action is required on your part. For complete details, please read this article.

iCloud Team
Read More..