How to verify that the system isn't infected with a virus

Does anyone know how to check to see if your system has been infected with any type of malware? I read in an article at zdnet.com that there was a Mac OS X trojan spotted, but the article did not say how to locate whether or not you had been infected. I do not have a virus checker on my computer. Someone gave me a suggestion to go to the terminal and type in the following:
ls /Users/Shared/.*.so
Any comments?

fane_j wrote:
Sally R. wrote:
Someone gave me a suggestion to go to the terminal and type in the following:
ls /Users/Shared/.*.so
This was published on MacWorld's site, and it's not a very good tip. Try this instead
ls -la /Users/Shared/*.so
Turns out I was wrong about that. Somebody else suggested something even more complicated and got this reply:
By bastion
Fri Feb 24 08:49:05 PST 2012
PeterSParker said
Your terminal statement has an extra "." in it that prevents it from working.
Also, you should add the options -alR to show what is happening, and to search subdirectories.
The revised command looks like this:
ls -alR /Users/Shared/*.so
The above is completely wrong. The command as shown in the article is appropriate.
The "." is not extra and doesn't prevent the command from working. It's specifying that you're listing files that start with a period and end with ".so" with anything in between being matched.
Because you're explicitly searching for things that start with "." you don't need the -a flag.
Because you only care about simple existence and not any metadata you don't need -l.
Because the files of interest are installed in /Users/Shared directly, and not subfolders thereof, you don't need -R.

Similar Messages

  • How to verify that the variable "does not contain" a value?

    Hi
    I am using CP 7.0.1.237.
    We want to use Text Area widget for a custom quiz and verify an answer. While we figured out how to verify the existence of certain keywords, we are not able to figure out how to verify that the content should NOT contain certain keywords. For example, we want to ensure that the text entered in this widget should not contain "Transformation" and "Non-compliant".
    Is this possible at all?
    Thanks
    Sreekanth

    Here's what the solution might look like in JavaScript.  This would be for SWF output and aimed at Cp 7.  For Cp 8, this would still work for SWF output, but you'd probably want to take advantage of the new unified JS API that gets and sets Cp variables for both SWF and HTML5 output.  You can read more about that here:  Common JS interface
    //Get the text area value from Captivate (SWF output Only)
    var cpTextAreaValue = document.Captivate.cpEIGetValue('m_VarHandle.v_TextArea);
    //convert the value to lower case to properly compare
    cpTextAreaValue = cpTextAreaValue.toLowerCase();
    //Check if text area value contains the words "transformation" or "non-compliant"
    if(cpTextAreaValue.indexof('organizational') > -1 && cpTextAreaValue.indexof('behavioral ') > -1 && cpTextAreaValue.indexof('managerial') > -1 && cpTextAreaValue.indexof('transformation') < 0 && cpTextAreaValue.indexof('non-compliant') < 0){
      //the text area has the correct answer so increment varScore
      //get the current score from Captivate
      var score = document.Captivate.cpEIGetValue('m_VarHandle.varScore');
      //increment score by 1
      score++;
      //set score in Captivate
      document.Captivate.cpEISetValue('m_VarHandle.varScore', score);
    } else {
      //the text area does not have the correct answer so show message to user inside of Captivate
      document.Captivate.cpEISetValue('m_VarHandle.v_message', 'Answer is not correct');
    This JS has not been tested.  Note that the "does not contain" operator is done using the "indexof" operator in JS. 
    Jim Leichliter

  • How to verify that the request has been moved to Quality System

    Hi friends,
    I a new abaper and i need ur help in solving this issue.
    I have developed an object and released( as per the suggestions given already in this forum). Its working well and i can see the request in released status in se09.
    No what i really want is , How can i verify that the request has been moved to Quality System by the basis people, assuming that i have only access to dev system.

    Yes, once u release the request, if it is successfullly released will make the request avaialble under released requests
    As an ABAP'er this is enof
    <b>wht abt me Sravanan :-(</b>
    Regards
    - Gopi
    Message was edited by: Gopi Narendra

  • How to verify that the SCCM data is importing in Service Manager properly

    Hi,
    we are using SCSM 2012 R2 with SCCM 2012 R2 connector.
    How could I verify that the configuration manager data is importing properly in Service Manager.
    Since many of the systems are not showing installed application in service manager that are showing in Configuration Manager, therefore, I have to verify that SCCM data is importing properly in Service Manager.
    Further, we I check the incidents, affected CIs are missing or blank.
    Please suggest.
    Regards, Syed Fahad Ali

    If you look at the history of the CI it will tell you everything that is being written to it. If some of your systems are not showing their installed software, you may want to check that the ConfigMgr connector is even syncing that particular machine.
    If you look at the CI history and don't see any entries from "System Center Configuration Manager", the machine may not be in the appropriate collection. If you take a look at the configuration of the connector, you will see the collections that
    are synced. In order for a machines information to be populated, it must be in one of the selected collections.  
    Matthew Dowst |
    Blog | Twitter

  • How to verify that the user has changed table row data before db update

    Hi all,
    Iam using Oracle ADF with EJBs.
    I have a single selection table that displays rows of data returned from a function of my data control.
    The columns of my table are editable so that the user can change the data. The user selects a row, changes the data in one or more columns of the row and saves the data by means of a submit button. The code in the submit button, identifies the row of the corresponding iterator that the user clicked on and updates the data in the database (using the 'mergeEntity' function of the EntityManager)
    Before saving the data, I want to put some logic to check whether the user has actually changed some data to avoid unnecessary updates in the database . But for this I need a technique to detect that the user has indeed changed some data in the table row.
    One technique I have been using so far was to isolate the iterator row of the table and then query the corresponding row in the database table and compare their values.
    Except from dummy, this technique is not efficient if the table contains many rows.
    Moreover, in my case I have observed that on successive updates on the same row , the query on the database returns the new values (user changed values) and not the actual values contained in the database table. This means that when the user updates an iterator row the cached data affect also the results of the SELECT statement from the actual database table!!! Isn't this strange ?
    Can somebody propose me a neat method to detect when the user has changed the the data of an iterator row ?

    Hey Alan,
    The below solution seems overly complicated to me and can not be implemented without a custom screen and/or the use of JavaScript. Also, if your main concern is that a user may accidentally loose all their data because they closed the browser window or the session times out before they hit the save button then this solution does not help you.
    There are a couple of simpler approaches you can take here:
    # If the use of JavaScript is permissible you can hook into the windows 'onUnload' event, and pop-up a message box which gives the user the opportunity to cancel closing the window and save their case if they haven't already.
    # Implement an autosave feature by hooking into one of events provided by web determinations. A simple (but rather naive) way of doing this would be to hook into the OnRenderScreenEvent and call save on the interview session every time the event fires. This guarantees that all the data the user has submitted will aways automatically be saved, thereby removing the need to make sure the user manually saves their data before closing the browser.
    Automatically making Web Determinations close a browser window has to be done using JavaScript. However, doing so means that a) it won't work for people who turn off JavaScript, which is commonly done for accessibility reasons b) you'll likely run afoul of the browser's security mechanism (they generally won't let you close a window that you didn't open and some really don't like you doing that at all).
    Thanks,
    Kristy

  • Apple how is possible that the guy stolen my iphone with find my iphone activated get into my apple id account and erase my iphone without my password??

    My iphone was stolen and i have activated "Find my iphone", when i log in on my icloud accont to find my iphone it was desconected and i activate the lost mode and i gonna be alerted when my iphone get online again. But oh what a surprise 45 minutes later someone restore my icloud password and login in my account and erase my iphone??? How is that possible, he doesnt have my password or how he get into my account and reset my apple id???
    I am very disapointed with Apple because i have activated "Find my iphone" and have a long passcode active and it was not enough because the guy who stole my iphone can resotre my apple id password and get into my icloud account and deactivate "Find my iphone" then when i try to login into my apple id account surprise my password is incorrect?? and i have to recover it when i login to my icloud accont my iphone is not longer have "Find my iphone" active??
    Apple guys i need your answer because the app "Find my iphone" isnt secure and usefull because the guy who stole my iphone can get into my apple ID account to erase my iphone, VERY DISAPOINTED CUSTOMER.

    The very similar situation with mine:
    https://discussions.apple.com/thread/3492726
    I can't find any solution. I don't even remember when I changed my apple ID! So does that means I cant recovered my purchased apps from my " old" account? I am totally innocent, for I did not intend to "Change" my account name

  • I think I've been infected with a virus and my other anti-virus program isn't catching it; how do I turn on Firefox's virus protection?

    For the past few months, I've had this very weird problem. Any time I'm online, what looks like a big cursor (as if I'm in a writing program or typing in a text field) will appear in random places on any webpage. The cursor flashes, can be different sizes, and comes and goes randomly. Sometimes it's almost three-quarters the height of the webpage; sometimes it's small. I mentioned it to a computer-savvy friend who suggested that the computer might be infected with a virus. I have Avira, but apparently it's not catching this virus, if that's what it is. How do I know whether Firefox's anti-virus program is enabled, and do you think it can solve my "cursor" issue?? Help!

    You may have switched on [http://kb.mozillazine.org/accessibility.browsewithcaret caret browsing]: press F7 to toggle
    See http://kb.mozillazine.org/Scrolling_with_arrow_keys_no_longer_works
    Tools > Options > Advanced : General: Accessibility: [ ] "Always use the cursor keys to navigate within pages"
    See also http://kb.mozillazine.org/Accessibility_features_of_Firefox

  • How to verify that embedded OC4J is loading Custom LoginModule?

    I've written a custom login module to authenticate against a custom datastore. I've added a system property
    java.security.auth.login.config=C:\javadev\...\jaas.configas recommended by Yvonne here: Re: Custom LoginModule used by BC4J
    I still get the following when I load a UIX page out of this module:
    msg=JBO-33021: Failed authenticate user nullThere are many debug System.out(...) statements in the code (including in the initialize() function) but none are showing up in the OC4J console. Does anyone know how to verify that the LoginModule is indeed getting loaded? Is it normal for these System.out() statements not to show in the OC4J console?
    I get the impression that the LoginModule is not being loaded but I'm not sure if those traces are enough...
    Thanks,
    /sfl

    Thanks much for the prompt reply and debugging tips Steve and Avi!
    I used both switches (-DApplicationServerDebug and -verbose:class) and still no sign of the class being loaded; none of the traces (I did trace in the construct, though I failed to mention in my original post) nor do any of the app server or jvm debug messages show any sign of the LoginModule being loaded. So now I'm fairly certain I'm going about the wrong way to get this module loaded. Should I also be posting this to the JDeveloper forum?
    My application module configuration is as follows:
    jbo.security.config=<blank> (is this right?)
    jbo.security.context=oracle.security.jazn
    jbo.security.enforce=Must
    jbo.security.loginmodule=customModuleThe command line to the JVM contains:
    -Djava.security.auth.login.config=C:\javadev\jdev9052\j2ee\home\config\jaas.config[yes Avi, I was unfortunately imposed an M$ env. by the powers that be : ( ]
    And, well I've been trying a lot of different things w/ the jaas.config file:
    customModule{
    myPack.controller.MyLoginModule required;
    myApp{
    myPack.controller.MyLoginModule required;
    myPack.LookupModuleLocal{
    myPack.controller.MyLoginModule required;
    myPack.LookupModule{
    myPack.controller.MyLoginModule required;
    Ws-MyProg-webapp{
    myPack.controller.MyLoginModule required;
    default{
    myPack.controller.MyLoginModule required;
    current-workspace-app{
    myPack.controller.MyLoginModule required;
    };Any idea where I'm going wrong? Do I need to do anything else to get this module loaded? At first I thought I needed to modify the jazn-data.xml file but I saw a note in another thread Custom LoginModule used by BC4J which says that it's not necessary to modify it when using a custom LoginModule. Is this right, or should I be modifying that file?
    Thanks,
    java.lang.Object - jobject ;- )

  • How to verify whether the signature is updated?

    How to verify whether the signature of anti-spam and anti-virus is updated??

    If you are at the CLI and use antivirusstatus it also shows when the last update was done and when the last successfully was done. When it was successful the pattern are up to date.
    Same it true for antispam (antispamstatus)
    Best Regards,
    Mark

  • Cannot download book. ..the system is already connected with an other apple id. ???

    My Mac is used from me and my wife with two different users on the System.
    Wa are also use iPhone and iPad.
    My wife purchased a ebook with the iPad in the apple store. Now she would like to read the book on the mac.
    But when she would download the book she got the messages, that the system is already connected with an other apple id.
    How can we fix this? And why connected with an other apple Id?
    Thanks for help
    Regards
    Andy

    Each device can only be authorized for one Apple ID at a time, and the authorization can only be changed once every 90 days.

  • Verify whether the dispatcher configured has registered with the l

    Hi,
    How to verify whether the dispatcher configured has registered with the listener after the database startup?
    I think this task is possible with "lsnrctl services"
    bt dnt knw how to figure out.....
    plz let me know how to do this ..... how to verify whether the dispatcher configured...by looking at the below code segment. .....
    LSNRCTL> services
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=linux-tkuk.site)(PORT=15 21)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "orcl" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:89 refused:0 state:ready
    LOCAL SERVER
    Service "orclXDB" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 current:0 max:972 state:ready
    DISPATCHER <machine: linux-tkuk, pid: 7417>
    (ADDRESS=(PROTOCOL=tcp)(HOST=linux-tkuk.site)(PORT=13729))
    Service "orcl_XPT" has 1 instance(s).
    Instance "orcl", status READY, has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:89 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    LSNRCTL>

    "D000" established:0 refused:0 current:0 max:972 state:ready
    DISPATCHER <machine: linux-tkuk, pid: 7417>You have a dispatcher D000 registered with listener listening on PORT=13729

  • When i download itunes on my PC, after verifying all the system requirements, it then says program incompatible. How do i fix it?

    When i download itunes on my PC, after verifying all the system requirements, it then says program incompatible. How do i fix it?

    What's the precise text of that error message, please? (There's a few different ones I can think of that you might be getting.)

  • This installation package could not be opened. Verify that the package exists and that you can access it, or contact the applikcation vendor to verify that this is a valid Windows Installer package." How to fix this installation error?

    Does anyone know, how to fix  ' This installation package could not be opened. Verify that the package exists and that you can access it, or contact the applikcation vendor to verify that this is a valid Windows Installer package." ?

    At what point in the process are you getting this message? Have you tried downloading a fresh copy of the iTunes setup file from http://www.apple.com/itunes/download/ ?
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • My original Apple ID is associated with an email address that I no longer have access to. How do I reset the system to recognize my new email address as my primary point of contact and erase the other one?

    My original Apple ID is associated with an email address that I no longer have access to. How do I reset the system to recognize my new email address as my primary point of contact and erase the other one?

    If when you go to icloud.com and sign in with your current iCloud ID you see all your iCloud data there, you can safely sign out of the iCloud account on your Mac and choose Delete at all the prompts, then sign back in with the current ID.  This only deletes the data from your Mac, not from iCloud.  Your iCloud data will reappear on your Mac when you sign back in after a brief delay as it redownloads.  If you have automatically imported your photo stream photos to your iPhoto library you won't lose them either (if you haven't, save them to your library first).
    Again, only do this if when you go to icloud.com with your current ID you see your iCloud data there.

  • Connecting to the LOB system has failed. A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is

    hi ,
    when generate the schema , i  got the below error, please any one put your inputs:
    Connecting to the LOB system has failed.  A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server
    is configured to allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server).

    thaks shanky,
    but facing another , after generate schema from  WCF_SQL, im unable get elements in my schema.
    this is schema generate from storeprocduer , but thru WCF-sql im unable get the elements like
    id, name
    <xsd:schema targetNamespace="urn:schemas-microsoft-com:sql:SqlRowSet2" xmlns:schema="urn:schemas-microsoft-com:sql:SqlRowSet2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:sqltypes="http://schemas.microsoft.com/sqlserver/2004/sqltypes" elementFormDefault="qualified">
      <xsd:import namespace="http://schemas.microsoft.com/sqlserver/2004/sqltypes" schemaLocation="http://schemas.microsoft.com/sqlserver/2004/sqltypes/sqltypes.xsd" />
      <xsd:element name="Test.dbo.sample">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="id" type="sqltypes:int" minOccurs="0" />
            <xsd:element name="name" minOccurs="0">
              <xsd:simpleType>
                <xsd:restriction base="sqltypes:nvarchar" sqltypes:localeId="1033" sqltypes:sqlCompareOptions="IgnoreCase IgnoreKanaType IgnoreWidth" sqltypes:sqlSortId="52">
                  <xsd:maxLength value="1000" />
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:schema>
    <Test.dbo.sample xmlns="urn:schemas-microsoft-com:sql:SqlRowSet2">
      <id>18</id>
      <name>BIRADAR</name>
    </Test.dbo.sample>
    <Test.dbo.sample xmlns="urn:schemas-microsoft-com:sql:SqlRowSet2">
      <id>18</id>
      <name>BIRADAR</name>
    </Test.dbo.sample>
    <Test.dbo.sample xmlns="urn:schemas-microsoft-com:sql:SqlRowSet2">
      <id>19</id>
      <name>sw</name>
    </Test.dbo.sample>
    <Test.dbo.sample xmlns="urn:schemas-microsoft-com:sql:SqlRowSet2">
      <id>18</id>
      <name>BIRADAR</name>
    </Test.dbo.sample>
    <Test.dbo.sample xmlns="urn:schemas-microsoft-com:sql:SqlRowSet2">
      <id>14</id>
      <name>swe</name>
    </Test.dbo.sample>
    <Test.dbo.sample xmlns="urn:schemas-microsoft-com:sql:SqlRowSet2">
      <id>13</id>
      <name>se</name>
    </Test.dbo.sample>

Maybe you are looking for

  • (OS X Lion) cant install windows on HD with multiple partitions

    I have installed os x 10.7 lion the day it rolled out from the app store and everything was good. But now, I decided to re-install windows 7 on my macbook on lion.  I currently have 2 partitions: 1 for media files and the main partition for the os fi

  • Facing Problem with Select-options input data......help me?

    I have a select-options on my selection screen. In the database table i have different four values for this. ex EEX01, EEX02, EEX03 and EEX04. their overall names are DE, HE, IT, TR respectively. Now the requirement is user will enter this data like

  • Need help in Solution Manager certification

    Hi All, I am appearing for Solution Manager certification in Dec'2007. Please send me some documentation regarding solution Manager.  Please email to the following :  [email protected] Appreciate all your help. Thanks in Advance. Harish.

  • Function module L_TO_CREATE_MULTIPLE and commit

    Hi, Does anyone knows if in one report I call function module L_TO_CREATE_MULTIPLE with parameter I_COMMIT_WORK = SPACE and if in the main report after the call of the function module i do a commit command that allows that the transfer order is creat

  • How to associate recent (non-CC) Acrobat XI purchase with account?

    I recently purchased Acrobat XI Pro (Mac, non-CC), and it is installed and running on my rMBP. I already had Premiere Pro CC installed, as well as Dreamweaver CS6. These last 2 apps are displayed in the "Your Apps" section of the "Apps" tab on the Cr