What is the best way to know if a Mac is compromised?

Recently, my mom got an email from Walmart that had said it had tracking information on something she had ordered. Now she had been doing a lot of holiday shopping and couldn't remember if she had shipped anything from Walmart. She clicked the link in the email and it took her to this site that looked like it belonged to a law firm, but had no navigation to anything.
Now, I already think this sounds bad, but my computer knowledge barely extends to Macs. Does anyone here have a good way to tell if her Mac has been compromised? Also, if it does turn out she's being monitored what is the best way to go about fixing it?

I use them mainly to make sure that something I send out does not cause a problem for a Windows user - though I prefer ClamXav. I've had it running on one mac or another for over six years and have never had a problem with it corrupting anything though, even the earlier versions. Both it and Sophos have caught a few parasites, but mainly with regards to exe and zipped files. Sophos, I'm newer to, and I am interested by your comment about it slowing the computer down - I will look into that for myself.
I  download Windows software for friends, or for peecees that I'm fixing for others. If I do a search for software or drivers on a peecee, I get slammed with site after site of spam, ****, or anything else that can try to pretend it is a valid file. If I do on a Mac, I don't have hours of my time wasted trying to sift through garbage.

Similar Messages

  • What's the best way to completely wipe my Mac?

    I'm selling my 17" iMac G5 as I've just replaced it with a shiny new 24" Intel iMac [droool!]. Anyway, I want to know what software or what's the best way to wipe/clear my Mac and start from scratch so the person buying it doesn't have all my rubbish on there - plus can't retrieve any of my private files.
    What have you guys done in the past in situations like this? I know you can do a clean install off the original installations CD's but will this be enough to get ride of all preferene files and folders etc etc?

    Hi
    The easiest way is to put a new installation of your OS onto the Mac.
    Insert your Install disk 1 into to the drive and then Restart, and hold down the C key to take you to the installation windows.
    Select your language, the start up Volume and choose Erase and Install.
    At the point your registration process starts, abandon the registration, quit and eject the disk and switch of the computer.
    This will allow the new user a freshly installed system, whereby they can complete the registration process themselves. Make sure you hand on the disks.
    If you want to be extra thorough, you can, booted from your Install disk use Disk Utility to Zero All Data, before doing the Erase and Install described above, and if you want to be paranoid thorough, you can choose to overwrite the disk with several passes before doing the installation described first. Note this latter process can take from several hours to several days depending on the selection and the size of your internal hard drive.
    regards roam

  • What is the best way to 'clean up" a Mac that has been going for about 2 years.  I reset safari frequently but need to be sure stuff I don't want is gone.

    What is the best way to 'clean up" a Mac that has been going for about 2 years.  I reset safari frequently but need to be sure stuff I don't want is gone.

    I'd gather by your "reset Safari"  and "clean up" you mean by sites you rather not have your mom see.
    Hidden Flash cookies are stored in "Macromedia" Folders on your computer, can delete using the free Easy Find first, but need to reinstall Flash again here
    http://www.macupdate.com/app/mac/11076/easyfind
    http://get.adobe.com/flashplayer/
    OnyX run All the cleaning and maintenance steps followed by a reboot, followed by a Disk Utility erase free space.
    http://www.titanium.free.fr/
    CCleaner is in beta for OS X, can combine the cleaning and secure erase in the same steps if properly configured.
    http://www.piriform.com/mac/ccleaner
    Every web site knows your apx location.
    http://www.whatsmyip.org/more/
    To be sure to have a clean machine, a
    Restoring OS X - 10.6  "fresh install method"
    Restoring OS X - 10.7 - wipe and install
    is the only way as you only bring files back to the machine that you know what they are, everything else is removed.
    https://discussions.apple.com/message/16276201#16276201

  • What is the best way to hook up my mac mini to my LED flatscreen

    I have a Samsung LED flatscrren - what is the best way to hook up a mac mini to it

    HDMI cable. Works great no problems so far.

  • What is the best way to clean up your mac and make it faster and run to an optimum level?

    Hi Everyone, Hope all is well
    Iv been running my mac pro for a long time now, its a Mac pro, 2x 2.26 GHz Quad Core Intel Xeon. 12 GB 1066 MHz DDR3 Ram
    Over time now it has become slower, at the moment its still running fine but im sure over time it has probabally collected unwanted data etc. i just dont want it to become a problem as its only going to be used more and more... i now notice that some of the regular programs which i open do take a little while longer to open and i sometimes see that little round Mac loading the sign (the round multicolor wheel).., is there a way to clean the mac up? so that it can run more smoothly and just a better over all feel.,,, the machine is still running beautifully but its time i give it more care and revive it a little more..
    What are the best ways to do this, i dont trust any of these non apple based products which claim they can clean ur Mac etc.
    Any solutaion and advice that u guys can give would be great and i would be very thankful
    Thanks in advance

    For immediate speed improvements, upgrade to a Solid State Drive and upgrade your conventional hard drives to new ones, because the newer ones are faster at reading and writing than the ones from 5 years ago.
    By Re-installing your OS onto a solid state drive, the system will boot much faster, and your programs will launch much faster.
    I use a small SSD (only 60GB) which contains only OS X and all my apps.  All of my personal files are on the large mechanical hard drive.  If you still use the drive that shipped with the Mac, then it might be a good idea to replace it.
    Depending on what kind of work you do, then additional RAM will help.  Swapping CPUs should only be done if you are really in need of the improvements they would bring. 
    You appear to have the 2009 dual-CPU Mac Pro, which is the most challenging model to swap CPUs into.

  • What's the best way to know whether an application is running for the first time? (C#)

    I seen suggestions like making a registry entry, or making an entry in the application specific settings file. But what's the best practice? I want to do some custom tasks if that is a first run.
    Also, I am deploying my application using per machine MSI installer. So un-installation not deleting the user specific config files that's get created under AppData.
    Thanks Prasad

    Hello,
    Whenever possible I prefer to avoid the registry. The following works once per user where we see if a specific folder exists or not, if it does not then do first time initialization work then set a setting in the project which causes a user config file to
    be written to the location for storing user settings per user. 
    You first need to create a setting in the project, in this case I did
    var config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoamingAndLocal);
    string configPath = config.FilePath.Replace("\\user.config", "");
    if (System.IO.Directory.Exists(configPath) )
    Console.WriteLine("This is not the first time");
    else
    // Do one time setup here
    Properties.Settings.Default.FirstTimeValue = "1";
    Properties.Settings.Default.Save();
    Console.WriteLine("This was the first time");
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • What is the best way to downgrade Firefox on Mac OS X?

    I am capable of figuring out a way to do it, but I am asking for the BEST way - meaning the method least likely to cause incompatibility with the OS, Add-ons, and other software. The reason is I do not like Firefox 6.
    For those wanting to know where to download v3.6:
    [http://www.mozilla.com/en-US/firefox/all-older.html http://www.mozilla.com/en-US/firefox/all-older.html]

    Just a note:  if you Option-drag the thumbnail to the Desktop you'll get the original file.  Regular dragging will get you the preview version or the edited version if it's been edited in Photos.

  • What is the best way/quality of connecting my Mac Mini to an external HiFi system?

    Hello,
    I am using my Mac Mini for storing and playing music using iTunes.
    In terms of audio quality, what would be the best option for connecting the Mac Mini to my external HiFi system?
    1) Using an optical cable?
    2) Using a analog cable?
    3) Using a USB connected DAC? (maybe the best option but surely the most expensive)
    If the option 3 is only the good one, would suggest a DAC product?
    Thx for your help
    Best Regards,
    -- Jean-Baptiste

    The optical output is capable of doing 5.1 surround sound (as well as 2.1 or basic stereo) and is therefore more than capable of fully supporting lossless audio formats like AIFF, WAV, FLAC, Apple Lossless as well as all DVD audio formats. The optical (TOS-Link) interface is not capable of fully supporting the higher end audio standards supported by Blu-Ray discs.
    For full Blu-Ray support you would have to use a HDMI interface.
    So with regards to purely CD sourced material and even potentially DVD-A (DVD Audio discs), and SACD (Super Audio CD) it should be fine.
    Some anally retentive audio fanatics will say that potentially some of the signal can be lost over a TOS-Link optical connection and they would insist on having an audio interface to act as a dedicated DAC (Digital Audio Convertor) with direct links to the speakers. I would say ordinary humans will be more than happy with a lossless audio format being sent over an optical link which will definately be superior to AAC over a copper wired link.

  • What is the best way to back up separate macs?

    I have an older Mac book pro and so does my girlfriend. We would like to back up the documents and pictures in case something happens to either one of them. We don't want to spend lots, but we want something that is reliable and easy to use.  I don't know anything about external hard drives or cloud back up solutions. Are we use one hard drive for the 2 computers, can we continue to back up the data if we move to new macs, will we be able to transfer the data? Any assistance would be appreciated.
    Thank you!

    Time Machine is your best and simplest option.  Look at this definitive web site which should address all of your questions:
    http://pondini.org/OSX/Home.html
    If things are still unclear, post back.
    Ciao.

  • What is the best way to share calendars between Macs?

    I have two macintosh computers in my house and I use one as the master for our family calendar in ical. I want both calendars in sync, with the second mac as the "copy"-no new data is added here.
    My current method of "sharing" was to publish the files up to our web-server (not apple's) and then subscribe from computer #2 pointing to that web-server.
    Calendar-Publish-choose private server-and fill in the blanks-click-OK.
    When my mac updated to 10.5.4, this method broke. I can no longer publish the files using ical, but I now have to FTP the files up to the web-server. This is a couple of extra steps that is becoming a headache.
    File-Export (about 8 calendar files); open a terminal window; FTP the files up. Go to the other mac and Calendar-refresh all.
    Is there a better way to share ical files between two macs in the same house without FTP-ing? Or is Apple going to fix this problem?

    I set up ical synching through a google calendar and it works well. The benefit here is that you can see your calendar from a web browser when away from the house.
    Info in this thread: http://discussions.apple.com/thread.jspa?messageID=7772872&#7772872
    iCal should have a "share" option like itunes libraries for lans though. Odd that it doesn't.

  • What's the best way to clone to another Mac with the same system id so I do not have to re-authorize plugins/programs?

    I was told in a different thread that cloning is my answer for my problem.  Once learning that, I checked around and saw people suggesting Super Duper over the Disk Utility option, saying that I will not have to re-authorize my programs.  That it's the easiest way to clone one computer to the next without the hassle of having to reauthorizing all my programs and plugins.  Is this true?

    Clones are clones. SuperDuper does nothing special that Disk Utility does not do.
    Clone using Restore Option of Disk Utility
    Open Disk Utility from the Utilities folder.
    Select the destination volume from the left side list.
    Click on the Restore tab in the DU main window.
    Check the box labeled Erase destination.
    Select the destination volume from the left side list and drag it to the Destination entry field.
    Select the source volume from the left side list and drag it to the Source entry field.
    Double-check you got it right, then click on the Restore button.
    Destination means the new computer. Source means the old computer.
    You can connect the two via Firewire cable if both computers have Firewire ports. If not, then you will need to use an external hard drive as an intermediary. Clone the old computer's drive to the external drive. Then restore the clone from the external drive to the drive in the new computer.
    Restoring the clone simply involves switching the Source and Destination.

  • What is the best way to sync media onto the iPhone using iTunes?

    I know of two ways- one is be simply dragging items onto the iphone folder. The other is by clicking the iphone folder and selecting which playlists,artists, ect I want to sync.
    Is there any difference between the two?

    I have the same question: what is the best way to sync documents between mac devices?
    But I want to be clear:  normally when we use the word "synchronize" or "sync" we are referring to an automatic update to the latest version of the document, whatever the document.
    Just to be clear:  to "transfer" documents is not really the same as to "synchronize".  I will add to the question here with my thoughts. Please excuse me if the om only wants to transfer documents.
    We have tried, over many months, to use SugarSync.  It worked great when I only put in about 10 files to be synced.  It took the latest version and updated it on the other computers that were connected.  But when we tried to sync the whole disk ... we just could NOT get it to work right. Meaning it would scan absolutely ALL of the files on the computer looking for the ones that were modified rather than just taking the lastest ones modified and syncing those.  Their tech department was not much help: I followed all of the steps they told me to do but we just could not get it to work right.  What a disapointment (and a loss of money).
    I would love to find a software that automatically detects what the last modified files were and it will update ONLY that on the other devices (no matter what kind of files they are).
    Any help would be appreciated.  Thanks

  • The best way to know if you a  data  in a table

    hello
    I have a doubt what 's the best way to know if you have a value in a table .For example I have a table called Vehicle , that have two rows id and name . Well I want to know before do somthing if the vehicle with mane '11111', exist or not .
    Nowadays i do this operation with a : select count ( id ) into num from vehicle;
    This is the best way ???
    THANKS

    Hello
    Well here's an alternative that may help in your situation. The idea is that you put all of your values that you will be testing for the existence of, in a collection. Then use INTERSECT to find out which of those are already present in the table.
    It may well turn out to be completely useless, but I'm trying to avoid working on what I am supposed to be working on, and I thought I'd try it out ;-)
    CREATE TABLE dt_test_vehicle(veh_name     VARCHAR2(20));
    INSERT INTO dt_test_vehicle values('1111');
    INSERT INTO dt_test_vehicle values('2222');
    INSERT INTO dt_test_vehicle values('4444');
    INSERT INTO dt_test_vehicle values('5555');
    INSERT INTO dt_test_vehicle values('6666');
    CREATE TYPE dt_tt_varchar2 IS TABLE OF VARCHAR2(20)
    set serveroutput on
    DECLARE
         ltt_Params     dt_tt_varchar2;
         ltt_Result     dt_tt_varchar2;
    BEGIN
         ltt_Params := dt_tt_varchar2();
         ltt_Params.EXTEND(4);
         ltt_Params(1) := '1111';
         ltt_Params(2) := '2222';
         ltt_Params(3) := '3333';
         ltt_Params(4) := '4444';
         SELECT
              veh_name
         BULK COLLECT INTO
              ltt_Result
         FROM
              (SELECT
                   veh_name
              FROM
                   dt_test_vehicle
              INTERSECT
              SELECT
                   column_value
              FROM
                   TABLE(CAST(ltt_Params AS dt_tt_varchar2))
         IF ltt_Result.COUNT > 0 THEN
              FOR li_Idx IN ltt_Result.FIRST..ltt_Result.LAST LOOP
                   dbms_output.put_line(ltt_Result(li_Idx));
              END LOOP;
         ELSE
              dbms_output.put_line('Nothing there, everything is good to go');
         END IF;
    END;Delete rows from the test table to see the changing results. The main reason I was thinking of this way of doing it was so you could handle your messages in one hit rather than having to have a separate exception for each parameter you are testing.
    HTH
    David
    Sorry, I just re-read your post, and you need to know if these parameters are NOT there, in which case you should give an error. In that case, you could change the INTERSECT for MINUS. If you have anything in the resulting collection, these are the parameters that are missing from the table.
    Message was edited by:
    david_tyler

  • What is the best way to make a HDMI connection?

    I have a 13" Macbook Pro, bought in late 2011, therefore I have the Thunderbolt port. I do not think it has a mini DVI port. Therefore my question is what is the best way to connect this great Mac to a HDTV using an HDMI port on the TV?

    To connect MBP to HDMI monitor or TV via Thunderbolt port, use mini DisplayPort-to-HDMI adapter and HDMI cable. Thunderbolt port is mini-DisplayPort compatible. If you get the adaptor that supports video and audio signal, both will be forwarded to your monitor or TV. Search the Apple store.

  • I have just purchased a new iphone 5, just wanted to know that what is the best way to insure my iphone

    i have just purchased a new iphone 5, just wanted to know that what is the best way to insure my iphone

    Contact yor carrier. Your carrier may have some Mobile Insurance that you pay a certain amount per month to insure your device. Most carriers require you have the device less than 30 days in order to insure it. If your carrier is AT&T, AT&T has mobile insurance for only $6.99 per month. AT&T has open enrollment for their mobile insurance now. So anyone has an AT&T line can get insurance coverage for their device.

Maybe you are looking for

  • The CSS in Sharepoint won't show.

    Hello. I've edited the style sheet in the Site pane, saved and published it. But every time I visit the page, the changes are not there. If I then go to the Site pane and press edit style sheet, the changes appear. This means that people that visit t

  • Unable to print added text only in Acrobat Pro XI

    User is trying to print added text that's been added to an existing PDF page.  In Acrobat X she chose "Form fields only" under Comments & Forms from the Print menu.  In XI it produces a blank page.  The added text only shows up if she chooses Documen

  • BDC: Table Control Screen Resolution

    Hi Abapers, 1.In BDC while handling table control , how to handle screen resolution , that means in some systems i can see 5 item entries , in some systems i can see 10 item entries how to handle this , can u  send the Code relating this. With Regard

  • Problem with XQuery

    Hello, I'm trying to run the XQuery also but even the XQLPlus interactive command line utility does not work with the sample xml file 'bib.xml' and the XQuery contained in the file 'exmpl1.xql'. I get the following error: XQE: Parsing failed 'null' W

  • Nikon D610 raw files in CS6.

    HOw can I open Nikon D610 raw files in cs6?