Tagged Questions
7
votes
3answers
535 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
2answers
1k views
Best way for authentication in PHP
What's the best and most secure way to go when writing an authentication library in a model-view-controller way?
The things that give me a hard time are keeping track of the users activity and ...
3
votes
3answers
2k views
Zend Framework rememberMe() doesnt seem to remember me
My session seems to only be valid in the current window/tab. Also it seems to timeout quickly. Heres how I'm currently attempting to do it:
This is in my login controller:
$adapter = ...
3
votes
3answers
849 views
Is this a reasonable way to implement 'remember me' functionality
If a user logs into the site, and says 'remember me', we get the unique identifier for the user, encrypt this with RijndaelManaged with a keysize of 256 and place this in a httponly cookie with a set ...
2
votes
2answers
3k 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 ...
1
vote
0answers
133 views
How can I listen for “remember me” reauthentication events in Symfony2?
Using “normal” — not “remember me” authentication — I can set a success and failure handlers, adding this to the security.yml file:
form_login:
# ...
success_handler: authentication_handler
...
1
vote
4answers
111 views
How to implement a “Remember Me” function in Rails 3?
What are the best practices to implement a "Remember Me" function in Rails 3 application ?
I store session information (session id + user id) in the database when user logs in, and I don't want to ...
1
vote
1answer
89 views
if the user checks remember me on the asp login control, when will the user have to login again?
just trying to get a better understanding of the concepts involved with this so i can make better decisions on implementing the login based on the requirements i've been given.
in the case where the ...
1
vote
3answers
1k views
Automatic Login with Rails?
I am trying to get up a simple authentication system with Rails' Restful-Authentication plugin, and am just wondering how it works, b/c I can't seem to figure out what the requirements are for ...
1
vote
1answer
523 views
Form authentication doesn't redirect to defaultUrl while implementing “remember me” feature in login
I have an ASP.Net website which has a "remember me" feature for Login page. It uses form based authentication and the defaultUrl points to a Default page, but when the site is visited even though the ...
0
votes
0answers
21 views
Weird “remember me” behavior with Sorcery
I implemented "remember me" functionality in my application with Sorcery after I watched the Railscast
However, I've run into a pretty annoying behavior in which "remember me" doesn't work across ...
0
votes
1answer
72 views
How to get Chrome to remember login on forms?
On many websites when you login via Chrome it will offer to remember your login details.
I have a login form and this does not happen.
Here's the form:
<form action="/login" method="post">
...
0
votes
1answer
73 views
Authenticated and UnAuthenticated views of the same resource in Spring Security
I am trying to make a resource that can be accessed by both authenticated and unauthenticated users. I also have the remember-me authentication in place. For a user accessing the resource (page), I ...
0
votes
1answer
403 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 ...
0
votes
1answer
405 views
Manual authentication in spring using the rememember me cookie
I have a requirement by which I need to detect user authorization in the login screen itself.
(refer to my Previous Question)
I tried and searched for a cookie by name ...
0
votes
1answer
214 views
is it possible to not display login screen in remember me in spring security?
I have implemented spring security's remember me feature in our app, the way i understand it, If user opens main page directly and he is not authenticated by spring, he is taken to the login page. if ...