Someone got into my Apple account. Read description for more info.

Recently, someone gained access to my Hotmail account (I don't know how, I'm a pretty careful person, especially around computers) and used it to reset my Apple account password. I always just changed it back (thank God he/she was too stupid to change my Hotmail password), but when I realized they got access through my Hotmail, I reset all my passwords associated with the account. This worked and I haven't had any trouble since I did so. However, he/she continuously tries to reset my Apple password and my account gets flooded with Apple ID reset requests all the time. Is there any way to make it stop? It's getting really annoying.
Thanks,
Chris

Call AppleCare & ask for account security. Also, look at this:
http://support.apple.com/kb/HT5570

Similar Messages

  • HT201303 Help! Someone hacked into my apple account and and made purchases, what should I do?

    Someone hacked into my apple itunes account and made purchases, and changed the address and credit card information.  What should I do first?
    Thanks!

    Change your password.
    Report the incident to Apple :  iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html
    If any charges were made to your credit card you should report them to your credit card company.

  • Someone got into my Apple ID?

    Hiya,
    So I just had a bit of an unpleasant surprise... I checked my e-mails and saw that a new folder had been created under my Deleted folder - a folder named 'POP', which I definitely did not create.
    A message popped up on the bottom of my Hotmail account which informed me that "Your messages are in your POP folder! Some other program is set to download and delete your messages from Outlook. Just in case this was an accident, we've put them in a special POP folder."
    I have not downloaded any program to download my messages. I only ever check it when I am connected through a browser - and usually only vary between my phone, iPad, and my computer.
    When I looked in the POP folder, there was the standard 'Password Reset' e-mail, followed by a confirmation that my password had been changed. I tried to log in with my original password; no joy.
    I have now reset the password to my Apple ID - and to my e-mail address. But I don't really know what to think. Is there anything else I should be doing? Aside from installing Norton onto my iPad ASAP? Was my account hacked? Or do I just have some sort of a technological hiccup somewhere?
    Also, I'm quite sorry for whoever hacked into my account (if they did); I don't buy any apps and have no payment things on my iTunes for them to steal... I am also a student, so whatever I have is pretty meager.
    Thankful for any contributions/advice you can give me!

    So since I have never purchased anything through the appstore, I should be OK - right? *touches wood*
    I've changed literally all of my passwords now.

  • Someone hacked into my apple account

    my computer cant sync my ipod touch with nothing it cant back up either and ithink that someone hacked my account

    Change your password.
    Report the incident to Apple :  iTunes Customer Service Contact - http://www.apple.com/support/itunes/contact.html
    If any charges were made to your credit card you should report them to your credit card company.

  • I have got into my apple account but none of my previous music is there

    How have accessed my old apple id but none of my music is it on there why is this?

    None of your music is where?  Where are you looking?

  • How to make a switch loop? ( Read inside for more info.)

    I'm working on a project using switch and I want to know how to make it loop/ or is it possible to do so with for or while. If anyone could help me I'd be very thankfull.
    Since my switch is too long I'll make an example:
    System.out.println();
    System.out.println();
    System.out.println("Zgjedhni operacionin: ");
    System.out.println("1. Mbledhja A + B\n");
    System.out.println("2. Zbritja A - B\n");
    optionNumber = sc.nextInt();
    switch ( optionNumber ) {               
                        case 1: System.out.println("\nMbledhja A + B: ");
                              s11 = (a11+b11);
                              s12 = (a12+b12);
                              s13 = (a13+b13);
                              s21 = (a21+b21);
                              s22 = (a22+b22);
                              s23 = (a23+b23);
                              s31 = (a31+b31);
                              s32 = (a32+b32);
                              s33 = (a33+b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
                        case 2: System.out.println("\nZbritja A - B: ");
                              s11 = (a11-b11);
                              s12 = (a12-b12);
                              s13 = (a13-b13);
                              s21 = (a21-b21);
                              s22 = (a22-b22);
                              s23 = (a23-b23);
                              s31 = (a31-b31);
                              s32 = (a32-b32);
                              s33 = (a33-b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;I've got the variables declared of course :P so now what I want after doing case 1 or case 2 or any other cases ( 9 in my program) I want to make a question if I want to do another operation and start again from beginning :$/

    Solved it.
    do {
    System.out.println();
    System.out.println();
    System.out.println("Zgjedhni operacionin: ");
    System.out.println("1. Mbledhja A + B\n");
    System.out.println("2. Zbritja A - B\n");
    optionNumber = sc.nextInt();
    switch ( optionNumber ) {               
                        case 1: System.out.println("\nMbledhja A + B: ");
                              s11 = (a11+b11);
                              s12 = (a12+b12);
                              s13 = (a13+b13);
                              s21 = (a21+b21);
                              s22 = (a22+b22);
                              s23 = (a23+b23);
                              s31 = (a31+b31);
                              s32 = (a32+b32);
                              s33 = (a33+b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
                        case 2: System.out.println("\nZbritja A - B: ");
                              s11 = (a11-b11);
                              s12 = (a12-b12);
                              s13 = (a13-b13);
                              s21 = (a21-b21);
                              s22 = (a22-b22);
                              s23 = (a23-b23);
                              s31 = (a31-b31);
                              s32 = (a32-b32);
                              s33 = (a33-b33);
                              System.out.println( s11 + " - " + s12 + " - " + s13 );
                              System.out.println( s21 + " - " + s22 + " - " + s23 );
                              System.out.println( s31 + " - " + s32 + " - " + s33 );
                              break;
    System.out.println("Doni te beni edhe nje operacion?: ");
    vazhdo = sc.next().equalsIgnoreCase("PO");
    while ( vazhdo == true);Sorry for double posting can't see an edit button :$

  • Which JDK doc to read up for more info on array ?

    The title says it all. I need to know what other properties does an array has. For instance, we can use "x_array.length" to find out no.of elements in x_array. Is there a property to tell how many dimension does the array has ? The ".length" only gives size of one dimension. To find the size of another dimension, I need to do something as below :-
    int two_D_array[][] = new int[20][30];
    out.printf("1) two_D_array size %d\n", two_D_array.length);
    out.printf("2) two_D_array size %d\n", two_D_array[0].length);
    Output :
    1) two_D_array size 20
    2) two_D_array size 30
    Is there any better way to improve the above codes ? Thank you.

    TKH wrote:
    The title says it all. I need to know what other properties does an array has. That's easy. There are none ;)
    Is there a property to tell how many dimension does the array has ? The ".length" only gives size of one dimension. To find the size of another dimension, I need to do something as below :-
    Nope, you can't know. Or rather you have to know when declaring the array so there's no way to change it on the fly.
    As a result there's no need to know...
    Something like
    int[] arr = getIntArr();
    private int[] getIntArr() {
        return new int[1][2][3][4][5] {};
    }won't even compile.

  • I just got a new iphone 4 for att and my friend installed the sim card in it for me. the imessage function isnt connecting with the my cell number. a while back i had logged into my apple account on someone elses cell phone and their number keeps showing.

    i just got a new iphone 4 for att and my friend installed the sim card in it for me. the imessage function isnt connecting with the my cell number. a while back i had logged into my apple account on someone elses cell phone and their number keeps showing. when i try to just select my number to send and recieve imessages from it will not show up. i can send and recieve regular text but not pictures or imessage. i have tried logging off and restarting and nothing has worked.help please!!

    Did you remove your account information from the other person's iPhone?

  • Someone got into my account and changed email and security questions

    Someone got into my account and changed email and security questions and they ask for them but i do not know them and i just put 40 dollars on there
    <Re-Titled By Host>

    iTunes Store- What to do if your account has been compromised
    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • HT204088 How on earth did someone hack into my iTunes account and charge my visa/debit card? I didn't know until I got my bank statement with a fake phone # to call iTunes has this happened to anyone else?

    How on earth does someone hack into my iTunes account and charge my visa/debit card? I got no emails from iTunes, so I know it's not them. This has happened twice to me and it's after I take out my credit information. I found out because of a bounced check, plus my bank statement had all the charges on it. They start small with just a few dollars but they do it every day sometimes twice a day. Then next to where they tell you who charged it, it says iTunes with a bogus phone# to call? In total they stole $224 from me. I was lucky my bank refunded the money stollen. Has this happened to anyone else?

    People get their accounts hacked all the time. It's unfortunate, but true. To prevent this in the future, you need to:
    - choose a good password, with a mix of upper and lowercase letter and numbers, that someone wouldn't be able to guess by stalking you on social media sites
    - be aware of surroundings when entering a password, to be sure nobody's looking over your shoulder
    - be cautious of what you do on open wifi networks (ie, networks that do not require a password to join)
    - use a different password on each site
    - use a password manager so you don't have to remember all those different passwords

  • I'm trying to update my iPhone apps but cannot log into my apple account from my phone!!!

    Why can't I log into my Apple account from my iPhone?  My phone shows two apps needing updates and I've tried five times to log in.  I KNOW I'm using the right password and username, and can log in via computer just fine, but cannot log in to update my apps!  What's going on???

    It appears that the iTunes store is down right now.
    https://discussions.apple.com/thread/4163441?tstart=0
    This is the thread where the discussion got started about this.  Add your location to this thread.

  • HT4865 Will I be notified in anyway if someone logs into my iCloud account?

    Will I be notified in anyway if someone logs into my iCloud account?  I was wondering if I would receive an email or notification on my device.

    Welcome to the Apple community.
    Not if they log into iCloud, but you will if they use your ID for messages or FaceTime.

  • I am trying to set up iCloud keychain, but it keeps sending the verification code to my land line, even tho I have gone into my apple account and changed to my mobile phone

    I am trying to set up Icloud keychain, but it keeps sending the verification code to my land line (which I guess I entered back when I first got my MacBook).  I have gone into my apple account and changed the # to my mobile phone, but it continued to send it to the land line.  Probably is something simple, but I am not a techy!! 

    Hi,
    As regardss to the iChat and iChat Sharing categorisation you have used.
    In iChat 6 (lion) and Messages (Mountain Lion) the apps login to AIM and to Me.com
    The Login to Me.com allows AIM to verify the password to the iCloud issued names (@me.com and @iCloud.com)
    This "Dual" login also prevents the newer iCloud issued name from using this site
    (it has extra Privacy settings that iChat can't access for your AIM and Aim valid Accounts)
    Ignoring the @mac.com and MobileMe entries in the Add Account Screen in iChat and using the AIM one does not get around this issue.
    AIM and @mac.com names still work in older versions of iChat.
    The short answer is that iCloud issued Apple IDs do not work in iChat 5 or Earlier.
    10:12 PM      Friday; February 15, 2013
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Mountain Lion 10.8.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Why can't i connect to my iphone after updating to 7.1.1? i don't even get the screen that lets me login into my apple account??? plz help my phone was stolen and through help of the police i recovered it and now i can't access my phone

    why can't i connect to my iphone after updating to 7.1.1? i don't even get the screen that lets me login into my apple account??? plz help my phone was stolen and through help of the police i recovered it and now i can't access my phone

    You must have had find my iPhone on, or it was locked by your phone carrier.
    Call your our cell carrier first.
    then log on to a computer to iCloud to erase your iPhone.  
    NOW... You will be able to setup with a backup.

  • HT5624 Restore back up of my iPhone-password not recognised. After restore, itunes can not restore because it says the password is incorrect. But I can sign into my apple account with the password.

    Restore back up of my iPhone-password not recognised. After restore, itunes can not restore because it says the password is incorrect. But I can sign into my apple account with the password.  My iPhone is now set to factory settings as a new phone, what can i do to access the back up from my phone before I reset it. 

    That does happen.  It depends on how hard the server is being hit, as well as the connection speed of your system.  If you are on a windows system, you will want to disable any antivirus or firewall software during the download.

Maybe you are looking for