"iTunes.app" to accept incoming network connections?

18,837

Solution 1

It's probably easiest to reinstall iTunes.

If the firewall does not remember your choice, then the digital signature (Code Signing) of iTunes is broken. By default, the OS X firewall accepts any software that was signed by Apple without even asking you. So: it should not have asked you. And once asked, it should be able to remember, based on the digital signature. A broken signature (for example caused by changing the contents of the iTunes.app package) will prevent all this.

(Did you by any chance manually change the iTunes icon the application somehow? Or did you install some plugins?)

You can validate the signature of your iTunes by copying the first line and paste it in Terminal:

codesign -vvv /Applications/iTunes.app/

/Applications/iTunes.app/: valid on disk
/Applications/iTunes.app/: satisfies its Designated Requirement

(More details at If Mac code signing is tampered with, what might fail?)

Solution 2

If you see

$ codesign -vvv /Applications/iTunes.app/
/Applications/iTunes.app/: a sealed resource is missing or invalid
/Applications/iTunes.app/Contents/Resources/English.lproj/iTunesDJSettings.nib/objects.xib: resource added

just delete the files that say "resource added" and verify against codesign again. Once it validates iTunes.app should not popup any more message.

If you wish to resign the thing yourself you can create a signing identity from http://developer.apple.com/mac/library/documentation/Security/Conceptual/CodeSigningGuide/Procedures/Procedures.html

However, I don't recommend it for iTunes, though I used it for other apps.

Solution 3

Just wanted to report that I faced a similar problem after updating iTunes with the Apple Updater and the solution suggested here worked. Go into the iTunes package and delete all of the files that this terminal command flags as a "resource added":

$ codesign -vvv /Applications/iTunes.app/

When you rerun the terminal command, it will indicate that iTunes.app now "satisfies its Designated Requirement" and the annoying popup should go away.

Note that I don't have any deep understand of why any of this works. Seems like Apple broke something minor in their last software update and the firewall noticed. For any power-Googlers with little experience in these things, make sure you always backup your files before mucking about with anything like this--for your work, those preferences might be important.

Solution 4

An easier approach if you want to avoid messing with the terminal, modifying packages or resigning apps is as follows:

  1. Download the iTunes installer (http://www.apple.com/itunes/download/).

  2. Move your current copy of the iTunes app from the Applications folder into the trash (but don't touch your preferences or other iTunes folders).

  3. Install a fresh copy of iTunes from the .dmg file you downloaded.

  4. Launch the fresh copy and see that everything is in place with no more annoying popups!

It's important to move the old app to the trash before you reinstall iTunes; if not, the offending files in the package do not get removed. Once you've confirmed this worked, go ahead and empty the trash.

Solution 5

If reinstalling worked then fine, but I just wanted to mention that in my experience if firewall Deny/Allow settings don't seem to stick it's because you're setting them in a non-admin account. I think in that case they then only stick for as long as you're logged in.

Perhaps reinstalling seemed to work because you then started iTunes in an admin account?

Just a thought.

Share:
18,837

Related videos on Youtube

cust0s
Author by

cust0s

Updated on September 17, 2022

Comments

  • cust0s
    cust0s over 1 year

    Every time I open iTunes I get the the following warning:

    Do you want the application "iTunes.app" to accept incoming network connections?

    Clicking Deny may limit the application's behavior. This setting can be changed in the Firewall pane of Security preferences.

    warning box

    I always click "Allow" but it still pops up.

    I set the OS X firewall to allow incoming connections for iTunes.

    Any suggestions on how to fix this?

    • Arjan
      Arjan over 13 years
      @Spiff, any chance you know if folks having trouble with iTunes 10 have replaced the application icon?
    • Spiff
      Spiff over 13 years
      @Arjan I ran into this problem with iTunes 10 and I had not replaced the application icon. I hadn't tweaked the iTunes.app bundle at all. I'm guessing it was an installer error. I don't recall the exact names of the extra files I had to delete, but I believe they were .nib 's and .xib 's.
    • Arjan
      Arjan over 13 years
      At Mac OS X Hints someone writes changing the iTunes icon gets one into trouble as well. (That is: when changing it in the application bundle itself; changing it the normal way might not affect the signature, but I'm not sure.)
  • Arjan
    Arjan over 14 years
    Hmmm, good point. Though, for Apple software, the signature should be there right after installation; the firewall does not need to add a signature itself. And can one change firewall settings without entering an admin password? (Too bad I posted the example command line after the question asker had re-installed iTunes. If anyone comes to this question at some later time: please run the codesign command and post your results here.)
  • X-Istence
    X-Istence over 14 years
    I run as a non-admin user, and when I click allow or disallow I am asked for my administrator username/password to make modifications to the firewall. If you don't give an admin username or password you effectively block the program from getting outside connections.
  • emmby
    emmby over 13 years
    I used this approach to fix a longstanding issue I've had with xTorrent. I just deleted the reported files as specified, and codesign then reported success any xtorrent stopped popping up the dialog. /Applications/Xtorrent.app/: a sealed resource is missing or invalid /Applications/Xtorrent.app/Contents/Resources/.CoreStrings.E‌​ncoded: resource added /Applications/Xtorrent.app/Contents/Resources/.CoreStringsA.‌​Encoded: resource added
  • Paul Hargreaves
    Paul Hargreaves over 12 years
    Hurrah. This was exactly what I needed to do - it seems that an older copy of the iTunesHelper.app was left in the resource area and the newer versions of iTunes have the binary in the right place. Deleting these files makes iTunes happy again. Thank you!
  • Arjan
    Arjan over 11 years
  • Arjan
    Arjan over 11 years
  • Wildcard
    Wildcard over 7 years
    If you can't delete the iTunes package itself (because it's "required by the OS") just "Show Package Contents" and delete the "Contents" directory. Then run the downloaded installer. This worked for me on El Capitan.