The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
676 views

Remember-Me with Spring Security, various questions

I'm using Spring Framework 3.0.5 and Spring Security 3.0.5 for developing a webapplication where users can log in and log out, using Remember-Me-Service, if they want to. As I don't have pretty much ...
4
votes
1answer
2k views

Devise + Omniauth + Rememberable

I followed the tutorial on the github devise wiki : https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview So I've created a omniauth controller for the callbacks, but it is bypassing the ...
1
vote
1answer
1k views

Remember-me- spring security

I am currently trying to implement remember me functionality in my website. Following is part of my configuration <security:remember-me services-ref="rememberMeServices" /> <bean ...
5
votes
4answers
1k views

Why remember me token?

While implementing the "remember me" feature for a website, why do we complicate things and have a token called remember me token apart from a session token. To the best of my understanding, remember ...
2
votes
2answers
1k views

Google App Engine Java - Keep Session alive after users close browser (remember me function)

We can enable session by setting sessions-enabled to true in file appengine-web.xml. However, the session implemented by GAE is not persistent after closing browsers. My question is how to keep the ...
6
votes
5answers
9k views

Remember me functionality in ASP.NET Form Authentication doesn't work

I'm using ASP.NET forms authentication for logging users into a website we're developing. Part of the functionality is a "Remember me" checkbox which remembers the user for a month if they check it. ...
6
votes
1answer
3k views

PHP: Remember Me and security?

During the time I've spent taking breaks from learning how PHP supports Unicode I've been delving into making my "Remember Me" cookies a bit more secure. However there are a few things I don't ...
4
votes
1answer
861 views

Spring RememberMe processAutoLoginCookie

I'm using Spring Security 3.0.0 and persistent RememberMe. When the server restarts and a browser window is still open, we need to be able to continue using the application without having to login - ...
1
vote
0answers
453 views

Grails Spring Security “remember me” causes TypeMismatchException

I've been having a problem with the Spring Security Core plugin for Grails, which I'm using in conjunction with Spring Security UI. On the provided login page, if I check "Remember Me", log in, close ...
0
votes
2answers
290 views

Restful API, how an app can (re)match a user to an existing one?

I asked various questions about my problem (here and here) and I also asked in the #oauth & #openid freenode's channel on IRC. (this is note an "UP" question, it's an other problem) I'll sum up ...
0
votes
1answer
351 views

Avoiding Remember me security issues

How do you avoid session hijacking and other problems with remember me on logins? One thing i know is to add a md5 or the useragent, but that's isn't a very good protection in itself... is there ...
1
vote
1answer
999 views

How do I get Devise's Rememberable module to use http_only for the remember me cookie?

The rails session cookie is HttpOnly by default but the remember_user_token cookie set by Devise's Rememberable module is not. As I understand it that cookie when sent will result in the user being ...
4
votes
2answers
1k views

remember_me with warden

For my lastest project I'm using https://github.com/hassox/rails_warden. It suits my needs very well except that I can't find a good way to implement remember_me. I know that it's notoriously ...
1
vote
1answer
617 views

Adding “remember my password” in Drupal

I want to add an option 'Remember My Password' in Login Page of Drupal 6. Is there any module for this ? Is there any drupal module which remembers user's name and password on login page and ...
1
vote
2answers
743 views

“Remember Me” Login for website - Problem with different browsers/computers

I'm trying to implement a "Remember Me" login functionality for an ASP.NET MVC site I'm building. I'm trying to use this approach http://jaspan.com/improved_persistent_login_cookie_best_practice (see ...
4
votes
2answers
2k views

How to remember username/password when calling tf.exe?

I use tf.exe command to get the latest codes but it keeps asking for username/password - is there a way to make those credentials remembered? I've looked at the tf.exe argument list but no options ...
1
vote
1answer
307 views

Can the Lotus Notes Browser remember standard webpage login credentials?

We have a client who uses a website we have created. The requires the standard username/password combination to access site contents. In IE, FF and Chrome the browser offers to remember the login ...
0
votes
1answer
455 views

evercookie in Spring Security rememberme-service

I'd like to use the evercookie javascript library to receive the users cookie and make the spring security rememberme-service use it. I read a bit about implementing a custom remember-me service, but ...
0
votes
5answers
491 views

How can I log any login operation in case of “Remember Me” option?

I have an asp.net login web form that have ( username textBox - password textBox ) plus Remember Me CheckBox option When user login i do the below code if (provider.ValidateUser(username, ...
2
votes
1answer
2k views

Is it possible to implement “Remember Me” using jquery cookies?

Is it possible to implement "Remember Me" using jquery? If so, any suggestion how it can be done? EDIT: I am trying to remember username and password using jquery cookies.store cookies about ...
0
votes
1answer
98 views

How to improve remember password option when you have different logins for different subdirectories?

Browser remember password feature is nice one but it has a problem when you do have several logins for several sections, something like: / - one login /private/ - another login /admin/ - another ...
1
vote
2answers
3k views

Simple Spring <remember-me/> … help please

All I want, is a simple remember-me. I read http://static.springsource.org/spring-security/site/docs/3.0.x/reference/remember-me.html What I have done so far: Created my own UserDetailsService to ...
1
vote
1answer
666 views

Springs Simple <remember-me/> not working :-(

I am trying to make use of Spring Security's <remember-me/> authentification. The line in my security context looks like this: <security:remember-me key="89dqj219dn910lsAc12" ...
0
votes
1answer
582 views

Membershipprovider: Automatically logging out when session ends

I have some problems with getting my website to log out the authenticated user automatically when the session ends (the user closes the browser). This is what I have in my web.config: ...
8
votes
3answers
2k views

How can I create a secured “remember me” system using PHP?

I have a login system. How can I implement a secure remember me system using cookies. What value should I have to store in cookie username and password, but how I can secure it?
4
votes
5answers
3k views

Best practise for remember me feature [duplicate]

I am using 2 variables in cookie(7 day expiration) which is user id and hash. Hash is sha1 encode of user agent and user id. In this case some hacker can login who is know stolen cookie's browser. ...
1
vote
2answers
2k views

Saving login status with JavaScript cookies

I'm working on the login/ucp module of an application and I'd love to add a "remember me" option to remember the currently logged-in user and keep them logged in next time they visit. I know this ...
1
vote
1answer
665 views

Remember Me problem in ASP.NET MVC 2

Greetings. I have a problem with Remember Me possibility. It didn't remember my login. First of all I checked FormsAuthentication.SetAuthCookie( userName, createPersistentCookie ); in SignIn method. ...
2
votes
1answer
3k views

Asp.net “Remember Me” does not work through FormsAuthentication.RedirectFromLoginPage()

In my login page I'm using FormsAuthentication.RedirectFromLoginPage() to redirect to Home page after the user is validated. But it doesn't seem to obey CreatePersistenceCookie parameter. I have ...
3
votes
3answers
5k views

asp.net “Remember Me” cookie

I have implemented remember me option in my asp.net webform by using this, protected void LBtnSubmit_Click(object sender, EventArgs e) { if (this.ChkRememberme != null && ...
2
votes
1answer
737 views

PHP session garbage collection becoming an annoyance, i need some help to modify this behavior

I have been having this problem for some time now, I dont exactly know that if this is the issue but I am pretty confident that it is, I have my remember me session set too expire after 1 week, but ...
4
votes
5answers
2k views

What's the best way to save user login and password in flex?

What's the best way to save user credentials in flex? Local storage doesn't seem like good place for storing confidential data, because it saves information as a plain text.
4
votes
2answers
4k views

How does Remember Me work in Spring Security?

I'm curious how does Remember Me work and how does it work in Spring Security? I understand that server sends long-lived cookies to the client. And then client sends cookie back and server can ...
2
votes
3answers
4k views

How to handle “Remember me” in the Asp.Net Membership Provider

Ive written a custom membership provider for my ASP.Net website. Im using the default Forms.Authentication redirect where you simply pass true to the method to tell it to "Remember me" for the ...
0
votes
1answer
73 views

How can I set a logged in session to be remembered for 2 weeks in CodeIgniter?

If a user logs in and selects "Remember me for 2 weeks", I want the session to remember them for 2 weeks. If not, it should expire in 2 hours. How do I do this?
1
vote
1answer
838 views

remember me in login form

I have a "login" control that I'd like to have a "remember me" option. How can I accomplish this?
1
vote
2answers
718 views

Making Authlogic 'not remember me'

I want my user session to end when the user closes the browser. But authlogic seems to remember the session even when a new browser is opened. I have tried setting @user_session.remember_me = false ...
7
votes
2answers
8k views

ExtJS: Login with 'Remember me' functionality

I'm trying to create a simple login window with the very common 'Remember me' functionality. The login validation is done AJAX style, thus the browser won't remember my input. My approach is to use ...
0
votes
1answer
2k views

Problem with sfRemember cookie / sfGuard Remember me

I'm using Symfony 1.4 with Doctrine. Sorry if this is a silly question but what exactly does one need to build on top of the sfDoctrineGuardPlugin to get the "remember me" functionality working? ...
4
votes
2answers
7k views

Spring Security RememberMe Services with Session Cookie

I am using Spring Security's RememberMe Services to keep a user authenticated. I would like to find a simple way to have the RememberMe cookie set as a session cookie rather than with a fixed ...
0
votes
1answer
823 views

problem with overriding autologin in spring security?

greetings everybody iam using spring security 3 remember me service as follows <http> <remember-me/> ....</http> and i want to perform some logic in the autologin so i tried to ...
4
votes
1answer
2k views

Problem with Remember Me Service in Spring Security

I'm trying to implement a "remember me" functionality in my website using Spring. The cookie and entry in the persistent_logins table are getting created correctly. Additionally, I can see that the ...
9
votes
5answers
4k views

ASP.NET MVC RememberMe

After searching a lot i did not get any answers and finally i had to get back to you. Below i am explaining my problem in detail. It's too long, so please don't quit reading. I have explained my ...
1
vote
1answer
160 views

What is the point of the Remember Me option on website logins? What is stopping developers from ALWAYS remembering the user?

Is it simply an artifact of the old fear (still around in some places) of cookies? I also would like to know if it is bad practice to simply pass in user names from an outbound email.
8
votes
6answers
2k views

'Remember-me' authentication feature, does it always mean 'Unsecure' Website?

I'm considering to implement the classic 'remember-me' checkbox on my webapp to allow the authenticated user to be 'remembered' once he returns to visit my website. Gmail, Facebook and others have ...
1
vote
2answers
6k views

How do I use “Remember Me” authentication with Spring Security and LDAP?

I want to use a Spring Security's "Remember me" with LDAP authentication. LDAP authentication configuration is described here, I've just made some tiny changes. Could you explain to me how can i add ...
1
vote
1answer
57 views

how does pastie or any other site remember browser info

I am trying to make a simple experimental app. I'd like for it to behave like pastie. On pasite you can paste code and it will remember your browser. So if you paste the url (that pastie provides) ...
2
votes
4answers
2k views

Cookie and session in “remember me” feature

I have never wanted to allow a user to stay logged in for any length of time so I never saw a use for a "remember me" feature. I started thinking about how it's done though and would like some ...
1
vote
4answers
772 views

RememberMe option in an asp.net web application

what are the possible ways of implementing remember me option in an asp.net web application?
33
votes
10answers
10k views

Is it secure to store passwords in cookies?

My web application's home page has a RememberMe checkbox.. If the user checks it, i ll store emailId and password in cookies.. My code is if (this.ChkRememberme != null && ...