Tagged Questions
0
votes
1answer
68 views
Is having a Persistent Login Cookie (“Remember me”) that never expires a good idea?
In the most recommended solution for Persistent Login Cookies, a user's "Remember me" Cookie is always renewed with a new token when they login with their Persistent Login Cookie. Let's say you set ...
0
votes
1answer
253 views
Django “Remember Me” with built-in login view and authentication form
How can I reuse the original admin login() and AuthenticationForm to set longer cookie length for users with "remember me" option checked at login page? I am currently using the built-in login through ...
0
votes
0answers
141 views
Implement remeber me checkbox in login form joomla 3.0
I want to implement "Remember Me" checkbox in joomla 3.0 login form. I am add html in /components/com_users/views/login/tmpl/default_login.php
> <?php if (JPluginHelper::isEnabled('system', ...
0
votes
0answers
92 views
user login system cookie based over ssl
i created user login system and with this function i start sessions
function sessionStart() {
$session_name = 'sec_session_id'; // Set a custom session name
$secure = false; // Set to true ...
6
votes
4answers
218 views
PHP “Remember Me” security flaw?
I'm in the middle of coding a 'remember me'-equipped login form, and so far the tutorials I've read (partly to make sure I'm doing it right) all say to store the encrypted password in a cookie along ...
1
vote
1answer
276 views
How to “automatically login” user after remember me cookie is checked?
I need to implement "Remember me" functionallity on my JSF site, i´ve been researching about this topic trying to find what the best practices are. Ive found many answers, but i still have a question ...
-6
votes
1answer
128 views
C# and MySQL check if user is logged in [closed]
I have code where users can login, but my C# app is connected to MySQL database.
How to make remember me checkbox and check if user is already logged in?
0
votes
1answer
307 views
How do I implement remember me for login to save username and password? (Java, JSP, JavaScript) [closed]
I want to implement a "remember me" checkbox on a JSP login page. Specifically, I want it to remember the username and password. Why not just use the browser's password manager? Because I am ...
0
votes
2answers
775 views
How to Remember username or password for login form
i have created a sample Login form in C# Windows Form Application, And What i Want is to add Remember username or password feature to my login form.
I just need to provide my username,cause it will ...
0
votes
0answers
145 views
What code to write for 'remember me' checkbox?
I am using php/html/js.
I would like to know, what functionality/code is to be associated with "Remeber me" check box, which we see on almost all websites while loggin in.
Please let me now.
0
votes
1answer
94 views
Writing Remember Me for login
I'm going to write a login page, and I've been reading Charlie Miller's article on Remember Me for logins. Also read the OWASP cheat sheet.
I was thinking, instead of a persistent database entry for ...
1
vote
1answer
159 views
“stay logged in” login page
I want to implement a stay logged in or remember me in my jsp login page. I am using container based form authentication. I think I need to I have to store users' data such as userid and token - a ...
1
vote
2answers
820 views
Remember me/stay logged in, in jsp login page
I have a login screen and i want to authenticate users by checking credentials from database. I know most browsers can remember the password, but how can i implement Remember me check box by using the ...
0
votes
0answers
75 views
Frequent Refreshing Breaks Cookie-Based 'Remember Me' Tokens
I am trying to implement a token based "Remember Me" feature for the login. One of the strategies found on these pages, The Definitive Guide To Forms based Website Authentication and enter link ...
0
votes
0answers
26 views
config Acegi to enable the system to forget me?
With RememberMe service, Acegi allows the system to remember me and auto login. But how can I configure Acegi to let the system forget me?
Can Acegi support this function?
1
vote
0answers
294 views
asp:Login “Remember me” is expiring sooner than the full 50 years
The ASP.net <asp:Login> control has an ability to display a Remember me next time checkbox. If checked, this Login.RememberMeSet Property is set.
From MSDN:
When the RememberMeSet property ...
2
votes
3answers
3k views
Remember me in jsp login page
I have a login screen and i am authenticating users by checking credentials from database. But how can i implement Remember me check box? Like in gmail remember me(stay signed in) is present. I am ...
0
votes
1answer
517 views
Yii allways leaves me logged in
I am working on creating website with Yii framework and I have a problem that I don't know how to solve. My problem is that I am always logged in my website even when I have NOT checked "remember me" ...
11
votes
3answers
3k views
Proper way to use “Remember me” functionality in PHP
Short
Working on login system and trying to implement remember me feature.
Recently, l did research about this subject, read bunch of articles, posts, stories, novels, fairy tales (calling them so, ...
1
vote
3answers
313 views
Implementing a login screen with tabs
I am working on an application which requires me to create a log in screen. The way I have planned to do this is have 2 tabs log in, sign up and what I wanted to know is I want to be able to have a ...
0
votes
0answers
1k views
PHP Login - Remember Me
My configuration file included on each page has this.
session_name('fourptLogin');
session_set_cookie_params(2*7*24*60*60);
session_start();
My login form currently has,
<label><input ...
1
vote
1answer
773 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">
...
2
votes
2answers
2k views
Django Login Form with “Remember Me” Option, What would be the best way?
I am developing a django application and i would like some suggestions on what would be the best way to provide "Remember Me" option with the Login Form. I am really concerned about the performance of ...
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
2answers
737 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 ...
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
5answers
488 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
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 ...
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 ...
2
votes
3answers
7k views
how to create a secure php login system, allowing for “keep me logged in” functionality?
I use a simple login system based on SESSION vars. Once the user logs in, a session var is set that tells my script the user is to be accepted in. I don't use any custom clientside cookie var.
I ...
2
votes
1answer
980 views
Implement a “Remember me” CheckBox in windows application?
Hello I am creating a Windows application (WPF) that is going to be running in few stations accessing 1 database.
I already implemented a login form with a login system thru My.User.CurrentPrincipal.
...
0
votes
2answers
305 views
logging in, logging out & session behavior
When you log out of a web app, should ALL your session be logged out? When I log out of the web app from the public library, should it also log me out of the session I have on my home computer?
When ...
