FW hardening/tunning

Hello,
recently I tried to tune my iptables with help of internet but I can reproduce dropping of bad tcp packets with bad tcp flags.
I am trying to send flags by nmap or hping but it doesnt get blocked. Even I can do XMAS or other stuff, and still no log about this in /var/log/messages.
Can somebody help me to reproduce one of this bad packets? Or can somebody check if the chains are in right order or if there is any problem?
I will appreciate also if somebody will have any other hardening hint too.
Thank you
*filter
:INPUT DROP [0:0]
:FORWARD DROP [0:0]
:OUTPUT DROP [0:0]
-N bad_packets
-N bad_tcp_packets
-N icmp_packets
-N udp_inbound
-N udp_outbound
-N tcp_inbound
-N tcp_outbound
# Drop any invalid packet that could not be identified
-A bad_packets -p ALL -m state --state INVALID -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "Invalid packet: "
-A bad_packets -p ALL -m state --state INVALID -j DROP
# Then check the tcp packets for additional problems
-A bad_packets -p tcp -j bad_tcp_packets
# All good, so return
-A bad_packets -p ALL -j RETURN
# All tcp packets will traverse this chain.
-A bad_tcp_packets -p tcp ! --syn -m state --state NEW -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "New not syn: "
-A bad_tcp_packets -p tcp ! --syn -m state --state NEW -j DROP
-A bad_tcp_packets -p tcp -f -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "TCP fragment: "
-A bad_tcp_packets -p tcp -f -j DROP
-A bad_tcp_packets -p tcp --tcp-flags ALL NONE -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ALL NONE Ss: "
-A bad_tcp_packets -p tcp --tcp-flags ALL NONE -j DROP
-A bad_tcp_packets -p tcp --tcp-flags ALL ALL -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ALL ALL Ss: "
-A bad_tcp_packets -p tcp --tcp-flags ALL ALL -j DROP
-A bad_tcp_packets -p tcp --tcp-flags ALL FIN,URG,PSH -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ALL FIN,URG,PSH Ss: "
-A bad_tcp_packets -p tcp --tcp-flags ALL FIN,URG,PSH -j DROP
-A bad_tcp_packets -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ALL SYN,RST,ACK,FIN,URG Ss: "
-A bad_tcp_packets -p tcp --tcp-flags ALL SYN,RST,ACK,FIN,URG -j DROP
-A bad_tcp_packets -p tcp --tcp-flags SYN,RST SYN,RST -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "SYN,RST SYN,RST Ss: "
-A bad_tcp_packets -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
-A bad_tcp_packets -p tcp --tcp-flags SYN,FIN SYN,FIN -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "SYN,FIN SYN,FIN Ss: "
-A bad_tcp_packets -p tcp --tcp-flags SYN,FIN SYN,FIN -j DROP
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "FIN,SYN,URG NONE Ss: "
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG NONE -j DROP
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,SYN,RST,PSH,ACK,URG -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "FIN,SYN,RST ACK,URG Ss: "
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,SYN,RST,PSH,ACK,URG -j DROP
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "FIN,SYN,RST PSH,URG Ss: "
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN,RST,PSH,ACK,URG FIN,PSH,URG -j DROP
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN FIN,SYN -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "FIN,SYN FIN,SYN Ss: "
-A bad_tcp_packets -p tcp --tcp-flags FIN,SYN FIN,SYN -j DROP
-A bad_tcp_packets -p tcp --tcp-flags FIN,RST FIN,RST -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "FIN,RST FIN,RST Ss: "
-A bad_tcp_packets -p tcp --tcp-flags FIN,RST FIN,RST -j DROP
-A bad_tcp_packets -p tcp --tcp-flags FIN,ACK FIN -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "FIN,ACK FIN Ss: "
-A bad_tcp_packets -p tcp --tcp-flags FIN,ACK FIN -j DROP
-A bad_tcp_packets -p tcp --tcp-flags PSH,ACK PSH -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "PSH,ACK PSH Ss: "
-A bad_tcp_packets -p tcp --tcp-flags PSH,ACK PSH -j DROP
-A bad_tcp_packets -p tcp --tcp-flags ACK,URG URG -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ACK,URG URG Ss: "
-A bad_tcp_packets -p tcp --tcp-flags ACK,URG URG -j DROP
-A bad_tcp_packets -p tcp --tcp-flags ACK,FIN FIN -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ACK,FIN FIN Ss: "
-A bad_tcp_packets -p tcp --tcp-flags ACK,FIN FIN -j DROP
# All good, so return
-A bad_tcp_packets -p tcp -j RETURN
# icmp_packets chain
# ICMP packets should fit in a Layer 2 frame, thus they should never be fragmented
-A icmp_packets --fragment -p ICMP -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "ICMP Fragment: "
-A icmp_packets --fragment -p ICMP -j DROP
# Echo to allow your system to be pinged.
-A icmp_packets -p ICMP --icmp-type 8 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "Ping detected: "
-A icmp_packets -p ICMP --icmp-type 8 -j ACCEPT
# Echo drop
#-A icmp_packets -p ICMP --icmp-type 8 -j DROP
# Time Exceeded
-A icmp_packets -p ICMP --icmp-type 11 -j ACCEPT
# Not matched, so return so it will be logged
-A icmp_packets -p ICMP -j RETURN
#udp_inbound chain
#udp windows drop
-A udp_inbound -p UDP --destination-port 137 -j DROP
-A udp_inbound -p UDP --destination-port 138 -j DROP
# Network Time Protocol (NTP) Server
#-A udp_inbound -p UDP --destination-port 123 -j ACCEPT
# Not matched, so return for logging
-A udp_inbound -p UDP -j RETURN
# udp_outbound chain
# No match, so ACCEPT
-A udp_outbound -p UDP -j ACCEPT
# tcp_inbound chain
# Services
# Email Server (SMTP)
-A tcp_inbound -p TCP --destination-port 25 -j ACCEPT
# HTTP
-A tcp_inbound -p TCP --destination-port 80 -j ACCEPT
# Email Server (POP3)
-A tcp_inbound -p TCP --destination-port 110 -j ACCEPT
# Email Server (IMAP4)
-A tcp_inbound -p TCP --destination-port 143 -j ACCEPT
# HTTPS (Secure Web Server)
-A tcp_inbound -p TCP --destination-port 443 -j ACCEPT
# Email Server (SMTPS)
-A tcp_inbound -p TCP --destination-port 465 -j ACCEPT
# Email Server (SMTP)
-A tcp_inbound -p TCP --destination-port 587 -j ACCEPT
# SSL Email Server (IMAP4S)
-A tcp_inbound -p TCP --destination-port 993 -j ACCEPT
# SSL Email Server (POP3S)
-A tcp_inbound -p TCP --destination-port 995 -j ACCEPT
# Zimbra admin (zimbra)
-A tcp_inbound -p TCP -s xx.xx.xx.xx --destination-port 7071 -j ACCEPT
# Not matched, so return so it will be logged
-A tcp_inbound -p TCP -j RETURN
# tcp_outbound chain
# No match, so ACCEPT
-A tcp_outbound -p TCP -j ACCEPT
# INPUT Chain
# Allow all on localhost interface
-A INPUT -p ALL -i lo -j ACCEPT
# Drop bad packets
-A INPUT -p ALL -d 224.0.0.1 -j DROP
-A INPUT -p ALL -j bad_packets
-A INPUT -p ALL -i eth0 -s 10.0.0.0/8 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 10: "
-A INPUT -p ALL -i eth0 -s 10.0.0.0/8 -j DROP
-A INPUT -p ALL -i eth0 -s 172.16.0.0/12 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 172: "
-A INPUT -p ALL -i eth0 -s 172.16.0.0/12 -j DROP
-A INPUT -p ALL -i eth0 -s 192.168.0.0/16 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 192: "
-A INPUT -p ALL -i eth0 -s 192.168.0.0/16 -j DROP
-A INPUT -p ALL -i eth0 -s 224.0.0.0/4 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 224: "
-A INPUT -p ALL -i eth0 -s 224.0.0.0/4 -j DROP
#-A INPUT -p ALL -i eth0 -d 224.0.0.0/4 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 224: "
#-A INPUT -p ALL -i eth0 -d 224.0.0.0/4 -j DROP
-A INPUT -p ALL -i eth0 -s 240.0.0.0/5 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 240: "
-A INPUT -p ALL -i eth0 -s 240.0.0.0/5 -j DROP
#-A INPUT -p ALL -i eth0 -s 127.0.0.0/8 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 127: "
#-A INPUT -p ALL -i eth0 -s 127.0.0.0/8 -j DROP
-A INPUT -p ALL -i eth0 -d 127.0.0.0/8 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 127: "
-A INPUT -p ALL -i eth0 -d 127.0.0.0/8 -j DROP
-A INPUT -p ALL -i eth0 -s 169.254.0.0/16 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 169: "
-A INPUT -p ALL -i eth0 -s 169.254.0.0/16 -j DROP
#-A INPUT -p ALL -i eth0 -s 0.0.0.0/8 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 0: "
-A INPUT -p ALL -i eth0 -s 0.0.0.0/8 -j DROP
-A INPUT -p ALL -i eth0 -s 255.255.255.255/32 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 255: "
-A INPUT -p ALL -i eth0 -s 255.255.255.255/32 -j DROP
#-A INPUT -p ALL -i eth0 -d 255.255.255.255 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 255: "
#-A INPUT -p ALL -i eth0 -d 255.255.255.255 -j DROP
-A INPUT -p ALL -i eth0 -s 168.254.0.0/16 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 168: "
-A INPUT -p ALL -i eth0 -s 168.254.0.0/16 -j DROP
-A INPUT -p ALL -i eth0 -s 248.0.0.0/5 -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "IP spoof 248: "
-A INPUT -p ALL -i eth0 -s 248.0.0.0/5 -j DROP
# Accept Established Connections
-A INPUT -p ALL -i eth0 -m state --state ESTABLISHED,RELATED -j ACCEPT
# Route the rest to the appropriate user chain
-A INPUT -p TCP -i eth0 -j tcp_inbound
-A INPUT -p UDP -i eth0 -j udp_inbound
-A INPUT -p ICMP -i eth0 -j icmp_packets
# Drop without logging broadcasts that get this far.
-A INPUT -m pkttype --pkt-type broadcast -j DROP
# Log packets that still don't match
-A INPUT -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "INPUT packet died: "
# OUTPUT Chain
# Invalid icmp packets need to be dropped to prevent a possible exploit
-A OUTPUT -m state -p icmp --state INVALID -j DROP
# Localhost
-A OUTPUT -p ALL -s 127.0.0.1 -j ACCEPT
-A OUTPUT -p ALL -o lo -j ACCEPT
# To internet
-A OUTPUT -p ALL -o eth0 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
# Log packets that still don't match
-A OUTPUT -m limit --limit 5/m --limit-burst 7 -j LOG --log-prefix "OUTPUT packet died: "
COMMIT

Have a look for the packet drops in "dmesg" instead. Also have a look here for a way to make your chains logging more transparent.

Similar Messages

  • How can you get your data back on i tunes

    Hi i am Justin,
    I have i phone and i have i tunes here is my problom. last night i formatted my HP windows 7 computer and i backed up my pictures and backed up i tunes witch i thoght i did becasue i backed it up on my external 500 MB hard drive and with out making a folder and c oping i tunes i only backed up library and before the format i went to edit, preferences and adavaned in i tunes (sorry about the bad spelling) becasue apples's step by step i read and saw the pictures were to go and i thought i can back up i tunes that way. My phone has 333 songs all my pictures apps and contacts and there is no way to re copy from the phone back in to i tunes i do not use i cloud becasue (one i do not want to pay for more space) and 2 the free version tells me i do not have enough space to back it up so i am worried one sync i will lose all my info. these songs are from cd's i have and off the Internet before the courts stopped Napster and Lime Wire. Sos what should i do just unstalli tunes and leave my computer as a re charging stastion? or is there any secret way to get all my things back then this time i can make a folder and do it right in case the next time i have to re format my drive from a problems or need to what is the best case here?
    Justin

    Sync is only oneway, from PC to your device. Unless you have the music on your PC, iTunes is going to wipe out what you have on your device if you are syncing to a new library.
    You can only transfer Purchased music over to Itunes on your PC.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer
    http://support.apple.com/kb/HT1848
    As for you own music, you may have to use a third party software. A good Free one is called Sharepod which you can download from Download.com here:
    http://download.cnet.com/SharePod/3000-2141_4-10794489.html?tag=mncol;2

  • I tunes downloads to wrong drive

    Hi guys some help please. When I download the latest I tunes 9.1.1 is wants to install to drice "G" which I don't have I want it to download on "C". Any ideas?

    Hey there,
    One thing you should check is where your iTunes searches for your iTunes folder. Head to iTunes and then Preferences. When the window pops up, head over to the Advanced tab. Near the top of the tab, you will see where iTunes currently locates your Music folder. Click the Change button and then direct it to where the folder is located on your External drive. See if that helps.
    B-rock

  • My i tunes account for my pc and i phone wont let me update my apps or download any new ones can some one tell me why?

    my i tunes account for both my pc and i phone wont let me update or download any apps.

    no none errors it started after i installed the new ios 5.1 on my i phone i wait ages ans it says cannot conect to the i tunes store. and on the pc when i go to update them it says service timed out after about ten mins of waiting

  • Secure link to I tunes is not working please help

    I have been gaining access to I Tunes fine up to last Wednesday. I now cannot access my account on I tunes, I can surf the shop fine and look at it contents fine but as soon as I try to buy anything I can't log in to my account. I cannot even create a new account.
    I'm in contact with apple via e mail but everything they suggest just isn't working. Does any one have any ideas of what I can try as I'm at a dead end now and I have credit on my account.
    Many Thanks

    I found the solution! My WAN setting on my router was set at 1458 and should have been 1400.

  • I tunes will not open - have read ALOT but still can't get it going

    How much is Apple losong out to what appears to be a fairly common but complicated problem. Not sure if it all started the day I upgraded to i-tunes 9 or when I renewed my Norton Anti Virus. It was working for months even when I had Norton which i have since removed using the Norton Removal Tool. When I first click on it it tries to open and I get a message saying that my Quick Time software is outdated but BEFORE I can click on that another box opens over top that says "i-tunes has stopped working" "a problem has caused the program to stop working correctly. Windows will close he problem and notify you if a solution is found"
    If i try again , nothing happens at all. When I go to processes I can see where it appears briefly maybe 2-3 seconds then disappears.
    I have tried:
    Making another user account and opening I-tunes
    Removing my Norton anti virus
    Uninstalling and re-installing i-tunes and quick time both together and separately....many many times
    restoring previous version of i-tunes
    I get the same message if i try to open just quicktime.
    My i -tunes library itself will also not open.
    Please tell me where to go from here
    I am running a newer (3 months old) HP with Windows 7 64 bit
    IDEAS???
    Rob.

    Excellent news, Rob! Glad you're up and running again.
    Any idea as to how it got this way? I am thinking of re-installing my Norton since it has worked well for me for the last few years and I an not exactly sure if that was the problem or if was a Windows 7 thing?
    I reckon Norton and Windows 7 were innocent parties here. Some other application dumped a couple of boatloads of QuickTime componentry in your sysWOW64. (Older versions of codec packs, video converter software, other file converter software, and media players that offer the opportunity to use quicktime files "without installing QuickTime" are the usual culprits here, but some games might do this too.) That might go unnoticed so long as that componentry matches the existing version of QuickTime software that you have installed on the PC ... but things turn to custard when you have to update your QuickTime version, and the versions of the componentry in /sysWOW64/ no longer match your "QuickTime proper". (On 32-bit systems, the same sort of thing happens, with the difference being that the "foreign" QuickTime componentry would typically be lurking down in the system32 folder.)
    So, we pretty much get cases of this sort of thing showing up constantly at the forums, with a big pulse in reports happening after any QuickTime version update. (It produces a significant proportion of the "iTunes has encountered a problem" and "iTunes has stopped working" messages that we get reported here.) You were really unlucky in that you got a rarer version of the possible error messages ... so there's not as much relevant troubleshooting advice available on the web, which makes researching what could possibly be going wrong for you considerably harder than it is for folk with the more common versions of the error messages.

  • I have 3 iTunes accounts which I had set up each time I bought a device not realising they all linked up (blonde!!). Can I consolidate them into one account without losing tunes,pics etc??

    I have 3 iTunes accounts which I had set up each time I got a new device not realising I should use the same one. Is there a way to consolidate the accounts without losing tunes etc as at the moment my iPad, new iPhone and iPod are all getting different downloads : (

    It's impossible to merge two iTunes accounts

  • How to use one I-tunes library with multiple windows users (family) on 1 pc

    On our family pc we log in with different accounts. We want to use I-Tunes but all have the same library. I tried to create a library not in the users directory, but in the All Users folder that is accessible for everyone. However, when I import the music in the library for one user and set the same location for another user, I-tunes does not recognize the library. So everyone has to create it's own library.
    What are the best practices to overcome this?

    Keep in mind that what you have done now is you have multiple iTunes libraries accessing the same media folder. Meaning, that each account can have their own ratings, playlists, etc. but more importantly, each account does NOT know what the other account does, so if your daughter adds a CD to her account, it will go into the shared folder, but it will NOT automatically go into your wife's iTunes library. She would have to add it manually. Likewise, if one account deletes music from their library and tells iTunes to remove it to the trash, the other accounts will not know and iTunes will still try to access the file from the shared location even though the file is now trashed.
    Each account has their own database files (.itl files in the iTunes folder) which stores this stuff.
    If you want to have everyone use the exact same library which means the same ratings, playlists, etc. then you need to move the database files into that same location and set each iTunes account to read the same data.
    How to open an alternate iTunes Library file or create a new one
    http://docs.info.apple.com/article.html?artnum=304447
    Patrick

  • How to delete the loadings list in the itunes store (1000 tunes are downloading with no reason)

    Hi
    I switched from an iPhone 4 to an iPhone 5c and now the itunes store app wants to download 1000 tunes (I guess it cannot try more) and it blocks.
    I don't know how to delete the list (not one by one of course .
    If someone has any clue to help
    Thanks

    Hi Francis,
    Check the BADI "TRIP_WEB_CHECK" method "USER_CHECK_GENERAL_DATA".
    Here based on the schema you can modify the "estimated cost" field.
    Hope it helps.
    Regards,
    Jyothi

  • My family uses a single lap-top as our main internet connection and when we synch our respective I-pods, our I-tunes account seems to wipe-out our playlists, even though we have tried to create separate I-tune accounts.  Help!!

    My family uses a single lap-top as our home computer and several of us have i-pods that we like to synch, using I-tunes.  Although we've tried to create separate I-tune accounts, our i-tunes playlists are getting wiped out when one of us deletes songs on our I-pod and it seems as though I-tunes is not distinguishing our distinct accounts and all i-pods are being synched to reflect the latest i-pod anyone makes on their respective account.  It appears as though our distinct I-tune accounts are not being loaded on our lap-top when we sign in and unfortunately, when we're in I-tunes, there is nothing to indicate what account is on the screen.  For all the glowing appraisals apple-related products usually receive, we are finding i-tunes and its interface with our respective i-pods to be a very, very frustrating experience. 
    Can anyone shed some light on this for a family of non-techies?  Thx 
    Pegger64  

    You need to create separate Windows user accounts if you want to seperate the behaviour of iTunes for each user. That also means separate iTunes libraries for each user.
    Windows is a multi-user operating system but you are not using it properly. iTunes is not a multi-user application. No application is. You can't expect it to treat different users differently when they are all using the same computer user account.
    Do you understand what I mean?

  • In previous versions of i Tunes you could highlight a song in your library and there would be a genious list on the right side of the screen showing songs like the one highlighted in the library. Now I do not get that list. Is there a way to get this back

    In previous versions of i Tunes I could highlight a song in my library and a genious list would show on the right side of the screen listing songs that were like the one highlighted. Now I do not get that list. Is there a way to get that back?

    Hi again Bob,
    I believe I've found the feature you were speaking about now. Information on the "In the Store" feature of iTunes can be found here:
    Apple - iTunes - Inside iTunes - Using In the Store from within your iTunes Library.
    http://www.apple.com/itunes/inside-itunes/2013/01/using-in-the-store-from-within -your-itunes-library.html
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • Why does Firefox not allow me to access podcasts by clicking on the "view in i-tunes" link from a website?

    When I click on "view in i-tunes," Firefox starts opening multiple tabs at a rate of 4 or 5 per second. The only way to stop it is to turn off the computer & reboot. How can I fix this?

    See this support article. <br />
    https://support.mozilla.com/en-US/kb/Firefox%20keeps%20opening%20many%20tabs%20or%20windows

  • How can I see previously stored tunes no longer on my computer? Where are iCloud audio files?

    Maybe my question has an answer too "obvious" for me to see it.  But lately I've become aware of tunes that, for one reason or another, are not showing in my iMac's iTunes program. I went to System Preferences and clicked on "iCloud."  Immediately, I saw how to check iCloud for the following files and documents: Mail, Contacts, Calendar, Notes, Safari (not sure what this category could be for--seeing what was on the web at some prior point in history?), Photo Stream, Documents & Data, Back to My Mac, Find My Mac.
    In other words, going to iCloud appears to reveal categories for all of your iCloud content EXCEPT your music files.  I know about iTunes Match, and I think I like it, now that I've gotten used to a few of its quirks.  But certainly there are times when the owner of downloaded, commercial audio files (i.e. Tunes) will not have them on his computer.  And certainly there must be a way for me to see what I've previously stored in the Cloud--if only to remind myself of the music I've purchased and have available to me.
    I may be missing something about the whole iCloud concept.  Is there a way for me to see tunes I've previously stored in the iCloud but no longer have on my computer?  (I'm always careful not to delete tunes from my iTunes program unless I see 2 or more identical files appearing on my computer).
    Thanks for any directions to the iCloud musical holdings / archives--or clarification of any misunderstandings.
    Cap
    (I see that I'm currently running OS 10.8.2.  I have only 500 gigs of memory, and my music collection is so larg, I'm almost dependent on being able to access songs in the iCloud.  Next time, I'll certainly pony up for the largest memory Apple offers on an iMac.)

    They are not showing up in Lightroom at all. I already deleted them.
    When I try to import them again into Lightroom it wants to add another 2012 folder to wherever I am trying to insert them and then it does the month/day folder when it already has the month folder it should automatically go into and not be adding a seperate 2012 folder first.
    I can't even get it to do the above right now. Now all it does is it wants to make this seperate 2012 folder with the month/day folders but has little boxes beside each folder showing that there are no images to import. The images do show up on the import screen but they are all darkened and unchecked. When I click the proper folder to import them they come on bright and have little boxes checked, but that lasts for less than a second before it decides they are not new. They are new images, I deleted them all out of Lightroom, and probably missed deleting some through Lightroom but instead deleted them straight from the folder outside of Lightroom. This is what is probably causing me such grief and I have found nothing in my searches to tell me how to correct this. *sigh*

  • Error when I Tunes starts with Ipod Connected

    When ever I launch I tunes with I Pod Connected I get the folowwing:
    A "memory Card Manager" window appears on screen with the error message "Failed to locate supported File Type or there are no photos fond on the device"
    I running Ipod on a Dell computer with Windows XP Home
    Whats the story and how do I correct this?

    Check out this other thread

  • Today I tunes recomended I update my computer. once i did my Itunes no longer works and i recieve an error message

    After updating I tunes I now receive this error message .
    "This Application has failed to start because MSVCR80.dll was not found re-installing the application may fix this procedure."
    I have uninstalled  I Tunes and re-installed it, it now also says that my library is not recognizable because it is an older version of I tunes.
    What do I need to to do to repair this?

    See the user tip: https://discussions.apple.com/docs/DOC-6562

Maybe you are looking for