Has anyone used Malwarebytes or anything similar to protect Mac from virus etc

Has anyone used Malwarebytes or something similar to scan Mac for virus and other security and effiency problems?

I should have been more specific, I wasn't given a Mac to keep, I was given a Mac to clean up. I have almost 20 years experience working with personal computers and I've worked on every major OS that's been released during that time (OS/2, every version of Windows since 3.1, Linux, Mac OS, Unix). I no longer work in a shop specifically fixing computers but my family still gives me their computers to look at whenever they have issues. My cousin just gave me her laptop since she was unable to fill out any web forms that would try to verify her e-mail address, plus she kept getting pop ups to run some MacKeeper software. Had this been a computer I received second hand I would have re-installed the OS regardless of the state it was on, but since she needs the files on her computer for school I figured it'd be much easier to run a Mac OS equivalent of Malwarebytes than to backup everything and re-install the OS.
Unfortunately when you search the internet for a Malwarebytes alternative for Mac OS, the majority of the time you just get posts from people saying "Macs are super secure, don't worry about it you won't get infected", which is a completely useless response for someone whose computer is infected. The rest of the posts responding to people who ARE infected are much like your response "Just re-install the OS" but that doesn't address the underlying issue of what's infecting the computer for those people who can't afford to lose everything. I was eventually able to Google the symptoms of this issue and determine that it was a trojan known as DownLite or VSearch. Once I found where it was located I opened up a terminal, ran sudo su to elevate myself to root, deleted the VSearch folder and files from the terminal, ran ps ax | grep VSearch to find the running application and did a kill -9 [pid] to terminate the app (rather than rebooting.)
Once that was all done I was able to use Chrome and Safari without all of the popups and hijacks. It took all of 5 minutes once I knew what the underlying issue was but I was really hoping to find a program like Malwarebytes so I could just let it scan the computer and tell me "These applications are malicious..." especially since my cousin installed a lot of stuff I would consider junk on her laptop and I didn't want to delete things that are just harmless junk (since she might use them.) Since I ended up having to do this all manually I'm just hoping there's nothing else lingering on the computer that didn't have visible symptoms.

Similar Messages

  • Has anyone used the ATTO ExpressSAS R644 in a Mac Pro?

    Any thoughts on your experience if so?

    louisfromleonia wrote:
    Has anyone used the macbook air superdrive connected to a macbook pro - with a source DVD,via usb as a destination drive for burning DVDs?
    I don't use the Apple SuperDrive but an LG GP08NU6W. works great! You can get one here:
    http://www.amazon.com/LG-Electronics-GP08NU6W-External-Drive/dp/B003D1DESS
    I got the white one.

  • Has anyone used microsoft silverlight plug-in on a mac mini?

    Does microsoft silverlight plug-in work well on a mac mini?

    Some of those who thought they needed it seemed to be able
    to use it in Mavericks 10.9.2; not sure how well it works in the
    newer 10.9.3.
    Be sure to get it from Microsoft site and not softonic or cnet
    downloads where some files have been found to be of a
    questionable content, or contain adware or malware.
    http://www.microsoft.com/silverlight/
    The plugin listed for Mac OS X (intel) says it will work from
    Mac OS X 10.5.7 to present; nothing about upgrade version
    for Mavericks 10.9.3 specifically, so there may be issues.
    Good luck!

  • Has anyone tried to download anything using linux?

    Has anyone tried to download anything using linux? I can't seem to get anywhere with this site or the Ottawa Library Site.

    Well, if your husband managed to ade 1.8 running with wine, I'll gladly take any hint on how he did that. I get get ADE to start.

  • Has anyone used Macspeech Scribe for Mac?  It is similar to Dragon.

    Has anyone used Macspeech Scribe for Mac?  It is similar to Dragon.  Does it work and is it reliable?

    This post by Karsten shows several of the major alternatives, including a free one.
    I have no experiece good or bad with the one you mention.
    https://discussions.apple.com/docs/DOC-3711

  • Has anyone used JAAS with WebLogic?

    Has anyone used JAAS with Weblogic? I was looking at their example, and I have a bunch of questions about it. Here goes:
    Basically the problem is this: the plug-in LoginModule model of JAAS used in WebLogic (with EJB Servers) seems to allow clients to falsely authenticate.
    Let me give you a little background on what brought me to this. You can find the WebLogic JAAS example (to which I refer below) in the pdf: http://e-docs.bea.com/wls/docs61/pdf/security.pdf . (I believe you want pages 64-74) WebLogic, I believe goes about this all wrong. They allow the client to use their own LoginModules, as well as CallBackHandlers. This is dangerous, as it allows them to get a reference (in the module) to the LoginContext's Subject and authenticate themselves (i.e. associate a Principal with the subject). As we know from JAAS, the way AccessController checks permissions is by looking at the Principal in the Subject and seeing if that Principal is granted the permission in the "policy" file (or by checking with the Policy class). What it does NOT do, is see if that Subject
    has the right to hold that Principal. Rather, it assumes the Subject is authenticated.
    So a user who is allowed to use their own Module (as WebLogic's example shows) could do something like:
    //THEIR LOGIN MODULE (SOME CODE CUT-OUT FOR BREVITY)
    public class BasicModule implements LoginModule
    private NameCallback strName;
    private PasswordCallback strPass;
    private CallbackHandler myCB;
    private Subject subj;
             //INITIALIZE THIS MODULE
               public void initialize(Subject subject, CallbackHandler callbackHandler, Map sharedState, Map options)
                      try
                           //SET SUBJECT
                             subj = subject;  //NOTE: THIS GIVES YOU REFERENCE
    TO LOGIN CONTEXT'S SUBJECT
                                                     // AND ALLOWS YOU TO PASS
    IT BACK TO THE LOGIN CONTEXT
                           //SET CALLBACKHANDLERS
                             strName = new NameCallback("Your Name: ");
                             strPass = new PasswordCallback("Password:", false);
                             Callback[] cb = { strName, strPass };
                           //HANDLE THE CALLBACKS
                             callbackHandler.handle(cb);
                      } catch (Exception e) { System.out.println(e); }
         //LOG THE USER IN
           public boolean login() throws LoginException
              //TEST TO SEE IF SUBJECT HOLDS ANYTHING YET
              System.out.println( "PRIOR TO AUTHENTICATION, SUBJECT HOLDS: " +
    subj.getPrincipals().size() + " Principals");
              //SUBJECT AUTHENTICATED - BECAUSE SUBJECT NOW HOLDS THE PRINCIPAL
               MyPrincipal m = new MyPrincipal("Admin");
               subj.getPrincipals().add(m);
               return true;
             public boolean commit() throws LoginException
                   return true;
        }(Sorry for all that code)
    I tested the above code, and it fully associates the Subject (and its principal) with the LoginContext. So my question is, where in the process (and code) can we put the LoginContext and Modules so that a client cannot
    do this? With the above example, there is no Security. (a call to: myLoginContext.getSubject().doAs(...) will work)
    I think the key here is to understand JAAS's plug-in security model to mean:
    (Below are my words)
    The point of JAAS is to allow an application to use different ways of authenticating without changing the application's code, but NOT to allow the user to authenticate however they want.
    In WebLogic's example, they unfortunately seem to have used the latter understanding, i.e. "allow the user to authenticate however they want."
    That, as I think I've shown, is not security. So how do we solve this? We need to put JAAS on the server side (with no direct JAAS client-side), and that includes the LoginModules as well as LoginContext. So for an EJB Server this means that the same internal permission
    checking code can be used regardless of whether a client connects through
    RMI/RMI-IIOP/JEREMIE (etc). It does NOT mean that the client gets to choose
    how they authenticate (except by choosing YOUR set ways).
    Before we even deal with a serialized subject, we need to see how JAAS can
    even be used on the back-end of an RMI (RMI-IIOP/JEREMIE) application.
    I think what needs to be done, is the client needs to have the stubs for our
    LoginModule, LoginContext, CallBackHandler, CallBacks. Then they can put
    their info into those, and everything is handled server-side. So they may
    not even need to send a Subject across anyways (but they may want to as
    well).
    Please let me know if anyone sees this problem too, or if I am just completely
    off track with this one. I think figuring out how to do JAAS as though
    everything were local, and then putting RMI (or whatever) on top is the
    first thing to tackle.

    Send this to:
    newsgroups.bea.com / security-group.

  • Has anyone used Thunderbolt or USB 3.0?

    In the not too distant future I am intending to upgrade from my 2008 24"  2.8GHz iMac.
    The new models appear to have gone down the Thunderbolt route which appears to be not very popular with HDs being few and far between and very expensive.
    USB 3.0 whilst theoretically only half the speed seems to be taking off and reasonably cheap, and appears to be more universally adopted.
    Could Apple have backed the wrong horse on this occasion?
    Sorry, I was just thinking aloud, definitely not speculating.
    So has anyone used Thunderbolt and got anything good or bad to say about it?

    Not personally:
    The german computer-magazine c't tested the Promise Pegasus R6 Thunderbolt and found it speedwise way ahead of USB 3.0 and eSATA.
    As a RAID-Level 0 with 6 x Hitachi HDS721010CLA332 (7.200 U/min, 1TB each) and MBP 13" 2011 OSX 10.6.8:
    Write - 693 MByte/s
    Read - 721 MByte/s
    Read AND Write - 323 MByte/s
    Time Machine -capable and OS X Bootable.
    0.8 Sone when active
    61.6 W active - 48 W when not used.
    Sadly the article is not avaibale other than Printed.
    Stefan

  • I just saw a message that iWeb has been discontinued by Apple.  It suggested EverWeb.  Has anyone used this or do you have aother recommendation?

    I just saw a message that iWeb has been discontinued by Apple.  It suggested changing to EverWeb.  Has anyone used this or do you have another recommendation?

    Hi
    I have now used Everweb to transfer a website from iWeb & am now working on transferring a second website.
    I cannot recommend Everweb highly enough. I am an amateur, so iWeb was the easy option for me. Everweb is just as easy to use and very similar to iWeb. New features are being added every few days.
    I am extremely impressed by the excellent and prompt service from both the forum and support. All my questions have been answered (& there have been many of them!)
    Everweb is complimented by an excellent site Everweb codebox which has developed more widgets and codes to add to Everweb. Roddy from Everweb codebox has been invaluable by answering questions on the forum & generally complimenting the Everweb team.
    I have purchased the Everweb program & Hosting. This gives my 1 click updating and works seamlessly. The price is competitive and the support exemplary.
    All in all, I am delighted with Everweb, excellent program & excellent support!! I would not hesitate in recommending it to anyone.
    In answer to your question...buy it!!!!
    Lynn

  • Has anyone used the appscript modual for python rather than streight AS?

    I just discovered appscript and so far I like what I see. has anyone used it?
    Does it just wrap around actual applescript commands which it then sends to osascript with a system call or does it use the message system directly? Is there anything that it has not yet implemented that might cause problems?
    To me it seems to be a perfect solution to the clutter that AS seems to be... at least from someone coming from more traditional languages.

    In startMovie, you need to register the xtra
    on startMovie
    axRegister(serial code here)
    end
    Then, on your Record Button, something like this:
    on mouseUp me
    --start recording session - using 400k as maximum here
    errOpen=axOpenRecorder(400000)
    --see if there is an error
    put errOpen
    --save the new audio as a file
    errRecord=axRecordSoundToFile("soundName","c:\path\to\soundfile.wav")
    --see if there is an error
    put errRecord
    end
    then make sure you close the recorder in stopMovie
    on stopMovie
    axCloseRecorder()
    end
    You can also make a Stop Recording button that has code like
    this:
    on mouseUp me
    errStop=axStopRecording()
    put errStop
    end

  • Has anyone used the Seagate wireless plus with an iPad?

    I would like to use this wireless external drive to store videos and then stream them to my iPad.  Has anyone used this drive and if so how do you like it?

    Hi everyone,
    I am frustruated with the Seagate Wireless Plus. I think most of you just download movies in it and then watch it on your tablet. I thought this can be my external storage for everything including the content of my iPad. Not so easy!!! I can't see anything from the content of my iPad when I connect it wirelessly to Seagate. I wrote to Seagate and apparently there is another thing called WebDav in order to do it. I think Windows are winning here how easy it is to connect devices. Simply, I can see the demo stuff from the Seagate on my iPad but nothing the other way, no pictures, no music, no videos stored on my iPad can be seen from the Seagate. If there is somebody who can explain to me how to do it before I will return the Seagate to the retailer please do it in a way normal people understand. Don't say "I think" as most of people in these forums do, please say only "I know" and lead me step by step what to do. I have the latest iPad mini with iOS7, 32GB WiFi & Cellular with Retina display. I've already updated the Seagate OS to 2.2.0.005 exactly as they advise by installing the 2.1.0.014 prior to that.
    Please forgive me for the tone but those 10 hours I spent so far without any results are too valuable to me.
    Thanks in advance. Danny.

  • Has anyone used a USB device server with a DAQmx or NI-VISA USB device?

    Hi,
    I have an application where I need to communicate with USB devices (some through DAQmx, others through NI-VISA) that will be more than 15 feet away from the controlling PC.  I could use USB-ethernet-USB dongles, but I also see that there are USB-over-ethernet device servers available (like this one: http://www.usbgear.com/computer_cable_details.cfm?​sku=USBNET-400&cats=104&catid=187%2C188%2C104%2C65​...).  Has anyone used these or similar USB device servers successfully with LabVIEW?  
    Thanks,
    JasonP

    http://forums.ni.com/t5/Multifunction-DAQ/Does-NI-​offer-USB-extension-solutions/td-p/381873
    http://forums.ni.com/t5/Dynamic-Signal-Acquisition​/Using-a-quot-USB-2-0-extender-over-Cat-5-quot-to-​...
    http://forums.ni.com/t5/Multifunction-DAQ/Can-I-us​e-a-USB-Extender-with-USB-6008-or-cDAQ/td-p/920361
    Let me know if you have any more questions.
    Product Support Engineer
    National Instruments

  • Has anyone used DETOX MY MAC and can it be trusted

    My Mac Mini n now running very slowly, its difficult to open up anything, and starts up really slowly. In general its just a pain. For a week now I can't open my emails in AOL, I can see them but can't open them.
    I have thought about DETOX MY MAC but I am worried that I will just be downloading more problems. Has anyone used it and can it be trusted
    Thanks Ann

    Don't install such "utilities." They're all scams.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen. Click the Clear Display icon in the toolbar. Then take one of the actions that you're having trouble with. Select any messages that appear in the Console window. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Has anyone used a boxware keyboard buddy with their iphone?

    has anyone used a boxware keyboard buddy with their iphone?

    kj6tk wrote:
    I guess if you travel the iPhone is not the device to buy.
    And which device to buy for travel? As far as I know other smartphone platforms even don't have an update facility like AppStore. And by the way what are your criteria for the perfect travel phone? I would place being able to use it in other countries (world phone), having easy access to internet and email and ability to remotely sync Contacts and Calendar on top of my list. All of which iPhone is capable like few other phones.
    I'm sorry, John, but your statement seems like utter nonsense and is misleading for others. First being able to update apps doesn't cross my mind as a main functionality for travel. Second I was just travelling to SC and easily installed a new app from iPhone and updated an existing one. In your case I believe there's a mishap with AppStore. Probably you have a false update notification. Just compare versions of the apps you have with the versions of the same apps AppStore shows. I bet version are same. That's why it doesn't let you install.
    If you want to sync your iPhone Contacts and Calendar (which seems more like a genuine travel requirement) you can do it via MobileMe or Yahoo and few other similar web services.

  • Has anyone used the Applesause Polish from Invisible Shield!

    Has anyone used that stuff?
    Does it work?
    What about on a 3G iPod?
    Thanks

    I bought it and I think it´s really good. I test it against a macbook pro 13" and I found it very similar in times, sometimes the Sonnet reader beat the built in reader, usually not but sometimes it did.
    It´s a little tricky to put the cards into the reader but I guess that becuse that way it´s harder to push the card out by mistake.
    I also love that it can live on my macbook pro becuse it fits perfectly, no need to put it on and off evertime I use it.
    But the one you are saying is not the one I bought, becuse it´s almost 50 usd the one I have
    https://secure1.sonnettech.com/product_info.php?cPath=24_130&products_id=390&osC sid=d09730751ecf7cabe0210f347b4e4b20
    I also bought the dual compac flash reader and I also love it, it´s extremly fast
    Sorry that I didn´t answer faster but I was working and I never get the advice that I had a message.

  • Has anyone used BootStrap Tour or PageGuide.js with their SAPUI5?

    Hello,
    Has anyone used any of these guide frameworks or something similar on their web applications across multiple views?
    Regards,

    This is a menu that has been created using Fireworks as can be verified by the following statement
    <!--Fireworks CS3 Dreamweaver CS3 target.  Created Wed Mar 24 11:44:39 GMT-0400 (Eastern Daylight Time) 2010-->
    The creation date tells me that the menu was created just on a week ago.
    So you are now having a problem with the newly created non-Spry menu! What better place to drop in then our trusty Spry Forum that deals with Spry related issues.
    We will help you though.
    http://www.greatermichiganpmc.org/ looks for a style sheet that it cannot find unlike http://www.greatermichiganpmc.org/pmc.htm where it has been found. Change the URL (in red) to reflect where the style sheet resides.
    <script language="JavaScript1.2" type="text/javascript" src="mm_css_menu.js"></script>
    <style type="text/css" media="screen">
         @import url("./pmc.css");
    </style>
    I hope the above helps our mates using Fireworks.
    Ben

Maybe you are looking for

  • Why are Windows 'APP's so much harder to code than a Windows Forms application?

    For example I have been smashing my head against a wall trying to save an image file from a share target, the best help I can find is the below code: https://social.msdn.microsoft.com/Forums/en-US/65a61679-0da8-4109-8a69-b918be351dfa/how-to-save-a-bi

  • Can not open 7.1 program in labview 8.5.1 -- handler error

    I made a program in labview 7.1 And I wanted to open it in labview 8.5.1, but it opens with errors, and I can not run it. In every sub vi, till the lowest level, I got the error "handler error". Can somebody help me? 

  • Mass reversal of doc

    Hi Gurus This is related to my other thread FCHR reversal. All the checks cleared thru my the program FCHR has generated the docs (more then 1000) and affects a GL.Now I want to reverse these docs and nullify the GL. How to do the mass reversal of do

  • What is the best way to learn Mac OS X 10.7 Lion in depth?

    What is the best way to learn Mac OS X 10.7 Lion in depth? I have updated to lion a few months ago, found my way around just by playing with it, but now I would like to get serious and learn pretty much all it can do. But wondering if I should get on

  • HP Pavilion G6 - Radeon graphics card issue

    Hi all! I have a HP Pavilion G6-2240SH notebook, that has two graphics card. I'm using Windows 8.1 operating system The motherboard's graphics card works correctly. But there's a hyper-super other card: Radeon HD 7600M I tried to use the official dri