Login w/ cookies

Ok, this is probably a simple one. We are using cookies for auto-login
functionality which will be added to an already existing site. The problem
appears to be that existing users who already have the page bookmarked,
most-likely have bookmarks that contain a specific session ID. Since this
session ID does not match the session ID when the cookie was stored, it
doesn't recognize the cookie for autologin. Anyone know of an easy way to
keep it from checking the session id?

What are the other cookie permissions for this domain?
Does it work if you temporarily enable third-party cookies for visited websites or all third-party cookies as a test?
*Tools > Options > Privacy > Firefox will: "Use custom settings for history"
You can inspect and manage the permissions for all domains on the <b>about:permissions</b> page or for the domain in the currently selected tab via these steps:
*Click the "Site Identity Button" (globe/padlock) on the location bar
*Click "More Information" to open Page Info
*Go to the Permissions tab
*Tools > Page Info > Permissions
*https://support.mozilla.org/kb/how-do-i-manage-website-permissions
You can delete the permissions.sqlite file to reset all permissions.

Similar Messages

  • Remember Login using cookies and javascript

    Hello all,
    This is an urgent request. Pls reply asap.
    I have two jsps one in English and other in french. I need to implement a functionality to remember the username in both these jsps. I have a function written in javascript to check if the "remember me" checkbox is enabled and then remember the user name. But it is not working as expected. It remembers in one jsp and if i go to french jsp all the info is lost.
    Can you pls help me? Sample code would help.
    I guess the cookie works only for the jsps under certain folder path say en/jsp/.. and fr/jsp/..

    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Login Form</title>
    </head>
    <body>
    <form name="login" method="post" action="Home.jsp">
    Email : <input type="text" name="email" /><br />
    Password : <input type="password" name="password"/><br />
    <input type="checkbox" name="rememberChk" value="on" />Remember Me <br/>
    <input type="hidden" name="remember" value="0"/>
    <input type="button" value="Sumbit" onClick="submitForm()"/>
    </form>
    </body>
    <script>
         <%
         String email="";
         String password="";
         Cookie cookies [] = request.getCookies ();//Get All Cookies from Client Device
         if (cookies != null){//Check cookies are available
              for (int i = 0; i < cookies.length; i++){
                   if (cookies .getName().equals("password")){
                        password=cookies[i].getValue();//Password which is saved on cookie
                        break;
              for (int i = 0; i < cookies.length; i++){
                   if (cookies [i].getName().equals ("email")){
                        email=cookies[i].getValue();//Email which is saved on cookie
                        break;
         }%>
         function submitForm()//Submit function with checkbox determined value
              if(document.login.rememberChk.checked)
                   document.login.remember.value = 1;
              else
                   document.login.remember.value = 0;
              document.login.submit();
         document.login.email.value="<%=email%>";
         document.login.password.value="<%=password%>";
    </script>
    </html>
    login.jsp
    <%@ page contentType="text/html; charset=iso-8859-1" language="java"%>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Home Page</title>
    </head>
    <body>
    <a href="logout.jsp">Logout</a><br />
    <%
         String email;
         String password;
         String remember;
         email = request.getParameter("email".toString());
         password = request.getParameter("password".toString());
         remember = request.getParameter("remember");
          *if Remember Checkbox is Checked
          *then Save Email and passwod into Cookie
          *and Add Cookies into response/Client Device
         if(remember.equals("1")){
              Cookie pass = new Cookie("password",password);
              Cookie emailAdd = new Cookie("email",email);
              //Setting maximum Expiry Date Of Cookies
              pass.setMaxAge(365);
              emailAdd.setMaxAge(365);
              //Make Persistent Cookie onto Client Device
              response.addCookie(pass);
              response.addCookie(emailAdd);
    %>
    <h4>Welcome - <%=email%> </h4>
    Your password is : <%=password%> <br />
    </body>
    </html>
    Home.jsp
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <%
    Cookie cookies [] = request.getCookies ();//Get All Cookies from Client Device
    if (cookies != null){//Check cookies are available
         for (int i = 0; i < cookies.length; i++){
              if (cookies .getName().equals("password")){
                   Cookie cookie = cookies[i];
                   cookie.setMaxAge(0);
                   response.addCookie(cookie);
                   break;
         for (int i = 0; i < cookies.length; i++){
              if (cookies [i].getName().equals ("email")){
                   Cookie cookie = cookies[i];
                   cookie.setMaxAge(0);
                   response.addCookie(cookie);
                   break;
    response.sendRedirect("login.jsp");
    %>
    </html>
    logout.jsp

  • Cookies are not saved (login info, cookie acceptance, bank cookies etc)

    Cookies are not being saved. examples: if I log into the telegraph site the login does not persist, if I accept the cookies from The Register I get asked again, If I set my location on the BBC news site it resets, the same with my bank website.
    I have tried:
    disabling all add-ons
    resetting firefox
    uninstalling and reinstalling firefox (no add-ons at all)
    deleting my user config files
    deleting anything to do with firefox and reinstalling
    unsyncing firefox
    I'm tearing my hair out now lol. It's making it impossible to use firefox (especialy with banks that set a cookie to recognise the pc etc)
    Any ideas what could be wrong or what else to try to locate the problem?

    In case you are using "Clear history when Firefox closes":
    *do not clear the Cookies
    *do not clear the Site Preferences
    *Tools > Options > Privacy > Firefox will: "Use custom settings for history": [X] "Clear history when Firefox closes" > Settings
    *https://support.mozilla.org/kb/Clear+Recent+History
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, passwords, and other website specific data.
    Clearing cookies will remove all specified (selected) cookies including cookies with an allow exception that you would like to keep.
    It is possible that the <i>cookies.sqlite</i> file that stores the cookies is corrupted if clearing cookies doesn't work.
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookies files like <b>cookies.sqlite-journal</b> in the Firefox profile folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies
    *https://support.mozilla.org/kb/Deleting+cookies

  • Auto-login using cookies

    I have been prototyping and researching Weblogic authentication for several weeks
    now. With a form-based login servlet, how would one implement auto-login? Basically,
    the web site is supposed to set a persistent cookie which contains the users login
    information (encrypted). When the user comes back, they should be logged in automatically.
    This seems like a pretty common concept, but totally unsupported by J2EE. I have
    looked into using filters, but ran into several problems. First, filters don't
    get executed on a protected resource unless the user is authenticated. I don't
    want to use Weblogic's AuthFilter since it's deprecated. Secondly, I tried modifying
    my login servlet to forward to j_security_check. That doesn't work because Weblogic
    won't let you. There is a workaround for that, but j_security_check ignores whatever
    wrapper you put around HttpServletRequest. This makes it impossible to "login"
    for the user. Third, I tried using ServletAuthentication.weak() to manually authenticate
    the user, but how do I redirect the user back to the intended URL? I figured
    out where Weblogic stores the URL in the HttpSession, but that's not officially
    documented.
    I noticed some references in Weblogic's Portal product that it supports auto-login.
    However, I haven't figured out how to do it myself in a Weblogic server.
    I am using Weblogic 7 sp2. Thanks in advance.

    Chun,
    what you need to do is to implement is a Perimeter Authentication. I did that
    successfully with SP2. You have to use SP2, because in SP1 there qas no way to
    supress that all cookies are BASE64 decrypted.
    What helped me a lot is to study SampleSecurityProvidersUnmanaged.zip that you
    can download from
    dev2dev/code
    Enjoy!
    Cheers.
    Frank
    "Chun Hsu" <[email protected]> wrote:
    >
    I have been prototyping and researching Weblogic authentication for several
    weeks
    now. With a form-based login servlet, how would one implement auto-login?
    Basically,
    the web site is supposed to set a persistent cookie which contains the
    users login
    information (encrypted). When the user comes back, they should be logged
    in automatically.
    This seems like a pretty common concept, but totally unsupported by J2EE.
    I have
    looked into using filters, but ran into several problems. First, filters
    don't
    get executed on a protected resource unless the user is authenticated.
    I don't
    want to use Weblogic's AuthFilter since it's deprecated. Secondly, I
    tried modifying
    my login servlet to forward to j_security_check. That doesn't work because
    Weblogic
    won't let you. There is a workaround for that, but j_security_check
    ignores whatever
    wrapper you put around HttpServletRequest. This makes it impossible
    to "login"
    for the user. Third, I tried using ServletAuthentication.weak() to manually
    authenticate
    the user, but how do I redirect the user back to the intended URL? I
    figured
    out where Weblogic stores the URL in the HttpSession, but that's not
    officially
    documented.
    I noticed some references in Weblogic's Portal product that it supports
    auto-login.
    However, I haven't figured out how to do it myself in a Weblogic server.
    I am using Weblogic 7 sp2. Thanks in advance.

  • Portal Login & persistent cookie

    V 6.2
    I had done the following on the IS to enable the persistent cookie for Portal session
    1. Under the service config, checked the 'Persistent Cookie Mode' and gave the max allowed value in the Core Authentication template.
    2. Did the same under the Org (have just one org).
    I login to the Portal as http://machine.example.com/portal/dt?iPSPCookie=YES, close the browser and come back to the same URL but am being challenged for re-authentication.
    Did I miss any configuration to make this happen? Any pointers would be helpful.
    TIA

    What happens if you go to http://machine.example.com/amserver instead, after restarting the browser?

  • Owa_cookie login username cookie lost after logout

    I have a problem with owa_cookie. It seems very simple. When I am logged in, username appears automatically in screen, but after I have logged out, username is not retrieved.
    It seems that the cookie is not saved, as I do not find a trace of it in the cookie directory. Any suggestions?
    Code listed below:
    On load / before header:
    declare
    c owa_cookie.cookie;
    v varchar2(255) := null;
    begin
    c := owa_cookie.get( 'LOGIN_USERNAME_COOKIE' );
    :P4_USERNAME := lower( c.vals(1) );
    exception
    when others then null;
    end;
    On submit / after computations and validations:
    begin
    if :P4_USERNAME is not null
    then
    owa_util.mime_header( 'text/html', FALSE );
    owa_cookie.send( name => 'LOGIN_USERNAME_COOKIE'
    , value => lower( :P4_USERNAME )
    , domain => 'dev.naturalmoney.org'
    end if;
    end;

    Hi,
    Try
    begin
    owa_util.mime_header('text/html', FALSE);
    owa_cookie.send(
        name    => 'LOGIN_USERNAME_COOKIE'
        ,value   => lower(:P101_USERNAME)
        ,expires => sysdate + 356
    exception when others then null;
    end;Regards,
    Jari
    Edited by: jarola on Jul 29, 2011 1:11 PM

  • Stuck in login loop "cookies must be enabled to log in"

    Hey guys. Every time I open ASDM I get a prompt to enter my username and password, and it says in red "cookies must be enabled to log in". I keep clicking ok, but it brings the prompt back. I didn't have a password, but I set an enable password to see if I could get around it, but I couldn't. I've inclued a picture. Does anyone know what's going on? 

    I'm running ASA 9.1 and ASDM 7.14

  • ADF integration with Facebook Login

    Hi,
    just wanted to share a working example of Facebook Login integration in an ADF application, that only uses default ADF Faces tags. Here is how the JSF can look like:
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
        <af:document title="untitled1.jsf" id="d1">
            <af:form id="f1">
                <af:pageTemplate viewId="/oracle/templates/threeColumnTemplate.jspx" id="pt1">
                    <f:facet name="center">
                        <af:panelBox text="PanelBox2" id="pb2">
                            <f:facet name="toolbar"/>
                            <af:panelGroupLayout id="pgl1" layout="vertical">
                                <af:outputText value="Facebook Login" id="ot2"/>
                                <af:outputText value="&lt;fb:login-button show-faces=&quot;true&quot; width=&quot;200&quot; max-rows=&quot;1&quot;>&lt;/fb:login-button>" id="ot1"
                                               escape="false"/>
                            </af:panelGroupLayout>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="header">
                        <af:outputText value="&lt;div id=&quot;fb-root&quot;>&lt;/div>" id="ot3" escape="false"/>
                    </f:facet>
                    <f:facet name="end">
                        <af:panelBox text="PanelBox3" id="pb3">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="start">
                        <af:panelBox text="PanelBox1" id="pb1">
                            <f:facet name="toolbar"/>
                        </af:panelBox>
                    </f:facet>
                    <f:facet name="branding"/>
                    <f:facet name="copyright"/>
                    <f:facet name="status"/>
                </af:pageTemplate>
            </af:form>
            <f:facet name="metaContainer">
                <af:resource type="javascript">
        window.fbAsyncInit = function() {
            FB.init({
                appId      : '115771338443915', // App ID
                channelUrl : 'http://localhost:8081/Application7-ViewController-context-root/channel.html', // Channel File
                status     : true, // check login status
                cookie     : true, // enable cookies to allow the server to access the session
                xfbml      : true  // parse XFBML
            FB.Event.subscribe('auth.authResponseChange', function(response) {
            // Here we specify what we do with the response anytime this event occurs.
                if (response.status === 'connected') {
                  // The response object is returned with a status field that lets the app know the current
                  // login status of the person. In this case, we're handling the situation where they
                  // have logged in to the app.
                  testAPI();
                } else if (response.status === 'not_authorized') {
                  // In this case, the person is logged into Facebook, but not into the app, so we call
                  // FB.login() to prompt them to do so.
                  // In real-life usage, you wouldn't want to immediately prompt someone to login
                  // like this, for two reasons:
                  // (1) JavaScript created popup windows are blocked by most browsers unless they
                  // result from direct interaction from people using the app (such as a mouse click)
                  // (2) it is a bad experience to be continually prompted to login upon page load.
                  FB.login();
                } else {
                  // In this case, the person is not logged into Facebook, so we call the login()
                  // function to prompt them to do so. Note that at this stage there is no indication
                  // of whether they are logged into the app. If they aren't then they'll see the Login
                  // dialog right after they log in to Facebook.
                  // The same caveats as above apply to the FB.login() call here.
                  FB.login();
        // Load the SDK asynchronously
        (function(d){
             var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
             if (d.getElementById(id)) {return;}
             js = d.createElement('script'); js.id = id; js.async = true;
             js.src = "//connect.facebook.net/en_US/all.js";
             ref.parentNode.insertBefore(js, ref);
        }(document));
        // Here we run a very simple test of the Graph API after login is successful.
        // This testAPI() function is only called in those cases.
        function testAPI() {
            console.log('Welcome!  Fetching your information.... ');
            FB.api('/me', function(response) {
              console.log('Good to see you, ' + response.name + '.');
              console.log('Response: ' + response);
    </af:resource>
            </f:facet>
        </af:document>
    </f:view>
    Note that you must have created a Facebook App on Facebook.com which provides the AppId number and set the App in "Sandbox"  mode.
    The jsf works in JDeveloper 11.1.2.4 and Glassfish 3.1.2 and ADF Essentials 11.1.2.4

    When using a web service proxy, you need to pass the data as an object, which' structure is defined in the web service proxy wrapper classes.
    When you've defined a data control for your bpel process, you can just drag and drop the 'initiate'/'execute', your operation and bind this to the update-button.
    When working with the proxy client, you need to populate your java class objects with the employee-object, this can be done in a backing bean or managed bean in your adf faces application.
    For more information you can always have a look at my blog where I've provided an explanation about the different possibilities of interfacing adf with SOA.
    Kind regards,
    Nathalie

  • HttpURLConnection : unable to use cookie to go to next page

    Hi,
    I'm trying to login a form by using java application. I'm successfully login in and http return 200 response code for me. i had set the cookie for the page.
    Now, i try to access the another page of the web and it seems like unable to use the cookie to access the page and the http return 500 response code to me. The code is like below :-
    URL login = new URL(loginPageURL+"?id=" + wbUser + "&passwd=" + wbPassword+ "&login=Login");
                HttpURLConnection loginConn = (HttpURLConnection)login.openConnection();
                loginConn.setFollowRedirects(false);
                loginConn.setInstanceFollowRedirects(false);
                loginCookie = loginConn.getHeaderField("Set-Cookie");
                if (loginCookie == null) {
                    System.out.println("Web Page Login Fail --- COOKIE NOT FOUND");
                    log.writeLog("Web Page Login Fail --- COOKIE NOT FOUND");
                } else {
                    System.out.println("Web Page Login (login_cookie: " + loginCookie+")");
                    log.writeLog("Web Page Login (login_cookie: " + loginCookie+")");
                System.out.println("response code : " + loginConn.getResponseCode());
                //use the login cookie to go to other page
                URL url = new URL(wbIndex);
                HttpURLConnection urlConn = (HttpURLConnection)url.openConnection();
                urlConn.setRequestMethod("POST");
                urlConn.setRequestProperty("Cookie", loginCookie);
                urlConn.setRequestProperty( "Content-Encoding", "big5" );
                urlConn.setRequestProperty( "Content-Type", "text/html" );
                urlConn.setDoInput(true);
                urlConn.setDoOutput(true);
                urlConn.setUseCaches(false);
                urlConn.setDefaultUseCaches(false);The http return this error code : -
    java.io.IOException: Server returned HTTP response code: 500
    Can anyone please help me on this??
    Thanks a lot..........

    Hello, wnnsiau
    Thank you for visiting Apple Support Communities.
    If your account is disabled, see the steps in the article below.
    Apple ID: 'This Apple ID has been disabled for security reasons' alert appears
    http://support.apple.com/kb/ts2446
    If you have tried the steps above and this issue persists, see the article below.
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Cheers,
    Jason H.

  • How to Set cookie in AIR with HTML/Javascript

    Can someone explain or post example code as to how I can go
    about setting a cookie in AIR using HTML and Javascript?
    I have an AIR app that requires the user to login on a form
    that lives in a non-applicationSandbox. I know how to
    create/modified/delete cookies using JS and a web browser, but the
    same code returns a cookie with a null value. I'm sure I'm just
    missing one line/word of code to make this happen.
    The stripped down basics of setting and reading a cookie
    using Javascript:
    document.cookie("myCookie = yummy");
    var taste = document.cookie;
    What am I doing wrong?

    quote:
    Originally posted by:
    anirudhs
    > So if I want to use cookies in AIR html/javascript the
    end user will need to have http access, whether it be from a public
    or private server?
    Yes.
    Though I am curious to why you are using cookies to store
    state on the client? This is AIR and you have access to the
    filesystem, local SQLite DB, encrypted local store, etc.
    Thanks for your previous answer anirudhs. Finally got a
    cookie thru Air! :P
    Some scenario's do require login via cookies for our webapps
    (in my case, chat w/ nicks which also logs users by serverside js +
    php, thereby allowing the same access method for web-browser login
    to the same chat rooms). It might be a bit of a stretch for some of
    us to attempt to code filesystem/SQlite/localStore updater for our
    web-users via js + php, although I know we could perhaps embed a
    hidden flash to do the localStore, and pass data back and forth
    from js, but that's lot of extra lifting, whereas browser cookies
    are naturally designed for such logins.
    I'm confused by the safari wording thou.. does the webkit
    security model in Air only work via user activated http (ie.
    clicking links), or is there some way Air can initiate an http
    connection (say using loader) to set or get cookies? It seems a
    pain to need to force the Air user to click and open a dead link
    just to activate a cookie session, even if it's only to a hidden
    frame.

  • Blocking Cookies, something don't work on several site.

    When I block Cookies, Something will not work.
    For example, at twitter.com (of cource displaying login or sign-in page, since cookies off ) ,
    Pulldown menu of selecting language don't work. and I cannot input anything to textbox about password.
    I know that I cannot login when cookies off.
    I want to know reasons that some components don't work.

    Sites can keep track of you among thousands of visitors either by using cookies or by adding a unique code to the address. If the site only uses cookies, blocking cookies will make every request look like a new visit from a stranger. Preferences you set with one request will be lost on the next page load.
    That shouldn't prevent you from typing in a form, but the site may have a script that checks whether you are accepting cookies and turns different features on and off based on what it discovers.

  • Multi sites with one login

    I have 3 sites that are all linked together that run off of
    one mysql database. What would the best way to create a one login
    with cookies or session?

    I sort of worked it out. There is a query in the
    customeraction page that
    looks a little like this(after modifying a tad):
    <cfquery name="rsGetCustomer" datasource="#your.DSN#"
    username="#your.username#" password="#your.password#">
    SELECT cst_ID, cst_ShpCity
    FROM tbl_customers
    WHERE cst_Username = '#form.Username#' AND
    cst_Password = '#form.Password#'
    </cfquery>
    I added it to the welcome page in my site that users are
    directed to after
    loggin in. I then submit their username and password to the
    orderform.cfm
    page as hidden fields in a form on the welcome page with a
    submit button and
    it successfully passed the information to CW.
    Bob

  • Can I delete extensions that do not load or am I looking for trouble

    After running EtreCheck I noticed that many extensions do not load.  So my question is: Can I delete extensions that do not load or am I looking for trouble?
    Here is the EtreCheck report:
    Problem description:
    slow with Yosemite
    EtreCheck version: 2.1.8 (121)
    Report generated February 19, 2015 at 12:11:22 PM EST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        Mac Pro (Late 2013) (Technical Specifications)
        Mac Pro - model: MacPro6,1
        1 3 GHz 8-Core Intel Xeon E5 CPU: 8-core
        32 GB RAM Upgradeable
            DIMM1
                8 GB DDR3 ECC 1866 MHz ok
            DIMM2
                8 GB DDR3 ECC 1866 MHz ok
            DIMM3
                8 GB DDR3 ECC 1866 MHz ok
            DIMM4
                8 GB DDR3 ECC 1866 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en2: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        AMD FirePro D500 - VRAM: 3072 MB
        AMD FirePro D500 - VRAM: 3072 MB
            Thunderbolt Display 2048 x 1152
            Thunderbolt Display 2048 x 1152
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 2:10:13
    Disk Information: ℹ️
        APPLE SSD SM1024F disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 999.32 GB (760.04 GB free)
                Core Storage: disk0s2 999.70 GB Online
    USB Information: ℹ️
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        American Power Conversion Smart-UPS 3000 XL FW:691.18.D USB FW:7.3
        Prolific Technology Inc. USB-SATA Bridge
        Apple Inc. Display Audio
        Apple Inc. FaceTime HD Camera (Display)
        Apple Inc. Apple Thunderbolt Display
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        Apple Inc. FaceTime HD Camera (Display)
        Apple Inc. Apple Thunderbolt Display
        Apple Inc. Display Audio
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus_2
            Apple Inc. Thunderbolt Display
        Apple Inc. thunderbolt_bus_1
        Apple Inc. thunderbolt_bus_0
            Promise Technology, Inc. Pegasus2-R
                Drobo 5D
            Apple Inc. Thunderbolt Display
    Configuration files: ℹ️
        /etc/hosts - Count: 1
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Kernel Extensions: ℹ️
            /Applications/MacX Video Converter Pro.app
        [not loaded]    com.macxdvd.driver.goodSysAudioCapture (1 - SDK 10.10) [Click for support]
            /Library/Extensions
        [loaded]    com.TrustedData.driver.VendorSpecificType00 (1.7.0 - SDK 10.7) [Click for support]
        [not loaded]    com.blackmagic-design.desktopvideo.iokit.driver (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.desktopvideo.iokit.framebufferdriver (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.desktopvideo.multibridge.iokit.driver (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.driver.BlackmagicIO (10.3.4 - SDK 10.9) [Click for support]
        [not loaded]    com.blackmagic-design.driver.BlackmagicUsbIO (10.3.4 - SDK 10.9) [Click for support]
        [loaded]    com.drobo.SCSI.ThunderBolt (1.1 [70504] - SDK 10.8) [Click for support]
        [loaded]    com.promise.driver.stex (5.2.10 - SDK 10.9) [Click for support]
            /Library/Extensions/DeckLink_Driver.kext/Contents/PlugIns
        [not loaded]    com.blackmagic-design.desktopvideo.firmware (10.3.4 - SDK 10.9) [Click for support]
            /System/Library/Extensions
        [loaded]    com.Cycling74.driver.Soundflower (1.5.3 - SDK 10.6) [Click for support]
        [not loaded]    com.FTDI.driver.FTDIUSBSerialDriver (2.2.14) [Click for support]
        [not loaded]    com.Maxtor.driver.PowSecDriver (4.2.7) [Click for support]
        [not loaded]    com.SiliconImage.driver.Si3124u (2.0.3) [Click for support]
        [not loaded]    com.Susteen.driver.PL2303 (1.2.0) [Click for support]
        [loaded]    com.airgrab.driver.AirGrabFirewallModule (3.0) [Click for support]
        [not loaded]    com.aliph.driver.jstub (1.1.2 - SDK 10.7) [Click for support]
        [not loaded]    com.alwaysthinking.thinkinghomeUSB (1.1.7) [Click for support]
        [loaded]    com.attotech.driver.ATTOiSCSI (3.4.1b1 - SDK 10.6) [Click for support]
        [not loaded]    com.cy.iokit.Morpheus (1.4) [Click for support]
        [not loaded]    com.detto.iokit.M2MantiClassic (2.1) [Click for support]
        [not loaded]    com.devguru.driver.SamsungComposite (1.4.26 - SDK 10.6) [Click for support]
        [loaded]    com.globaldelight.driver.BoomDevice (1.1 - SDK 10.1) [Click for support]
        [not loaded]    com.hzsystems.driver.CDSDAudioCaptureSupport (1.5) [Click for support]
        [loaded]    com.hzsystems.terminus.driver (4) [Click for support]
        [not loaded]    com.perceptiveautomation.indigo_overrides.kext (1.0.0d1) [Click for support]
        [not loaded]    com.prolific.driver.PL2303 (1.2.1) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.33) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.33) [Click for support]
        [not loaded]    com.roxio.BluRaySupport (1.1.6) [Click for support]
        [not loaded]    com.shed.PowerLinc.kext (1.0.0) [Click for support]
        [not loaded]    com.shed.PowerLincCU.kext (1.0.0) [Click for support]
        [not loaded]    com.shed.cm15.kext (1.0.0) [Click for support]
        [not loaded]    com.smithmicro.nke.NetBlockade (4.0) [Click for support]
        [not loaded]    com.wdc.driver.IOFireWireWDHID (1.1.2) [Click for support]
            /System/Library/Extensions/IOFireWireMxBt.kext
        [not loaded]    com.maxtor.iokit.IOFireWireMxBt (3.0.0) [Click for support]
            /System/Library/Extensions/ssuddrv.kext/Contents/PlugIns
        [not loaded]    com.devguru.driver.SamsungACMControl (1.4.26 - SDK 10.6) [Click for support]
        [not loaded]    com.devguru.driver.SamsungACMData (1.4.26 - SDK 10.6) [Click for support]
        [not loaded]    com.devguru.driver.SamsungMTP (1.4.26 - SDK 10.5) [Click for support]
        [not loaded]    com.devguru.driver.SamsungSerial (1.4.26 - SDK 10.6) [Click for support]
            /Users/[redacted]/Library/PreferencePanes/Contents/PlugIns/TechTool Pro 7.app
        [not loaded]    com.micromat.driver.spdKernel (1 - SDK 10.8) [Click for support]
        [not loaded]    com.micromat.driver.spdKernel-10-8 (1 - SDK 10.8) [Click for support]
            /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
        [not loaded]    com.roxio.TDIXController (2.0) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.CS5ServiceManager.plist [Click for support]
        [running]    com.blackmagic-design.DesktopVideoFirmwareUpdater.plist [Click for support]
        [running]    com.micromat.TechToolProAgent.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_desktop.plist [Click for support]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.adobe.SwitchBoard.plist [Click for support]
        [running]    com.attotech.iscsid.plist [Click for support]
        [running]    com.backblaze.bzserv.plist [Click for support]
        [loaded]    com.blackmagic-design.desktopvideo.XPCService.plist [Click for support]
        [running]    com.blackmagic-design.DesktopVideoHelper.plist [Click for support]
        [running]    com.blackmagic-design.streaming.BMDStreamingServer.plist [Click for support]
        [running]    com.datarobotics.ddservice64d.plist [Click for support]
        [running]    com.datarobotics.ddserviced.plist [Click for support]
        [running]    com.micromat.TechToolProDaemon.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.starfield.backupservice.plist [Click for support]
        [loaded]    com.teamviewer.Helper.plist [Click for support]
        [not loaded]    com.teamviewer.teamviewer_service.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.backblaze.bzbmenu.plist [Click for support]
        [loaded]    com.bittorrent.uTorrent.plist [Click for support]
    User Login Items: ℹ️
        Cookie    Application  (/Applications/Cookie.app)
        Network Speed Monitor    Application  (/Applications/Network Speed Monitor.app)
        CleanAgent    Application  (/Applications/Clean.app/Contents/Resources/CleanAgent.app)
        SpeechSynthesisServer    Application  (/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /SpeechSynthesis.framework/Versions/A/SpeechSynthesisServer.app)
        ClamXav Sentry    Application  (/Applications/ClamXav.app/Contents/Resources/ClamXav Sentry.app)
    Internet Plug-ins: ℹ️
        AdobePDFViewerNPAPI: Version: 11.0.10 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        AdobePDFViewer: Version: 11.0.10 - SDK 10.6 [Click for support]
        LogMeInSafari32: Version: 1.0.1001 - SDK 10.7 [Click for support]
        Scorch: Version: Unknown - SDK 10.2 [Click for support]
        AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 [Click for support]
        iPhotoPhotocast: Version: 7.0 - SDK 10.8
        DirectorShockwave: Version: 11.0.3r472 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
        AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        CANONiMAGEGATEWAYDL: Version: 3.1.0.2 [Click for support]
        DivXBrowserPlugin: Version: 2.2 [Click for support]
        Musicnotes: Version: 1.19.0 [Click for support]
        LogMeIn: Version: 1.0.1001 - SDK 10.7 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Google Earth Web Plug-in: Version: 6.1 [Click for support]
        AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.3.4.1 [Click for support]
        SharePointBrowserPlugin: Version: 14.4.7 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 31 Check version
        OfficeLiveBrowserPlugin: Version: 12.2.8 [Click for support]
    User internet Plug-ins: ℹ️
        WbeTools64_14: Version: 1.0.23.53 © 2013 - SDK 10.6 [Click for support]
        WebEx: Version: 1.0 [Click for support]
        WebEx64: Version: 1.0 - SDK 10.5 [Click for support]
        Folx3Plugin: Version: 4.0 - SDK 10.6 [Click for support]
        fileEditTool64_15: Version: 1.0.35.65 © 2013 - SDK 10.6 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
        SaveFrom.net helper
    3rd Party Preference Panes: ℹ️
        Akamai NetSession Preferences  [Click for support]
        APC PowerChute Personal Edition  [Click for support]
        Backblaze Backup  [Click for support]
        Blackmagic Desktop Video  [Click for support]
        Flash Player  [Click for support]
        Java  [Click for support]
        TechTool Protection  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 999.32 GB Disk used: 239.28 GB
        Destinations:
            Time Machine-Drobo [Local]
            Total size: 17.59 TB
            Total number of backups: 77
            Oldest backup: 2014-07-18 01:39:12 +0000
            Last backup: 2015-02-19 16:04:28 +0000
            Size of backup disk: Excellent
                Backup size 17.59 TB > (Disk size 999.32 GB X 3)
    Top Processes by CPU: ℹ️
            11%    WindowServer
             6%    Safari
             5%    Mail
             2%    firefox
             1%    bzfilelist
    Top Processes by Memory: ℹ️
        790 MB    firefox
        378 MB    mds_stores
        344 MB    clamd
        309 MB    Safari
        241 MB    Mail
    Virtual Memory Information: ℹ️
        21.17 GB    Free RAM
        6.67 GB    Active RAM
        4.12 GB    Inactive RAM
        2.38 GB    Wired RAM
        6.47 GB    Page-ins
        0 B    Page-outs
    Diagnostics Information: ℹ️
        Feb 19, 2015, 10:00:50 AM    Self test - passed
        Feb 18, 2015, 03:49:35 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AgileTransCmd_2015-02-18-15493 5_[redacted].crash
        Feb 18, 2015, 03:44:30 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/AgileTransCmd_2015-02-18-15443 0_[redacted].crash
        Feb 16, 2015, 12:12:51 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/mdworker_2015-02-16-121251_[re dacted].crash

    Starting your Mac in "Safe Mode" (see below) will load only Apple-provided kernel extensions. Observing its perfomance in that mode will be instructive.
    The problems you describe are likely to have been caused by garbage software of which "TechTool Pro" is only one example. That system has been altered from its factory configuration through the installation of several third party system modifications, any one of which can cause poor performance. Interaction between two or more is another possibility. Running a torrent client is another way of inviting malware intrusion.
    Safe Mode or "Safe Boot" is a troubleshooting mode that bypasses all third party system extensions and loads only required system components. Read about it: Starting up in Safe Mode
    You must disable FileVault before you can start your Mac in Safe Mode.
    Starting your Mac in Safe Mode will take longer than usual, graphics will not render smoothly, audio is disabled on some Macs, and some programs (iTunes for example) may not work at all.
    Merely starting your Mac in Safe Mode is not intended to resolve the problem, it's to observe its performance without certain additional components.
    To end Safe Mode restart your Mac normally. Shutdown will take longer as well.

  • Multiple sites as an alternative to CDSSO

    We use two domains for our web sites - typically one for internal and one for external applications. We have avoided CDSSO to date by using the client SDK to process logins and cookies. The price we pay is to not have true single sign-on among all applications.
    Now we need to implement a SAML federation between our internal portal and a partner. For this we need to make the user's browser pass its SSOToken cookie to the SAML servlet. However, the SSOToken cookie is set for a different domain than the one in which Access Manager is configured.
    Question: Can I set up an alternate site for Access Manager with our other domain and create another web interface to that site, instead of configuring CDSSO? That is, I would have two sites:
    https://am.domain1.com | 10
    https://am.domain2.com | 20
    This seems easier and more efficient than processing the CDSSO every time a user logs in to our existing portal when the federation will only be used a small number of times.
    Will this work, or do all sites have to be in the same domain?

    tWorks capabilities for Visual C++ as detailed in the CW Readme can you choose Projects >> Add to project>> Components and controls >> CW DataSocket Control(National Instruments) from within Visual C++ and add the same functionality to an existing project?Bill:
    You can certainly add any of the ComponentWorks controls to your Microsoft Visual C++ project via the "Project -> Add to Project -> Components & Controls" method. However, using this method, Microsoft Visual C++ will generate wrapper classes for the controls that you add. These wrappers tend to be a little rough and difficult to work with because they use native ActiveX data types like VARIANTS. If you have Measurement Studio, then it would be in your interest to use the Tools for Visual C++ (ComponentWorks++) version of DataSocket, since this version is customized for Microsoft Visual C++ and works in terms of native C/C++ data types.
    If you want to use the ComponentWorks version of DataSocket--with the generated C++ wrappers using native ActiveX datatypes--t
    hen you can just add the controls as you suggest. However, adding Tools for Visual C++ (ComponentWorks++) classes to an existing project can be complicated. There is a knowledge base article that describes this process, though it is recommend to simply create a new Measurement Studio Microsoft Visual C++ application, and cut and paste your code into it.
    Knowledge Base Article 1V982Q8M: How to Update an Existing Microsoft Visual C++ Project with the New Tools for Visual C++ Classes in Measurement Studio
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/0cb6707522e92c958625689e0052bb77?OpenDocument
    Good Luck!
    Chris Wood
    Applications Engineer
    National Instruments

  • Web Services Manager Control, SOA Suite, Retrieving Roles from OID

    I am a bit confused about mapping of groups and privileges when it comes to the LDAP (in my case oracle internet directory, OID) and groups defined by Web Services Manager Control.
    I am using Web Services Manager Control->Manage Policies to define a gateway (or agent) for my web services. Through      
    Policy Management > Manage Policies > Policies > Policy
    I have also defined some pipeline steps which require authorization by an LDAP provider.(OID)
    I need two things:
    - First I have such roles and groups here in Web Services Manager:
    Administration > Groups / Roles
    Group Name      Role Name      
    su1-grp      Super User      
    da1-grp      Domain Administrator      
    ca1-grp      Component Administrator      
    ca2-grp      Component Administrator      
    which could be set for view and modification of web services. What is the relation between these groups and user groups in Oracle Internet Directory which I authorize against?
    - Second, my web services are invoked from pages which access to them involves authentication and authorization against OID. I need the username/password to be propagated to the webservice automatically. If the web service is presented as a button on such pages, for example, I don't want the user to be forced to enter username/passwords for each call to the services/
    I appreciate any comments or reference to books and documents.
    Thank you in advance.
    Best Regards,
    Farbod

    Hi Farbod
    Your problem is not new and i have posted in couple of other threads before.
    Roles in OID are for you to authorize the web service message itself. In your case when the user logins to your web application and calls the web service, you have to do two things:
    a) Extract Credentials
    b) AUthenticate against LDAP
    c) Perform authorization against LDAP
    Now the trick part is, you have to have the same username and password. You have to capture and store in session( ugly ugly..from security point of view) and then when you call the web service, you then invoke with the username and password.
    There are other better options available but might require additonal work or infrastructure.
    If your web application is protected by Oracle Access Manager or siteminder, you can pass those cookies.
    Next option is using SAML. You can generate SAML token on behalf of the user, and attach the SAML token to the web service messsage. In OWSM you then configure to validate SAML token and then you have to write custom step to extract the user name and perform any authorization.
    Since anyway you have to write custom step, third option is you can send encrypted cookie ( You web application can create a login session cookie -encrypted after the user signed in ). In OWSM you can write custom step to decrypt the cookie and then perform any validation.
    You have the easiest option of sending the same username and password with a security risk, or a custom development approach.
    Thanks
    Ram

Maybe you are looking for

  • Completed PO Created in R/3 Need to be deleted in APO

    Hi All, We have some cases of R/3 created POs (PP/DS)  which are in complete status in R/3 but they are still visible in product view in APO. The delta report doesn't catch these POs since we have exhaustively used userexits and custom programs in CI

  • A newer version of AirPort Utility is required

    Hi everyone, My Airport Utility keeps telling me that "A newer version of AirPort Utility is required." My airport extreme is a (new) dual band unit (running v7.5) and the AirPort utility (v5.4.2) seems to be the latest and greatest. What am I doing

  • Classification in Task List/Production order

    Hello Experts I am trying to understnad how Task list classification (class type 18) is used and what is the utility; what config ,master data and transaction data settings are required? At what stage system asks to enter char values ? Productin orde

  • Running windows on imac can't print from windows

    I'm running windows on my imac because quicken and quickbooks for mac *****.  I can't print from windows. when I go to the printer troubleshooter it sees my printer but tells me to turn it on.  When I try to print from quickbooks or quicken, it gives

  • Bitlocker Not Enabling

    I am having trouble getting Bitlocker to start on deployment for Win7Ent and Win8Pro If I enable bitlocker manually from within windows it works fine Tpm is enabled Partitions: BDEDisk - Boot - Primary - 350 Mb - No Drive Letter OSDisk - Primary - 10