Urgent help think a stranger has accessed my imessage through a mac

hello i have just recieved a notification on my phone saying
Phone Number Added To ''Natashas Macbook Pro''
''Natashas Macbook Pro'' is now using (says my mobile number) for imessage and facetime.
does this mean that this person is using my imessage on there macbook? i do not know this person and it is quite worrying is there anyway i can stop this person using my imessage and facetime? as i think they can see my messages i send a recieve?
thank you

Hello thomma55,
You may need to change your Apple ID password. The article linked below provides information regarding this and other tips for ensuring the security of your Apple ID.
Apple ID: Security and your Apple ID
http://support.apple.com/kb/HT4232
Cheers,
Allen

Similar Messages

  • I think my ex has access to my Icloud, how can I check what devices has access to my Icloud?

    I think my ex boyfirend has access to my Icloud and has his iphone connected to my Imessages. How can I check what devices are all on my ID?

    YOu can try siging into icloud.com
    But you should just change your icloud password.

  • Urgent help!  does anyone has sample code to do encry in c & decry in java

    Does anyone has a very simple code to encrypt a string in c (openssl for example) and then decrypt the same string in java?
    it should be very simple but i just can get the ball rolling. i always get different data (even in hex string representation) using the same key and plain text (all in hex) to even just do encryption (not even decryption yet). To my understanding, DES is just bits manipulation. So the output bit pattern should be the same regardless C or Java, right?
    for example, in openssl, when i do ecb:
    the key:
    0123456789ABCDEF
    the plain text:
    0101010101010101
    the in:
    0101010101010101
    the out:
    B4FD231647A5BEC0
    but doing the same in java i got
    3A2EAD12F475D82C as the encryption output
    It is very strange.
    Hope someone could help me.
    Thanks
    -- Jin

    whew! i finally get the base64 working. Here is my data from openssl run using DES with ECB mode and no padding: (the des_ecb_encrypt function is des/ecb/nopadding, right?)
    thanks alot
    -- jin
    0123456789ABCDEF
    the key in base64 encoding is:ASNFZ4mrze8=
    the plaintext in hex:
    0101010101010101
    the plaintext in base64 encoding is:AQEBAQEBAQE=
    the encrypted output in hex:
    B4FD231647A5BEC0
    the encrypted output in base64 encoding is:tP0jFkelvsA=
    the decrypted text in hex:
    0101010101010101
    the decrypted text in base64 encoding is:AQEBAQEBAQE=
    here is the code. see if you see the same thing. it works fine alone but just not the same result i use the SUN JCE ... that is the frustration part.
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/types.h>
    #include <ctype.h>
    #include <openssl/des.h>
    #define Assert(Cond) if (!(Cond)) abort()
    static const char Base64[] =
            "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    static const char Pad64 = '=';
    int main(int argc, char *argv[])
            int i;
            des_cblock in,out,outin;
            unsigned char base64EncodedText[255];
            unsigned char temp[255];
            size_t targsize;
            size_t srclength;
            des_key_schedule keySchedule;
            unsigned char plainText[8] = {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01};
            unsigned char key[8] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF};
            // now create the key schedule
            if(DES_set_key(&key, &keySchedule) != 0) {
              // something is wrong, unable to create key schedule
              printf("Unable to create the key schedule.");
              return 1;
            // now the key schedule is created, encrypte the data
            // in block contains the plain text, the out block contains the encrypted cyphertext,
            // and outin contains the decrypted plain text (should be the same value as in)
            memcpy(in,plainText,8);
            memset(out,0,8);
            memset(outin,0,8);
            // ecb mode is the simplest mode, takes in only 8 bytes (a cblock) and output a cblock
            des_ecb_encrypt(&in, &out, keySchedule, DES_ENCRYPT);
            des_ecb_encrypt(&out, &outin, keySchedule, DES_DECRYPT);
            printf("\nthe key in hex:\n");
      for(i = 0; i < 8; i++) {
        printf("%02X", key);
    printf("\nthe key in base64 encoding is:");
    memcpy(temp, key, 8);
    temp[8] ='\0';
    targsize = base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("\nthe plaintext in hex:\n");
    for(i = 0; i < 8; i++) {
    printf("%02X", in[i]);
    printf("\nthe plaintext in base64 encoding is:");
    memcpy(temp, in, 8);
    temp[8] ='\0';
    targsize = base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("targsize is %d", targsize);
    printf("\nthe encrypted output in hex:\n");
    for(i=0; i<8; i++) {
    printf("%02X", out[i]);
    printf("\nthe encrypted output in base64 encoding is:");
    memcpy(temp, out, 8);
    temp[8] ='\0';
    targsize = base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("\nthe decrypted text in hex:\n");
    for(i = 0; i < 8; i++) {
    printf("%02X", outin[i]);
    printf("\nthe decrypted text in base64 encoding is:");
    memcpy(temp, outin, 8);
    temp[8] ='\0';
    targsize= base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("\n");
    return 1;
    int base64encode(unsigned char *src, size_t srclength,
    char *target, size_t targsize)
    size_t datalength = 0;
    unsigned char input[3];
    unsigned char output[4];
    size_t i;
    while (2 < srclength) {
    input[0] = *src++;
    input[1] = *src++;
    input[2] = *src++;
    srclength -= 3;
    output[0] = input[0] >> 2;
    output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
    output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
    output[3] = input[2] & 0x3f;
    Assert(output[0] < 64);
    Assert(output[1] < 64);
    Assert(output[2] < 64);
    Assert(output[3] < 64);
    if (datalength + 4 > targsize)
    return (-1);
    target[datalength++] = Base64[output[0]];
    target[datalength++] = Base64[output[1]];
    target[datalength++] = Base64[output[2]];
    target[datalength++] = Base64[output[3]];
    /* Now we worry about padding. */
    if (0 != srclength) {
    /* Get what's left. */
    input[0] = input[1] = input[2] = '\0';
    for (i = 0; i < srclength; i++)
    input[i] = *src++;
    output[0] = input[0] >> 2;
    output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
    output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
    Assert(output[0] < 64);
    Assert(output[1] < 64);
    Assert(output[2] < 64);
    if (datalength + 4 > targsize)
    return (-1);
    target[datalength++] = Base64[output[0]];
    target[datalength++] = Base64[output[1]];
    if (srclength == 1)
    target[datalength++] = Pad64;
    else
    target[datalength++] = Base64[output[2]];
    target[datalength++] = Pad64;
    if (datalength >= targsize)
    return (-1);
    target[datalength] = '\0'; /* Returned value doesn't count \0. */
    return (datalength);
    [code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • URGENT HELP REQUESTED: Menu Function has dissapeared.

    Everyone,
    Please help if you can, our AP Menu has lost the function AP_APXINVWKB
    and we are not sure what else. I cannot get from any of my Development team and changes nor have we applied any patches. Just last night the AP team reported not able to do invoices anylonger. In researching we see that the menu attached to the responsibility is missing it's submenus. In further troubleshooting we noticed that we cannot even add the submenus back because the function is missing.
    Any thoughts? We have rebooted, cleared cache, bounced services etc...
    This is happening in 2 of our 3 instances, which seems to point to either user error or a time based issue.
    Also, if you could please tell me if there are logs I can check to find out if we may have unintentionally deleted etc.. it would be much appreciated.
    Thanks,

    Though no one responded we did get a fix from Oracle Support that may help others:
    Run the FNDLOAD program.
    As a single string:
    FNDLOAD APPS/password 0 Y UPLOAD $FND_TOP/patch/115/import/afsload.lct $AP_TOP/patch/115/import/US/ap115fn.ldt
    This fixed the issue, however I am very keen on figuring out how this function could have just been deleted. Any ideas how to track this down?

  • Network Failure! Help please. I cannot access the internet through AirPort

    anymore. never have had a problem in the past, at least not one that couldn't be solved by a reset. I've traced the problem back to the AirPort Extreme, as I can connect via Ethernet cable from the wall. Once it gets to the AirPort Extreme, I cannot connect from any computer in my house. I can't connect from the direct ethernet connection to the Airport Extreme either.
    Yet I can see and access other computers in my house. So that would suggest that it's just some sort of problem with the AirPort Extreme sending out the signal???? I don't know. I looked at the Network settings and nothing seems to be changed there. Could someone please point me in the right direction? Thanks!

    I have Cox cable internet, with a Webstar Modem distributing the ethernet hard connections through a Dynex 8 port ethernet switch. the problem starts to occur at the Airport Extreme. I cannot get wireless internet, or by doing a hard connection to my Airport Extreme. I plug right into the ethernet jack and I get connect just fine. BUT I can connect to every computer on my network, so the wireless network is working properly, it is just not allowing a connection to the internet. any advice?

  • Can't access my iCal  through my .Mac account

    I would like to be able to view my iCal while at work or on another computer away from home.
    I assumed I could do this by logging onto .Mac (which I do to view my mail)
    I see references to this in regards to syncing my iCal for others to view.
    I have gone through all the sync motions through System Preferences/.Mac/sync. But I do not see any way to view my iCal from within .Mac.
    Apparently I am iLost.
    Can someone help me here?
    Many Thanks,
    sswift

    You're not lost. No one can see their synchronized calendars on .Mac in the same manner as they can bookmarks and contacts. The provision to display synchronized calendars on .Mac simply does not exist at the present time.
    You can publish your calendars to a predictable URL using either .Mac or a private WebDAV server, but these published calendars are read-only objects, and therefore cannot be edited on the web. Until Mac OS X 10.5, Mac OS X 10.5 Server, an updated version of iCal, and the new applications Teams and iCal Server ship, you will be limited to synchronizing calendars to other Macintosh desktop computers through .Mac, using MySync or using SyncTogether, to publish read-only copies of one or more calendars and subscribe to those published calendars from one or more computers, or to do both.

  • Access wireless pc from a Mac - and both to internet

    From home, I need to access my web server at work through my new pc laptop. But, I want to use my G5 iMac's big screen. I'm aware of MS Remote Desktop which allows me to access my pc from my iMac. But, I'm not sure how to set everything up so that I can
    - Use the same internet connection (yahoo/pacbell) for both the pc and the mac.
    - Use my pc laptop from the patio about 15-20 feet from my mac and internet connection/box.
    Do I need Airport? Use Bluetooth? Network the two computers? Can I use the same internet connection to call up the pc from my mac using MS Remote Desktop, and if so, how do I at the same time access keep my pc laptop? wireless? (Yes, I'm pretty ignorant about this.) Use Windows XP/ OS X 10.4.9
    P.S. My employer only supports pc's, not macs, and they purchased the pc laptop for me. So, getting a new Mac and using Bootcamp was not an option. And Bootcamp doesn't work on my current G5 mac. I must connect to the web server with a pc because I have to map a drive from a pc to access the web server -- they've set it up so that we cannot access the server through a Mac without using Bootcamp and Windows.

    You haven't mentioned that you have a router, which you'll need first to connect both your Windows and Mac computers to the Internet at the same time.
    Next, you need to work with your employer to get your Windows laptop connected to your server. He most likely has a router on his end, which means your server is not directly connected to the Internet for you to access. He will have to "port forward" port number 3389 to the server. This will direct all incoming RDC traffic to your server so that you can connect. (NOTE: Remote Web Workspace, aka RWW, will not work with Macs.)
    These are the two basic things you need to do. Your setup may require more steps.
    Hope this helps! bill
    1 GHz Powerbook G4   Mac OS X (10.4.9)  

  • My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    My BB9810 refuse to load OS7.1 software on my phone after the download has completed. My phone has freezed/stucked since morning. Pls  urgent help/assistant needed as I can not access/use my phone for over 24hrs now.

    Hi there,
    Use the method described in the link below to get back up and running:
    http://supportforums.blackberry.com/t5/Device-software-for-BlackBerry/How-To-Reload-Your-Operating-S...
    I hope this info helps!
    If you want to thank someone for their comment, do so by clicking the Thumbs Up icon.
    If your issue is resolved, don't forget to click the Solution button on the resolution!

  • Urgent Help; Everyone has access to restricted rooms

    Hi Everybody,
    I need some urgent help.
    I have created some collaboration rooms based on a restricted room template and everyone seems to have access to the room.
    It is behaving as if it is a public room.
    Now we are just a couple of days from go-live and it is extremely urgent to resolve these issues.
    Any help would be appropriately rewarded.
    Regards,
    Vibhu

    Hi Vibhu,
    you should check the room role assignments and page
    permissions. You need to log in as a room administrator
    and go to the "Admin: Room" page.
    Regards,
    Darin

  • Urgent Help with network access to FileOutputStream

    URGENT HELP NEEDED GUYS...I am stuck on this past 2 days. I tried several alternatives but to vain.
    I am trying to access a Folder on a user's computer which is lying in a different Domain.
    For accessing this folder, I have the following information with me.
    Domain name, PC name, folder name, windows username, windows password.
    Note: This username and password will give me rights to read + write to that folder.
    How to use these information to open a fileoutputstream ? Does the java.io package allow programs to pass a username, password , domainname, pcname and then the folder and filename to create/read/write files..
    Pls. suggest code examples. Sometime back I posted this query but didnt get an answer to my satisfaction. I have tried at my end but unsuccessful yet. Help would be appreciated.
    I am trying this on a Windows File System and Network domain
    THIS IS V. URGENT
    Thanks,

    Hi HJK,
    I am referring to the last reply of yours.
    " Hi, there are three approaches I can think of offhand:
    1) make sure the user-context under which you run the java app has the right to access the remote drive.
    2) Do the network connection in a batch or c program and call that at the start of your java app with Runtime#exec.
    3) Write some c/c++ code to open the connection and integrate that via JNI.
    Let me know what (other) solution you came up with in the end!
    Regarding the 1st.
    I am supposed to write a remote installation utility actually. There are around 200 PC(s) in a network on which I need to copy these java class files. My problem statement is such that at runtime I only have username, passwords, domain access. I am not supposed to map any drives. Its supposed to be done dynamically. No manual intervention required. :(
    How do I do the network connection in a batch mode ? Let me know that?
    If 2nd option can be done, probably I can think of action-3 at the moment I am quite blurr :(

  • I don't have the up to date system requirements to run iCloud on my mac but would still like to access my email on my mac.  I think I need to update my settings, but am not sure what to do.  Can anyone help.  thanks

    I don't have the up to date system requirements to run iCloud on my mac but would still like to access my email on my mac.  I think I need to update my settings, but am not sure what to do.  Can anyone help.  thanks

    Welcome to the Apple Community.
    If you haven't done so already you need to migrate your mail account to iCloud first and do so IMMEDIATELY at the website Move
    Then
    Delete your mail account from Mail preferences and set it up again using the Mail Server Information.
    Some users have apparently encountered issues using this information in pre-Lion set ups (I haven't), Roger Wilmut has kindly provided instructions for those who find themselves with this problem.
    Entering iCloud email settings manually in Snow Leopard or Leopard
    Entering iCloud email settings manually in Tiger

  • I think my neighbour has been using my airport connection - help

    Hello everyone
    I need your help. I think my neighbour has been using my airport network. I only noticed this today when my computer detected his wireless network. His network is password-protected where mine isn't. I've added a password to my airport connection but I am not sure whether this has worked or not.
    Is this enough protection?
    Any help is much appreciated
    Ash

    There are some things that you can easily do using Airport Utility.
    First, turn encryption on and select WPA as method, create long password for it. WEP is not as good as WPA (WPA2).
    Then you must change your network name, so your neighbor needs to know your networks name and password to get access.
    Also, you can turn on MAC address filtering, just add all your computers MAC address to the list.
    And last, you can create a closed network. This means that your neighbor cannot see your network at all as it doesn't broadcast it's presence at all.
    With these steps you can be sure, that no one uses your network without your permission.

  • Once 10.9.1 is loaded onto my MacBook Pro and it has accessed all my files; is there anyway to back out of the relationship?  I don't want my data on iCloud - how do I make that happen?  Many thanks for any help.

    Once 10.9.1 is loaded onto my MacBook Pro and it has accessed all my files; is there anyway to back out of the relationship?  I don't want my data on iCloud - how do I make that happen?  Many thanks for any help.

    Sorry but I know of no way of not backing up for a PC.

  • I opened a spam e-mail, I think my phone has a virus how do I get it off? HELP!

    I opened a spam e-mail, I think my phone has a virus how do I get it off? HELP!

    It was an email about a video I posted on youtube. It said "the video you posted under your account has been approved and posted. Click link to see the video" but I didn't post any video so I clicked the link on my phone and it took me to a page that was not youtube so I immediately closed the window went to my settings and deleted cookies and history. Later I tried to login to one of my banking app and it kept saying loading for about 5 min before I exited the app then tried again and then it wouldn't even let me log in.

  • Help, my Safari browser has been acting super strange.  It keeps changing my default browser from Google to Only Search, and my search bar will only search on Yahoo no matter what I do.  On top of that I get MacKeeper popups every time I click a link

    Help, my Safari browser has been acting super strange lately!  It keeps changing my default browser automatically from Google to Only Search (if you use the search engine Only Search it takes you to Yahoo.com).  My search bar will only search on Yahoo no matter what I do to make it Google.  On top of that I get MacKeeper popups every time I click on a link.  What is worn with my computer and how do I fix it?!

    There is no need to download anything to solve this problem. You may have installed a variant of the "VSearch" ad-injection malware.
    Triple-click the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination  command-C:
    /Library/LaunchDaemons
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.
    A folder named "LaunchDaemons" may open. Look inside it for a file with a name of the form
              com.something.daemon.plist
    Here something is a variable word, which can be different in each case. It could be "cloud," "dot," "highway," "submarine," "trusteddownloads," or pretty much anything else.
    There may also be a file named
               com.something.helper.plist
    in the same folder.
    If you find files with names that fit the above description, post what you have for "something."

Maybe you are looking for

  • Unable to load Final Cut Pro

    I just did an auto-update last night of FCP, and this morning am not able to start the program. I have not had this problem before, and have been using FCP for the last month or so. The error I got was that it may not be able to laod "nsTODimporter p

  • My 3G has frozen on the log in screen, help

    my 3g has frozen on the log in screen, help

  • Can't get JSF to access managed bean methods from web page

    I'm using NetBeans 6.7.1 and Glassfish v2.1 Having problems here can somebody please help? It is really frustrating because I have written apps like this before in fact I used one as a model to create an even simpler app and still can't get it to wor

  • Class java.util.MissingResourceException

    Hi all - I'm working on implementing the DocumentAccessReport => https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7d28a67b-0c01-0010-8d9a-d7e6811377c0 I had this working for a while and recently decided to add some enhancement

  • Itunes download malfunction - downloading videos

    I have bought a video of itunes, it starts to download then it got to 2.6 gb out of 3.6 gb in the morning when i woke up to check its downloaded it said 2.4 gb and the time remaining was counting upwards and it was not loading, it vanished? It keeps