Login and history using Terminal or another utlity

I have an Powerbook that I suspect was used by someone to download some unwanted material using a neighbors Internet Connection. Is there a way I can pull up a history using terminal, or some other application that will allow me to go back a couple of weeks and determine what IP address my computer was using during a specific date/time? I've used terminal to identify there was a login but can't see the history. Thanks in advance

Thanks for the feedback. A couple of things.
1) when you launch Console, click on the logs button (upper left corner), click on the /var/log/ triangle, and you should see the secure.log. If it's grayed out, then use the commands I posted above. If the secure.log doens't show any activity, then look at the various secure.log.X.gz files.
2) what shows a deeper log? I don't understand what your seeing, where.

Similar Messages

  • Problem - Custom Page Call Working via APPS login and not using CRM login

    I have created a custom link in the Oracle Portal order page. The call (click) works correctly when I login using a regular apps login and choose ORDER STATUS , but if I login directly to CRM and then access the same page via clicking on ORDER PORTAL image, the link doesn't work --> it seems to get translated to something I am not familiar with. I have illustrated the problem below, and am trying to figure out what to do to make the CRM login environment work as well.
    Thanks.
    Channeld
    Code modification to the CO -->
    String dest_url = "OA.jsp?OAFunc=XXX_ONT_FUNC_129&Header_ID_p="+Header_ID;
    OAUrl oaurl = new OAUrl(dest_url);
    dest_url = oaurl.createURL(pageContext);
    osb.setDestination(dest_url);
    --> what the link shows in on the order page using both logins
    http://pl1ua121.corio.com:8000/OA_HTML/OA.jsp?OAFunc=XXX_ONT_FUNC_129&Header_ID_p=11261&_ti=1811750263&oapc=5&oas=grPSiOwvEyLuXdxKt_a5GA..
    --> what the link gets translated to once clicked within a CRM login session; note, during a regular apps login,
    the link does not get translated.
    http://pl1ua121.corio.com:8000/OA_HTML/RF.jsp?function_id=27070&resp_id=50661&resp_appl_id=672&security_group_id=0&params=08V2jKe4UMpLbUVYUjsT8ZCABTTWpQnO7QdLdJyREFbPg8IIF5.vbStfOY8IYonLVX-dbml9UlrBKO.-rfzhVC2iib.jk6vv-9lnvaN2g5jHG7dKBUwLdgDx0woWFYmOIGTJJxkjHrHfmNMIqDTmxzD8K-jXUU8Vqja8Ajn98ZYtdz6iVvq.yKvS3fbGlxu7vsBw20gV7Yp8gAp9Ps90OUg.5HJh9CD8FhYpiJp4ffQ

    Hi,
    Thanks for the update.
    Sir its not about calling the JSP Page from OAF page.
    My requirement is what I have explained above.
    Please suggest its urgent.
    Thanks,
    Raja Dutta

  • How do I unverify an alternate email for one Apple ID and then use it for another Apple ID?

    So I need to use my email address for another Apple ID and when I enter it, it says that its already verified when I deleted it from my other Apple ID. Does anyone know how I unverify that email address???? Please help!!!

    Hey, try these steps:
    Go to My Apple ID.
    Select Manage your Apple ID and sign in.
    Scroll down to check if there are alternate and additional email addresses
    Delete or remove those email addresses
    Hope this helps.

  • Can I set up iTunes account in 1 country and then use it in another

    Hi, I have upgraded my iPad 1 to an iPad 3. I want to set up and send my old iPad 1 to my great auntie (86) in the UK, I am in Spain.
    I started setting it all up for her setting the country as uk, creating an Apple ID etc... But when it comes to iTunes, the Spanish shop opens and asks me to set up the Apple ID for iTunes. my question is can I set everything up from here ? download the few apps I think she will want and send her the iPad and she will have no problems,  or is she going to have problems as the details will be of a Spanish account, I am probably going to have to give my credit card, and the iPad will loose the apps , or won't let her create a uk account further down the line ?
    Thank you, she will not be able to set it up herself so if I cannot set up from here I am going to have to find someone to do it for her over there.

    You can only use the Store in the country where you are resident.  Items purchased in store in another country will no longer be accessible for redownloading when you change country but you can keep on using them as long as you have a copy on your computer.
    It is not easy to change country and requires a valid billing method with a physical billing address in the other country.  There is also a 90 day wait period between country changes.  Furthermore, it is against the terms of service for the iTunes Store to even use your own country's store while not in your country, much less use another country's store.
    "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance." - http://www.apple.com/legal/itunes/us/terms.html#SERVICE  (reads the same for pretty much any country).

  • Disabling normal login and only using smart card login?

    I've managed to setup login using BELPIC (Belgian Identity Card (smart card). However I can still login using username/password. Is it possible to restrict the system only using smart card login? (maybe via tweaking the authorize file?)
    Thanks

    The problem isn't with the provider part of the code - it has to do with security privleges. Java code running from the command line has full access to the file-system. Servlets running inside a container do not.
    In order to access cryptographic keystores, the JVM must allow the servlet code to access local files (and through them, the device drivers to the crypto token). Servlet code running inside a web/application server container, by design, are restricted in their ability to access local files on the servlet container machine (other than configuration files and application code under the servlet context root).
    In order to continue with my project, I had to temporarily provide the servlet full access to the machine's file-system in the java.policy file for your JVM, along the lines of the following:
    grant {
    permission java.security.SecurityPermission "authProvider.SunPKCS11-NSS", "getSignerPrivateKey";
    I hope to go back and restrict this access so that only the specific security grants are available to the servlet to access the private key (the above is too lenient).
    You will need to do something similar to your JVM's java.policy to allow the servlet to access the private key. Substitute the "authProvider.SunPKCS11-NSS" with the driver for your own token.

  • XML Data. Extracting elements and attributes using Xpath or another?

    Hi experts,
    Using Oracle 11g.
    I have an XML table which stores XML in one column (xml_col) like the below structure.
    Example:
    <measure id="abc">
      <data-elements>
        <data-element id="ab">
          <value>40</value>
        </data-element>
        <data-element id="cd">
          <value>8</value>
        </data-element>
        <data-element id="ef">
          <value>38</value>
        </data-element>
        <data-element id="gh">
          <value>32</value>
        </data-element>
      </data-elements>
    </measure>I've been trying endlessly to run XPath queries on this column to obtain the attribute of the <data-element> node and the value of the <value> node within.
    My goal is to turn this into a table of:
    ab | 40
    cd | 8
    ef | 38
    gh | 32
    My mind is stuck on doing this below and wrapping it with a CSV to rows hierarchical query. I can not convert to xmltype to a string to make that work though.
    select str1,str2 from (
    select extract(xml_col, 'string-join(//@id, '','')') str1
    ,extract(xml_col, 'string-join(//value, '','')') str2
    from xml_temp_table)
    CONNECT BY LEVEL <= LENGTH (REGEXP_REPLACE (str1, '[^,]+')) + 1;But I get the following error:
    ORA-31011: XML parsing failed
    ORA-19202: Error occurred in XML processing
    LPX-00607: Invalid reference: 'string-join'.
    I'm looking for a non PL solution.
    Any suggestions appreciated.
    Thanks
    Edited by: chris001 on Feb 26, 2013 12:06 PM
    Edited by: chris001 on Feb 26, 2013 12:07 PM

    chris001 wrote:
    My mind is stuck on doing this below and wrapping it with a CSV to rows hierarchical query. I can not convert to xmltype to a string to make that work though. Oh boy!
    This should ease your pain ;)
    SQL> select x.*
      2  from xml_temp_table t
      3     , xmltable(
      4         '/measure/data-elements/data-element'
      5         passing t.xml_col
      6         columns element_id  varchar2(10) path '@id'
      7               , element_val number       path 'value'
      8       ) x ;
    ELEMENT_ID ELEMENT_VAL
    ab                  40
    cd                   8
    ef                  38
    gh                  32

  • Login and privileges using UIX, Urgent

    I have a application where I want to give privileges based on user who login to the application. How can I do this using ADF-UIX? Any built in methods available?
    Any help will be highly appreciable, because I am stuck at this point, as I am a newbie in UIX.
    Thanks in advance.
    Ponic

    Hi,
    you can follow the steps in http://www.oracle.com/technology/products/jdev/collateral/papers/10g/adfstrutsj2eesec.pdf
    I am using FORM based authentication, you can use a JSP or a UIX page.
    by example:
      <login-config>
        <auth-method>FORM</auth-method>
        <form-login-config>
          <form-login-page>Login.uix</form-login-page>
          <form-error-page>Login.uix</form-error-page>
        </form-login-config>
      </login-config>

  • I got a new iPhone 5 and since it wasn't updated to ios 8 version it didn't let me use my latest update, now I can't login to my iCloud without it saying it's incorrect but it does let me reset it and I use the password still tells me wrong Apple Id

         I recently received a new iPhone 5 to replace my old broken iPhone 5 I backed up my old broken iPhone 5 into iCloud I checked to see it was all there, when it came to set up my new iPhone 5 my new iPhone 5 wasn't updated to the latest version my old one had ios8 my new one has ios7 so it gave me the choice to use another back up date which was from a year ago and I used to have another email as my primary for Apple ID and now my new iPhone is setup with my old Apple ID and every time I try to log in it tells me it's incorrect I reset the password  but since it's another email it won't let me log on what can I do?

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • Cannot run Disk Utility, use terminal, or boot from CD, all HDs locked

    I have a Mac Pro with 4 internal drives and 3 of them suddenly locked themselves. I can't run Disk Utility -- I get "underlying task reported failure on exit."
    I can't boot from Disk Warrior CD. I hold down the C key til the Apple logo appears, and then the computer just restarts into my regular system on my hard drive.
    I can run some apps from my startup drive, (obviously I can get on the internet). I downloaded Drive Genius but it will not install.
    I cannot use the terminal to try any of those fancy tricks I read about here.
    Here's what I get when I try Terminal:
    login: PAM Error (line 396): System error
    login: Could not determine audit condition
    [Process completed]
    And after that, I cannot type in the Terminal window.
    Man, this is crazy. 2 of my other internal drives have backup systems on them, but they will not show up as choices in the startup disk section of my system preferences - cuz they are locked.
    Any suggestions? I'm about to install a new drive and try and clone my working system on it and put Disk Warrior on it.

    DJWillis wrote:
    Wait, can I use Terminal from another computer in target mode?
    yes, but do you mean you can boot it in target mode but not from a DVD? this is very strange. try booting fro a DVD in a different way. reboot and hold "option" at the chime. this should boot you into startup disk manager. normally you can insert the DVd at the point and choose to boot from it.

  • Using terminal to connect to localhost:8888

    I have mysql installed and im using terminal to connect to localhost:8888 but its not working
    mysql -h localhost:8888 -u root
    What am I doing wrong?
    thanks in advance

    I think you cannot ssh to your machine as root if you didn't enable the root user on your computer (it isn't enabled by default and you shouldn't, unless you have a very good reason to do so).
    If you just need a webserver for local testing of webpages you can use MAMP. If you do, simply enter
    /Applications/MAMP/Library/bin/mysql -u root -p
    It then asks you for your password (root) and you're done (the mysql root user has nothing to do with your systems root user). You can also use phpMyAdmin from the MAMP startpage.
    That's the way I do it here and it works flawlessly. The latest MAMP comes with PHP 5.2.6 and MySQL 5.0.41. Place your pages inside /Applications/MAMP/htdocs/someFolder and then you can access them via http://localhost:8888/someFolder. Use localhost:8889 as your MySQL host in your scripts with user root/password root.
    Most paths in MAMP are hardcoded, so you have to install it in /Applications (or place an alias of the MAMP folder there).
    Hope it helps.
    Ralf.

  • After trying to change permissions on my computer so others on my network can access files, my external Hard Drive has a lock on it and I can't access files. I've tried repairing permissions, logging in under another Administrator account, using Terminal

    After trying to change permissions on my computer so others on my network can grab files, my external Hard Drive has a lock on it and I can't access files. I've tried repairing permissions, logging in under another Administrator account, using Terminal to fix the problem, downloaded BatChmod but nothing works… Any other suggestions? I have an Imac running OS10.6.8.

    There is suddenly a lock icon on my external backup drive!
    Custom Permissions

  • Using Terminal to copy all files (hidden and not hidden) and folders from one place to another

    How -using Terminal- can I copy all files (hidden and not hidden) and folders (and their contents) from one place to another

    ditto
    DITTO(1)                  BSD General Commands Manual                 DITTO(1)
    NAME
         ditto -- copy directory hierarchies, create and extract archives
    SYNOPSIS
         ditto [-v] [-V] [-X] [<options>] src ... dst_directory
         ditto [-v] [-V] [<options>] src_file dst_file
         ditto -c [-z | -j | -k] [-v] [-V] [-X] [<options>] src dst_archive
         ditto -x [-z | -j | -k] [-v] [-V] [<options>] src_archive ...
               dst_directory
         ditto -h | --help
    DESCRIPTION
         In its first form, ditto copies one or more source files or directories
         to a destination directory.  If the destination directory does not exist
         it will be created before the first source is copied.  If the destination
         directory already exists then the source directories are merged with the
         previous contents of the destination.

  • Filevault encryption paused, despite reset of PRAM and using terminal commands

    I have been trying to partition my HDD but am unable to because file vault encryption is paused - and has been since October 2014.
    I attempted making a new user to see if this would bypass it, but it didn't.
    I have reset the PRAM and have repaired the HDD both in recovery and normal, neither work.
    I have also used terminal command "sudo fdesetup disable" to attempt turning it off, but that doesn't work either.
    Help please??
    Harry

    If you don't already have a current backup of all data, back up before proceeding. There are ways to back up a computer that isn't fully functional. Ask if you need guidance.
    Start up in Recovery mode. When the OS X Utilities screen appears, select Disk Utility.
    In the Disk Utility window, select the icon of the startup volume from the list on the left. It will be nested below another disk icon, usually with the same name. Click the Unlock button in the toolbar. When prompted, enter the login password of a user authorized to unlock the volume, or the alternate decryption key that was generated when you activated FileVault.
    Then, from the menu bar, select
              File ▹ Turn Off Encryption
    Enter the password again.
    You can then restart as usual, if the system is working. Decryption will be completed in the background. It may take several hours, and during that time performance will be reduced.
    If you can't turn off encryption in Disk Utility because the menu item is grayed out, you'll have to erase the volume and then restore the data from a backup. Select the Erase tab, and then select
              Mac OS Extended (Journaled)
    from the Format menu.
    You can then quit to be returned to the main Recovery screen. Follow these instructions if you back up with Time Machine. If you use other backup software, follow its developer's instructions.
    Don't erase the volume unless you have at least two complete, independent backups. One is not enough to be safe.

  • I have a iphone 5 and I can login with my apple id to purchase music. However, when I try to login into icloud using the very same username and password that I use in the apple store it does not work to enter icloud, so what what gives???

    I have a iphone 5 and I can login with my apple id to purchase music. However, when I try to login into icloud using the very same username and password that I use in the apple store it does not work to enter icloud, so what what gives???

    I could do that, however when I select the icloud button (or whatever the heck it is) I am asked to enter the apple id and password. So if you are suppose to create another one for icloud you'd think it would give you the option at this point which would be logical.

  • When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history pa

    When a pop up window comes up it is - search bookmarks and history window! I cannot log into my bank as login button should open new window to log in but I get the search page. I cannot see larger images as again I get the search bookmarks and history page etc. Happens on all options that should open new page. I am so frustrated, this has been happening since Firefox updated itself 2 days ago to Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8 ( .NET CLR 3.5.30729; .NET4.0C) was fine before that. using windows vista. Can you please advise what I should do? Also can you go back to previous version? Error console eg
    Warning: Error in parsing value for 'cursor'. Declaration dropped.
    Source File: https://ib.nab.com.au/nabib/styles/menu_nab.css?id=009
    Line: 116
    ib.nab.com.au : server does not support RFC 5746, see CVE-2009-3555 and Warning: Selector expected. Ruleset ignored due to bad selector.
    Source File: https://ib.nab.com.au/nabib/styles/nabstyle.css?id=014
    Line: 837
    == This happened ==
    Every time Firefox opened
    == 2 days ago after update.

    Do you have that problem when running in the Firefox SafeMode?
    [http://support.mozilla.com/en-US/kb/Safe+Mode]
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this:
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

Maybe you are looking for

  • Thinkpad X1 and Windows 8

    Hi i wanted to sum up what stuff doesn't work on Windows 8 for the Thinkpad X1. I use a Windows 8 Pro Version (Dreamspark) so it's not the costumerpreview or such thing. I installed all of the beta drivers provided by Lenovo. 1) Synaptic Ultranav: Th

  • Driver's SQLAllocHandle on SQL_HANDLE_ENV error, but nothing fixes it

    Unable to connect SQLState=IM004 [Microsoft][ODBC Driver Manager] Driver's SQLAllocHandle on SQL_HANDLE_ENV failed That is the error I am receiving in ODBC manager when i try to test my connection. I can resolve it by giving the user local admin righ

  • Which Institute is better for Functional SAP FI ?

    Hello All, I am an MBA in Finance 2012-2014 Batch, basically from Indore (MP). Currently not working and have experience of 7 months but not exactly in the same domain. I have keen interest in doing SAP in Finance. Please guide me from which Institut

  • Time Machine spilled over into another partition??

    My Backups.backupdb folder in my 100GB external drive partition for Time Machine shows a size of 162GB. How is that even possible? I partitioned my 500GB seagate into: 100GB partition for time machine 400GB partition for everything else Time Machine

  • What is the customer service

    What is the customer service phone number for creative in the US. I am located in CA, and cant find the phone suppoet on their website